mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:41:42 +00:00
bcachefs: Fix bad shift in bch2_read_flag_list()
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
parent
2007d28ec0
commit
e764e68103
@ -222,7 +222,7 @@ u64 bch2_read_flag_list(const char *opt, const char * const list[])
|
||||
break;
|
||||
}
|
||||
|
||||
ret |= 1 << flag;
|
||||
ret |= BIT_ULL(flag);
|
||||
}
|
||||
|
||||
kfree(d);
|
||||
|
Loading…
Reference in New Issue
Block a user