ocfs2: remove redundant assignment to variable bit_off
authorColin Ian King <colin.i.king@gmail.com>
Thu, 22 Jun 2023 10:27:36 +0000 (11:27 +0100)
committerAndrew Morton <akpm@linux-foundation.org>
Sat, 24 Jun 2023 00:04:04 +0000 (17:04 -0700)
commit7982f975600d59ae3a3d98831f703e55243aba7c
treed4645c8e91ccaec4e489b23a74a8c7f138df0c0a
parenta8992d8ad7775860594d3d981ef93fc423185fa4
ocfs2: remove redundant assignment to variable bit_off

Variable bit_off is being assigned a value that is never read, it is being
re-assigned a new value in the following while loop.  Remove the
assignment.  Cleans up clang scan build warning:

fs/ocfs2/localalloc.c:976:18: warning: Although the value stored to
'bit_off' is used in the enclosing expression, the value is never
actually read from 'bit_off' [deadcode.DeadStores]

Link: https://lkml.kernel.org/r/20230622102736.2831126-1-colin.i.king@gmail.com
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Joseph Qi <joseph.qi@linux.alibaba.com>
Cc: Mark Fasheh <mark@fasheh.com>
Cc: Joel Becker <jlbec@evilplan.org>
Cc: Junxiao Bi <junxiao.bi@oracle.com>
Cc: Changwei Ge <gechangwei@live.cn>
Cc: Gang He <ghe@suse.com>
Cc: Jun Piao <piaojun@huawei.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
fs/ocfs2/localalloc.c