diff options
author | Greg Kurz <gkurz@linux.vnet.ibm.com> | 2016-02-16 15:59:44 +0100 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2016-03-02 17:02:04 +0200 |
commit | 80f7d0301e7913f704d3505722f806717c61dff5 (patch) | |
tree | 54483fc68aeb9f2764392eb116aebdb4fd254a0b /drivers/vhost/scsi.c | |
parent | c507203756ca6303df2191c96c1385e965e2f0b7 (diff) | |
download | blackbird-obmc-linux-80f7d0301e7913f704d3505722f806717c61dff5.tar.gz blackbird-obmc-linux-80f7d0301e7913f704d3505722f806717c61dff5.zip |
vhost: rename vhost_init_used()
Looking at how callers use this, maybe we should just rename init_used
to vhost_vq_init_access. The _used suffix was a hint that we
access the vq used ring. But maybe what callers care about is
that it must be called after access_ok.
Also, this function manipulates the vq->is_le field which isn't related
to the vq used ring.
This patch simply renames vhost_init_used() to vhost_vq_init_access() as
suggested by Michael.
No behaviour change.
Signed-off-by: Greg Kurz <gkurz@linux.vnet.ibm.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'drivers/vhost/scsi.c')
-rw-r--r-- | drivers/vhost/scsi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/vhost/scsi.c b/drivers/vhost/scsi.c index 29cfc57d496e..f898686cdd93 100644 --- a/drivers/vhost/scsi.c +++ b/drivers/vhost/scsi.c @@ -1274,7 +1274,7 @@ vhost_scsi_set_endpoint(struct vhost_scsi *vs, vq = &vs->vqs[i].vq; mutex_lock(&vq->mutex); vq->private_data = vs_tpg; - vhost_init_used(vq); + vhost_vq_init_access(vq); mutex_unlock(&vq->mutex); } ret = 0; |