Commit b893eb01 authored by Brian King's avatar Brian King Committed by Martin K. Petersen

scsi: ibmvfc: Fix NULL return compiler warning

Fix up a compiler warning introduced via 54b04c99d02e

Link: https://lore.kernel.org/r/1583159961-15903-1-git-send-email-brking@linux.vnet.ibm.com
Fixes: 54b04c99d02e ("scsi: ibmvfc: Avoid loss of all paths during SVC node reboot")
Signed-off-by: default avatarBrian King <brking@linux.vnet.ibm.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 5848fe96
...@@ -3641,7 +3641,7 @@ static void ibmvfc_tgt_implicit_logout_and_del(struct ibmvfc_target *tgt) ...@@ -3641,7 +3641,7 @@ static void ibmvfc_tgt_implicit_logout_and_del(struct ibmvfc_target *tgt)
struct ibmvfc_event *evt; struct ibmvfc_event *evt;
if (vhost->discovery_threads >= disc_threads) if (vhost->discovery_threads >= disc_threads)
return NULL; return;
vhost->discovery_threads++; vhost->discovery_threads++;
evt = __ibmvfc_tgt_get_implicit_logout_evt(tgt, evt = __ibmvfc_tgt_get_implicit_logout_evt(tgt,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment