diff options
| author | Joe Perches <joe@perches.com> | 2012-10-30 18:57:22 -0400 |
|---|---|---|
| committer | Rusty Russell <rusty@rustcorp.com.au> | 2012-12-17 23:50:40 -0500 |
| commit | 800ba5eabf13485fecbf468f6b2999608413d176 (patch) | |
| tree | 3c7cc21de8896fbbf874824f92b9353f9b6141af /drivers/virtio | |
| parent | 0127f6855e643c6b8fd5fbe3b5fa23c9d26cd237 (diff) | |
virtio: Convert dev_printk(KERN_<LEVEL> to dev_<level>(
dev_<level> calls take less code than dev_printk(KERN_<LEVEL>
and reducing object size is good.
Convert if (printk_ratelimit()) dev_printk to dev_<level>_ratelimited.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/virtio')
| -rw-r--r-- | drivers/virtio/virtio_balloon.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/virtio/virtio_balloon.c b/drivers/virtio/virtio_balloon.c index 0908e6044333..586395cca5fe 100644 --- a/drivers/virtio/virtio_balloon.c +++ b/drivers/virtio/virtio_balloon.c | |||
| @@ -130,10 +130,9 @@ static void fill_balloon(struct virtio_balloon *vb, size_t num) | |||
| 130 | struct page *page = alloc_page(GFP_HIGHUSER | __GFP_NORETRY | | 130 | struct page *page = alloc_page(GFP_HIGHUSER | __GFP_NORETRY | |
| 131 | __GFP_NOMEMALLOC | __GFP_NOWARN); | 131 | __GFP_NOMEMALLOC | __GFP_NOWARN); |
| 132 | if (!page) { | 132 | if (!page) { |
| 133 | if (printk_ratelimit()) | 133 | dev_info_ratelimited(&vb->vdev->dev, |
| 134 | dev_printk(KERN_INFO, &vb->vdev->dev, | 134 | "Out of puff! Can't get %zu pages\n", |
| 135 | "Out of puff! Can't get %zu pages\n", | 135 | num); |
| 136 | num); | ||
| 137 | /* Sleep for at least 1/5 of a second before retry. */ | 136 | /* Sleep for at least 1/5 of a second before retry. */ |
| 138 | msleep(200); | 137 | msleep(200); |
| 139 | break; | 138 | break; |
