diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-02-26 00:20:56 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-02-26 00:20:56 +0000 |
commit | 00af2b26809d9cfb20af348ea7df255780348dd2 (patch) | |
tree | 859dd98f9c840d38649f6b977c927d93d380087a /cow.h | |
parent | a735aa3139c5b9785eac09dcf6384d89c8d8c445 (diff) |
added cow.h
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@653 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'cow.h')
-rw-r--r-- | cow.h | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +/* user mode linux compatible COW file */ +#define COW_MAGIC 0x4f4f4f4d /* MOOO */ +#define COW_VERSION 2 + +struct cow_header_v2 { + uint32_t magic; + uint32_t version; + char backing_file[1024]; + int32_t mtime; + uint64_t size; + uint32_t sectorsize; +}; + |