diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2012-01-12 00:14:42 -0500 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2012-01-12 00:14:42 -0500 |
commit | f96fde41f7f9af6cf20f6a1919f5d9670f84d574 (patch) | |
tree | 14b8a0343b255989ac8ba0ea34e18dca419723df /net/9p/trans_virtio.c | |
parent | 5dfc17628d57f9e62043ed0cba03a6e3eb019a78 (diff) |
virtio: rename virtqueue_add_buf_gfp to virtqueue_add_buf
Remove wrapper functions. This makes the allocation type explicit in
all callers; I used GPF_KERNEL where it seemed obvious, left it at
GFP_ATOMIC otherwise.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'net/9p/trans_virtio.c')
-rw-r--r-- | net/9p/trans_virtio.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/9p/trans_virtio.c b/net/9p/trans_virtio.c index 330421e54713..3d432068f627 100644 --- a/net/9p/trans_virtio.c +++ b/net/9p/trans_virtio.c | |||
@@ -272,7 +272,8 @@ req_retry: | |||
272 | in = pack_sg_list(chan->sg, out, | 272 | in = pack_sg_list(chan->sg, out, |
273 | VIRTQUEUE_NUM, req->rc->sdata, req->rc->capacity); | 273 | VIRTQUEUE_NUM, req->rc->sdata, req->rc->capacity); |
274 | 274 | ||
275 | err = virtqueue_add_buf(chan->vq, chan->sg, out, in, req->tc); | 275 | err = virtqueue_add_buf(chan->vq, chan->sg, out, in, req->tc, |
276 | GFP_ATOMIC); | ||
276 | if (err < 0) { | 277 | if (err < 0) { |
277 | if (err == -ENOSPC) { | 278 | if (err == -ENOSPC) { |
278 | chan->ring_bufs_avail = 0; | 279 | chan->ring_bufs_avail = 0; |
@@ -414,7 +415,8 @@ req_retry_pinned: | |||
414 | in += pack_sg_list_p(chan->sg, out + in, VIRTQUEUE_NUM, | 415 | in += pack_sg_list_p(chan->sg, out + in, VIRTQUEUE_NUM, |
415 | in_pages, in_nr_pages, uidata, inlen); | 416 | in_pages, in_nr_pages, uidata, inlen); |
416 | 417 | ||
417 | err = virtqueue_add_buf(chan->vq, chan->sg, out, in, req->tc); | 418 | err = virtqueue_add_buf(chan->vq, chan->sg, out, in, req->tc, |
419 | GFP_ATOMIC); | ||
418 | if (err < 0) { | 420 | if (err < 0) { |
419 | if (err == -ENOSPC) { | 421 | if (err == -ENOSPC) { |
420 | chan->ring_bufs_avail = 0; | 422 | chan->ring_bufs_avail = 0; |