ceph: remove redundant variable ino
authorColin Ian King <colin.i.king@gmail.com>
Wed, 18 May 2022 08:55:08 +0000 (09:55 +0100)
committerIlya Dryomov <idryomov@gmail.com>
Wed, 25 May 2022 18:45:14 +0000 (20:45 +0200)
commit2ecd0edd13a8bed87c3588bcd4a048113eff18f6
treeaa4f64769fc7d7579ab6f36c731c881ddbc94005
parenta74379543d229a3fb1af8cd44cbd19844a7bb1bc
ceph: remove redundant variable ino

Variable ino is being assigned a value that is never read. The variable
and assignment are redundant, remove it.

Cleans up clang scan build warning:
warning: Although the value stored to 'ino' is used in the enclosing
expression, the value is never actually read from 'ino'
[deadcode.DeadStores]

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
fs/ceph/mds_client.c