summaryrefslogtreecommitdiffstats
path: root/drivers/vhost
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2016-11-11 14:27:10 +0100
committerMichael S. Tsirkin <mst@redhat.com>2016-12-16 00:13:37 +0200
commitb9fd06d0dae38a88efa4b770dfa9db7dcbe3cda9 (patch)
tree3961f09850f8d26b41d02c0edf9ac340c7d088f9 /drivers/vhost
parentea9156fb3b71d9f7e383253eaff9dd7498b23276 (diff)
downloadop-kernel-dev-b9fd06d0dae38a88efa4b770dfa9db7dcbe3cda9.zip
op-kernel-dev-b9fd06d0dae38a88efa4b770dfa9db7dcbe3cda9.tar.gz
vhost/scsi: Remove unused but set variable
Remove the unused but set variable se_tpg in vhost_scsi_nexus_cb() to fix the following GCC warning when building with 'W=1': drivers/vhost/scsi.c:1752:26: warning: variable ‘se_tpg’ set but not used Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'drivers/vhost')
-rw-r--r--drivers/vhost/scsi.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/vhost/scsi.c b/drivers/vhost/scsi.c
index 6e29d05..e2be447 100644
--- a/drivers/vhost/scsi.c
+++ b/drivers/vhost/scsi.c
@@ -1749,7 +1749,6 @@ out:
static int vhost_scsi_make_nexus(struct vhost_scsi_tpg *tpg,
const char *name)
{
- struct se_portal_group *se_tpg;
struct vhost_scsi_nexus *tv_nexus;
mutex_lock(&tpg->tv_tpg_mutex);
@@ -1758,7 +1757,6 @@ static int vhost_scsi_make_nexus(struct vhost_scsi_tpg *tpg,
pr_debug("tpg->tpg_nexus already exists\n");
return -EEXIST;
}
- se_tpg = &tpg->se_tpg;
tv_nexus = kzalloc(sizeof(struct vhost_scsi_nexus), GFP_KERNEL);
if (!tv_nexus) {
OpenPOWER on IntegriCloud