]> git.ipfire.org Git - thirdparty/linux.git/commit
bcachefs: remove redundant initialization of pointer d
authorColin Ian King <colin.i.king@gmail.com>
Tue, 12 Sep 2023 12:37:40 +0000 (13:37 +0100)
committerKent Overstreet <kent.overstreet@linux.dev>
Sun, 22 Oct 2023 21:10:12 +0000 (17:10 -0400)
commit7cb0e6992e5c56c2751e08c8161203ba0566f510
tree097b03186540f182fd443631e3545d48704f4aae
parentfeb5cc398120ce09fd7c72d361b3d14d9e280b96
bcachefs: remove redundant initialization of pointer d

The pointer d is being initialized with a value that is never read,
it is being re-assigned later on when it is used in a for-loop.
The initialization is redundant and can be removed.

Cleans up clang-scan build warning:
fs/bcachefs/buckets.c:1303:25: warning: Value stored to 'd' during its
initialization is never read [deadcode.DeadStores]

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
fs/bcachefs/btree_update_interior.c
fs/bcachefs/buckets.c