summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2017-09-07 15:51:33 +0200
committerMartin K. Petersen <martin.petersen@oracle.com>2017-09-16 03:44:36 +0200
commit7c82532dcce8b39991ef5f486c2b54d7bb3e171b (patch)
tree997340d1b5c6c9e0357e61746c6984e38fecae37 /drivers
parentscsi: libsas: add event to defer list tail instead of head when draining (diff)
downloadlinux-7c82532dcce8b39991ef5f486c2b54d7bb3e171b.tar.xz
linux-7c82532dcce8b39991ef5f486c2b54d7bb3e171b.zip
scsi: libcxgbi: remove redundant check and close on csk
csk is always null on the error return path and so the non-null check and call to cxgbi_sock_closed on csk is redundant and can be removed. Detected by: CoverityScan CID#114329 ("Logically dead code") Signed-off-by: Colin Ian King <colin.king@canonical.com> Acked-by: Varun Prakash <varun@chelsio.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/scsi/cxgbi/libcxgbi.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/scsi/cxgbi/libcxgbi.c b/drivers/scsi/cxgbi/libcxgbi.c
index 512c8f1ea5b0..da36c2de069e 100644
--- a/drivers/scsi/cxgbi/libcxgbi.c
+++ b/drivers/scsi/cxgbi/libcxgbi.c
@@ -688,8 +688,6 @@ rel_neigh:
rel_rt:
ip_rt_put(rt);
- if (csk)
- cxgbi_sock_closed(csk);
err_out:
return ERR_PTR(err);
}