diff options
author | Chris Mason <chris.mason@oracle.com> | 2007-03-14 14:26:53 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@hera.kernel.org> | 2007-03-14 14:26:53 -0400 |
commit | a1516c8921ce2c148b69493e858d95bc79c92f01 (patch) | |
tree | 3ebe5781aa7f89bd4c78c649941917c272f81f99 /fs/btrfs/ctree.h | |
parent | 123abc88c9087b9c5605566ee3491aaef17fd837 (diff) |
Btrfs: reorder key offset and flags
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/ctree.h')
-rw-r--r-- | fs/btrfs/ctree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/ctree.h b/fs/btrfs/ctree.h index c61ad0f69be9..73ebc824924a 100644 --- a/fs/btrfs/ctree.h +++ b/fs/btrfs/ctree.h | |||
@@ -26,14 +26,14 @@ | |||
26 | */ | 26 | */ |
27 | struct btrfs_disk_key { | 27 | struct btrfs_disk_key { |
28 | __le64 objectid; | 28 | __le64 objectid; |
29 | __le32 flags; | ||
30 | __le64 offset; | 29 | __le64 offset; |
30 | __le32 flags; | ||
31 | } __attribute__ ((__packed__)); | 31 | } __attribute__ ((__packed__)); |
32 | 32 | ||
33 | struct btrfs_key { | 33 | struct btrfs_key { |
34 | u64 objectid; | 34 | u64 objectid; |
35 | u32 flags; | ||
36 | u64 offset; | 35 | u64 offset; |
36 | u32 flags; | ||
37 | } __attribute__ ((__packed__)); | 37 | } __attribute__ ((__packed__)); |
38 | 38 | ||
39 | /* | 39 | /* |