diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2025-03-20 21:15:33 +0300 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2025-03-24 16:50:37 +0300 |
commit | 9ea24b287b3b9118a157509d931e7d27414e98c7 (patch) | |
tree | 2b07dc81eaaf0840dd834033222bfa27e524ae6e | |
parent | 1f88c35674954fbb0b14d994c5fa02c7c5190356 (diff) | |
download | linux-9ea24b287b3b9118a157509d931e7d27414e98c7.tar.xz |
bcachefs: Eliminate padding in move_bucket_key
We appear to be tripping over a compiler/kmsan bug with padding fields -
this is an easy workaround.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r-- | fs/bcachefs/move_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/move_types.h b/fs/bcachefs/move_types.h index 82e473ed48d2..807f779f6f76 100644 --- a/fs/bcachefs/move_types.h +++ b/fs/bcachefs/move_types.h @@ -32,7 +32,7 @@ struct bch_move_stats { struct move_bucket_key { struct bpos bucket; - u8 gen; + unsigned gen; }; struct move_bucket { |