nilfs2: remove redundant pointer sbufs
authorColin Ian King <colin.i.king@gmail.com>
Thu, 30 Dec 2021 09:29:12 +0000 (20:29 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Sun, 16 Jan 2022 07:39:38 +0000 (18:39 +1100)
commit2a3301e55bedc45237953245d8e1464fea556a2c
tree0133aaa2fbbe42f25bac191c46be9580f215046e
parentf5090d41b953ab6e8c8a94bdc542628bc31421a5
nilfs2: remove redundant pointer sbufs

Pointer sbufs is being assigned a value but it's not being used later on.
The pointer is redundant and can be removed.  Cleans up scan-build static
analysis warning:

fs/nilfs2/page.c:203:8: warning: Although the value stored to 'sbufs'
is used in the enclosing expression, the value is never actually read
from 'sbufs' [deadcode.DeadStores]
        sbh = sbufs = page_buffers(src);

Link: https://lkml.kernel.org/r/20211211180955.550380-1-colin.i.king@gmail.com
Link: https://lkml.kernel.org/r/1640712476-15136-1-git-send-email-konishi.ryusuke@gmail.com
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
fs/nilfs2/page.c