diff options
author | Andy Grover <agrover@redhat.com> | 2013-11-26 14:49:24 -0500 |
---|---|---|
committer | Nicholas Bellinger <nab@linux-iscsi.org> | 2013-12-19 17:49:54 -0500 |
commit | de06875f089678f4f9f1e8d5e1421fb0ceab12d0 (patch) | |
tree | 20f4ce70000325ea696bad924bc8eed70e6134e1 /drivers | |
parent | 95cadace8f3959282e76ebf8b382bd0930807d2c (diff) |
target: Remove extra percpu_ref_init
lun->lun_ref is also initialized in core_tpg_post_addlun, so it doesn't
need to be done in core_tpg_setup_virtual_lun0.
(nab: Drop left-over percpu_ref_cancel_init in failure path)
Signed-off-by: Andy Grover <agrover@redhat.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/target/target_core_tpg.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/target/target_core_tpg.c b/drivers/target/target_core_tpg.c index f755712a9a0d..2a573de19a9f 100644 --- a/drivers/target/target_core_tpg.c +++ b/drivers/target/target_core_tpg.c | |||
@@ -656,15 +656,9 @@ static int core_tpg_setup_virtual_lun0(struct se_portal_group *se_tpg) | |||
656 | spin_lock_init(&lun->lun_sep_lock); | 656 | spin_lock_init(&lun->lun_sep_lock); |
657 | init_completion(&lun->lun_ref_comp); | 657 | init_completion(&lun->lun_ref_comp); |
658 | 658 | ||
659 | ret = percpu_ref_init(&lun->lun_ref, core_tpg_lun_ref_release); | ||
660 | if (ret < 0) | ||
661 | return ret; | ||
662 | |||
663 | ret = core_tpg_post_addlun(se_tpg, lun, lun_access, dev); | 659 | ret = core_tpg_post_addlun(se_tpg, lun, lun_access, dev); |
664 | if (ret < 0) { | 660 | if (ret < 0) |
665 | percpu_ref_cancel_init(&lun->lun_ref); | ||
666 | return ret; | 661 | return ret; |
667 | } | ||
668 | 662 | ||
669 | return 0; | 663 | return 0; |
670 | } | 664 | } |