~jderose/ubuntu/raring/qemu/vde-again

« back to all changes in this revision

Viewing changes to cow.h

  • Committer: Bazaar Package Importer
  • Author(s): Aurelien Jarno, Aurelien Jarno
  • Date: 2008-08-25 04:38:35 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080825043835-8e3tftavy8bujdch
Tags: 0.9.1-6
[ Aurelien Jarno ]
* debian/control: 
  - Update list of supported targets (Closes: bug#488339).
* debian/qemu-make-debian-root:
  - Use mktemp instead of $$ to create temporary directories (Closes: 
    bug#496394).
* debian/links:
  - Add missing links to manpages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* user mode linux compatible COW file */
2
 
#define COW_MAGIC 0x4f4f4f4d  /* MOOO */
3
 
#define COW_VERSION 2
4
 
 
5
 
struct cow_header_v2 {
6
 
    uint32_t magic;
7
 
    uint32_t version;
8
 
    char backing_file[1024];
9
 
    int32_t mtime;
10
 
    uint64_t size;
11
 
    uint32_t sectorsize;
12
 
};
13