mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
bcachefs: rename version -> bversion for big endian builds
Builds on big endian systems fail as follows.
fs/bcachefs/bkey.h: In function 'bch2_bkey_format_add_key':
fs/bcachefs/bkey.h:557:41: error:
'const struct bkey' has no member named 'bversion'
The original commit only renamed the variable for little endian builds.
Rename it for big endian builds as well to fix the problem.
Fixes: cf49f8a8c2
("bcachefs: rename version -> bversion")
Cc: Kent Overstreet <kent.overstreet@linux.dev>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
parent
9852d85ec9
commit
2007d28ec0
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ struct bkey {
|
|||
#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
||||
struct bpos p;
|
||||
__u32 size; /* extent size, in sectors */
|
||||
struct bversion version;
|
||||
struct bversion bversion;
|
||||
|
||||
__u8 pad[1];
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue