]> git.baikalelectronics.ru Git - kernel.git/commit
net/smc: Remove redundant assignment to rc
authorJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Tue, 27 Apr 2021 10:32:22 +0000 (18:32 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 27 Apr 2021 21:17:50 +0000 (14:17 -0700)
commit4b7db5d4349a3f06aa96e2ca099f2e0183ab994e
tree045216a74c5bb8fbc35303ff6acd4dc09b81f22b
parent6da753d4de53e14e5ce690de8b319e8907d96a43
net/smc: Remove redundant assignment to rc

Variable rc is set to zero but this value is never read as it is
overwritten with a new value later on, hence it is a redundant
assignment and can be removed.

Cleans up the following clang-analyzer warning:

net/smc/af_smc.c:1079:3: warning: Value stored to 'rc' is never read
[clang-analyzer-deadcode.DeadStores].

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/smc/af_smc.c