diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2013-03-21 14:17:34 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-03-22 14:23:34 (GMT) |
commit | 9d0ca6ed6f2f12eb488f450d5d38d047aa402a53 (patch) | |
tree | dbcab55565593924298fbde1d83456b7c2f49bbc /drivers/net | |
parent | 6b0c21cede22be1f68f0a632c0ca38008ce1abe7 (diff) | |
download | linux-9d0ca6ed6f2f12eb488f450d5d38d047aa402a53.tar.xz |
virtio: remove obsolete virtqueue_get_queue_index()
You can access it directly now, since 3.8: v3.7-rc1-13-g06ca287
'virtio: move queue_index and num_free fields into core struct
virtqueue.'
Cc: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/virtio_net.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c index 57ac4b0..f7d67e8 100644 --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_net.c @@ -154,7 +154,7 @@ struct padded_vnet_hdr { */ static int vq2txq(struct virtqueue *vq) { - return (virtqueue_get_queue_index(vq) - 1) / 2; + return (vq->index - 1) / 2; } static int txq2vq(int txq) @@ -164,7 +164,7 @@ static int txq2vq(int txq) static int vq2rxq(struct virtqueue *vq) { - return virtqueue_get_queue_index(vq) / 2; + return vq->index / 2; } static int rxq2vq(int rxq) |