mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-24 07:31:41 +00:00
Btrfs: reorder key offset and flags
Signed-off-by: Chris Mason <chris.mason@oracle.com>
This commit is contained in:
parent
123abc88c9
commit
a1516c8921
3 changed files with 9 additions and 8 deletions
|
@ -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__));
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue