Commit e764e681 authored by Kent Overstreet's avatar Kent Overstreet

bcachefs: Fix bad shift in bch2_read_flag_list()

Signed-off-by: default avatarKent Overstreet <kent.overstreet@linux.dev>
parent 2007d28e
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment