Btrfs: reorder key offset and flags

Signed-off-by: Chris Mason <chris.mason@oracle.com>
This commit is contained in:
Chris Mason 2007-03-14 14:26:53 -04:00 committed by David Woodhouse
parent 123abc88c9
commit a1516c8921
3 changed files with 9 additions and 8 deletions

View file

@ -26,14 +26,14 @@
*/
struct btrfs_disk_key {
__le64 objectid;
__le32 flags;
__le64 offset;
__le32 flags;
} __attribute__ ((__packed__));
struct btrfs_key {
u64 objectid;
u32 flags;
u64 offset;
u32 flags;
} __attribute__ ((__packed__));
/*