tcmu: fix multiple uio open/close sequences
authorMike Christie <mchristi@redhat.com>
Fri, 23 Jun 2017 06:18:20 +0000 (01:18 -0500)
committerNicholas Bellinger <nab@linux-iscsi.org>
Fri, 7 Jul 2017 06:11:42 +0000 (23:11 -0700)
commit9260695d65590f4711d1166eadbfcb0acfa0625a
treea5578a39bf795f15434f557a7b716dd40fe1abe5
parent531283ff7593f7059ced43c725d90cec3e5af549
tcmu: fix multiple uio open/close sequences

If the uio device is open and closed multiple times, the
kref count will be off due to tcmu_release getting called
multiple times for each close. This patch integrates
Wenji Tang's patch to add a kref_get on open that now
matches the kref_put done on tcmu_release and adds
a kref_put in tcmu_destroy_device to match the kref_get
done in succesful tcmu_configure_device calls.

Signed-off-by: Mike Christie <mchristi@redhat.com>
Cc: Wenji Tang <tang.wenji@zte.com.cn>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
drivers/target/target_core_user.c