Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 370948
b: refs/heads/master
c: 6797999
h: refs/heads/master
v: v3
  • Loading branch information
Rusty Russell committed Mar 20, 2013
1 parent c59a45c commit 4cc8524
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fb6aa6fcfec29932122cb0fb2d5d1f7700a9883b
refs/heads/master: 6797999d99587e7b4189cf24c8f1053e02444703
6 changes: 3 additions & 3 deletions trunk/drivers/char/virtio_console.c
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ static int add_inbuf(struct virtqueue *vq, struct port_buffer *buf)

sg_init_one(sg, buf->buf, buf->size);

ret = virtqueue_add_buf(vq, sg, 0, 1, buf, GFP_ATOMIC);
ret = virtqueue_add_inbuf(vq, sg, 1, buf, GFP_ATOMIC);
virtqueue_kick(vq);
if (!ret)
ret = vq->num_free;
Expand Down Expand Up @@ -569,7 +569,7 @@ static ssize_t __send_control_msg(struct ports_device *portdev, u32 port_id,
vq = portdev->c_ovq;

sg_init_one(sg, &cpkt, sizeof(cpkt));
if (virtqueue_add_buf(vq, sg, 1, 0, &cpkt, GFP_ATOMIC) == 0) {
if (virtqueue_add_outbuf(vq, sg, 1, &cpkt, GFP_ATOMIC) == 0) {
virtqueue_kick(vq);
while (!virtqueue_get_buf(vq, &len))
cpu_relax();
Expand Down Expand Up @@ -618,7 +618,7 @@ static ssize_t __send_to_port(struct port *port, struct scatterlist *sg,

reclaim_consumed_buffers(port);

err = virtqueue_add_buf(out_vq, sg, nents, 0, data, GFP_ATOMIC);
err = virtqueue_add_outbuf(out_vq, sg, nents, data, GFP_ATOMIC);

/* Tell Host to go! */
virtqueue_kick(out_vq);
Expand Down

0 comments on commit 4cc8524

Please sign in to comment.