Skip to content

Commit

Permalink
caif_virtio: use simplified virtqueue accessors.
Browse files Browse the repository at this point in the history
We never add buffers with input and output parts, so use the new accessors.

Cc: Sjur Brendeland <sjur.brandeland@stericsson.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
  • Loading branch information
Rusty Russell committed Mar 20, 2013
1 parent 6797999 commit 71bcbec
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/net/caif/caif_virtio.c
Original file line number Diff line number Diff line change
Expand Up @@ -572,8 +572,7 @@ static int cfv_netdev_tx(struct sk_buff *skb, struct net_device *netdev)
goto err;
}

ret = virtqueue_add_buf(cfv->vq_tx, &sg, 1, 0,
buf_info, GFP_ATOMIC);
ret = virtqueue_add_outbuf(cfv->vq_tx, &sg, 1, buf_info, GFP_ATOMIC);
if (unlikely((ret < 0))) {
/* If flow control works, this shouldn't happen */
netdev_warn(cfv->ndev, "Failed adding buffer to TX vring:%d\n",
Expand Down

0 comments on commit 71bcbec

Please sign in to comment.