diff options
author | Hannes Reinecke <hare@suse.de> | 2013-10-16 03:12:52 -0400 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2013-10-16 16:44:05 -0400 |
commit | 1ec59fee296d798b83a11f888981531dae16bfe8 (patch) | |
tree | 50d0eb776047f10b40c142d3966eecd3e369d8a5 | |
parent | a309f489608f09c5053a2fb4ae8e3d849adb2b33 (diff) |
tcm_loop: Check for valid hba in tcm_loop_drop_nexus()
Signed-off-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
-rw-r--r-- | drivers/target/loopback/tcm_loop.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/target/loopback/tcm_loop.c b/drivers/target/loopback/tcm_loop.c index 150bdb426fc4..21b49f351723 100644 --- a/drivers/target/loopback/tcm_loop.c +++ b/drivers/target/loopback/tcm_loop.c | |||
@@ -932,7 +932,10 @@ static int tcm_loop_drop_nexus( | |||
932 | struct tcm_loop_nexus *tl_nexus; | 932 | struct tcm_loop_nexus *tl_nexus; |
933 | struct tcm_loop_hba *tl_hba = tpg->tl_hba; | 933 | struct tcm_loop_hba *tl_hba = tpg->tl_hba; |
934 | 934 | ||
935 | tl_nexus = tpg->tl_hba->tl_nexus; | 935 | if (!tl_hba) |
936 | return -ENODEV; | ||
937 | |||
938 | tl_nexus = tl_hba->tl_nexus; | ||
936 | if (!tl_nexus) | 939 | if (!tl_nexus) |
937 | return -ENODEV; | 940 | return -ENODEV; |
938 | 941 | ||