Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git] / drivers / virtio / virtio_balloon.c
blob748e0c21ea52426f2f4e809918dfed417c5840df
1 /* Virtio balloon implementation, inspired by Dor Loar and Marcelo
2 * Tosatti's implementations.
4 * Copyright 2008 Rusty Russell IBM Corporation
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 //#define DEBUG
21 #include <linux/virtio.h>
22 #include <linux/virtio_balloon.h>
23 #include <linux/swap.h>
24 #include <linux/kthread.h>
25 #include <linux/freezer.h>
26 #include <linux/delay.h>
28 struct virtio_balloon
30 struct virtio_device *vdev;
31 struct virtqueue *inflate_vq, *deflate_vq;
33 /* Where the ballooning thread waits for config to change. */
34 wait_queue_head_t config_change;
36 /* The thread servicing the balloon. */
37 struct task_struct *thread;
39 /* Waiting for host to ack the pages we released. */
40 struct completion acked;
42 /* Do we have to tell Host *before* we reuse pages? */
43 bool tell_host_first;
45 /* The pages we've told the Host we're not using. */
46 unsigned int num_pages;
47 struct list_head pages;
49 /* The array of pfns we tell the Host about. */
50 unsigned int num_pfns;
51 u32 pfns[256];
54 static struct virtio_device_id id_table[] = {
55 { VIRTIO_ID_BALLOON, VIRTIO_DEV_ANY_ID },
56 { 0 },
59 static void balloon_ack(struct virtqueue *vq)
61 struct virtio_balloon *vb;
62 unsigned int len;
64 vb = vq->vq_ops->get_buf(vq, &len);
65 if (vb)
66 complete(&vb->acked);
69 static void tell_host(struct virtio_balloon *vb, struct virtqueue *vq)
71 struct scatterlist sg;
73 sg_init_one(&sg, vb->pfns, sizeof(vb->pfns[0]) * vb->num_pfns);
75 init_completion(&vb->acked);
77 /* We should always be able to add one buffer to an empty queue. */
78 if (vq->vq_ops->add_buf(vq, &sg, 1, 0, vb) != 0)
79 BUG();
80 vq->vq_ops->kick(vq);
82 /* When host has read buffer, this completes via balloon_ack */
83 wait_for_completion(&vb->acked);
86 static void fill_balloon(struct virtio_balloon *vb, size_t num)
88 /* We can only do one array worth at a time. */
89 num = min(num, ARRAY_SIZE(vb->pfns));
91 for (vb->num_pfns = 0; vb->num_pfns < num; vb->num_pfns++) {
92 struct page *page = alloc_page(GFP_HIGHUSER | __GFP_NORETRY);
93 if (!page) {
94 if (printk_ratelimit())
95 dev_printk(KERN_INFO, &vb->vdev->dev,
96 "Out of puff! Can't get %zu pages\n",
97 num);
98 /* Sleep for at least 1/5 of a second before retry. */
99 msleep(200);
100 break;
102 vb->pfns[vb->num_pfns] = page_to_pfn(page);
103 totalram_pages--;
104 vb->num_pages++;
105 list_add(&page->lru, &vb->pages);
108 /* Didn't get any? Oh well. */
109 if (vb->num_pfns == 0)
110 return;
112 tell_host(vb, vb->inflate_vq);
115 static void release_pages_by_pfn(const u32 pfns[], unsigned int num)
117 unsigned int i;
119 for (i = 0; i < num; i++) {
120 __free_page(pfn_to_page(pfns[i]));
121 totalram_pages++;
125 static void leak_balloon(struct virtio_balloon *vb, size_t num)
127 struct page *page;
129 /* We can only do one array worth at a time. */
130 num = min(num, ARRAY_SIZE(vb->pfns));
132 for (vb->num_pfns = 0; vb->num_pfns < num; vb->num_pfns++) {
133 page = list_first_entry(&vb->pages, struct page, lru);
134 list_del(&page->lru);
135 vb->pfns[vb->num_pfns] = page_to_pfn(page);
136 vb->num_pages--;
139 if (vb->tell_host_first) {
140 tell_host(vb, vb->deflate_vq);
141 release_pages_by_pfn(vb->pfns, vb->num_pfns);
142 } else {
143 release_pages_by_pfn(vb->pfns, vb->num_pfns);
144 tell_host(vb, vb->deflate_vq);
148 static void virtballoon_changed(struct virtio_device *vdev)
150 struct virtio_balloon *vb = vdev->priv;
152 wake_up(&vb->config_change);
155 <<<<<<< HEAD:drivers/virtio/virtio_balloon.c
156 static inline int towards_target(struct virtio_balloon *vb)
157 =======
158 static inline s64 towards_target(struct virtio_balloon *vb)
159 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/virtio/virtio_balloon.c
161 u32 v;
162 __virtio_config_val(vb->vdev,
163 offsetof(struct virtio_balloon_config, num_pages),
164 &v);
165 return v - vb->num_pages;
168 static void update_balloon_size(struct virtio_balloon *vb)
170 __le32 actual = cpu_to_le32(vb->num_pages);
172 vb->vdev->config->set(vb->vdev,
173 offsetof(struct virtio_balloon_config, actual),
174 &actual, sizeof(actual));
177 static int balloon(void *_vballoon)
179 struct virtio_balloon *vb = _vballoon;
181 set_freezable();
182 while (!kthread_should_stop()) {
183 <<<<<<< HEAD:drivers/virtio/virtio_balloon.c
184 int diff;
185 =======
186 s64 diff;
187 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/virtio/virtio_balloon.c
189 try_to_freeze();
190 wait_event_interruptible(vb->config_change,
191 (diff = towards_target(vb)) != 0
192 || kthread_should_stop());
193 if (diff > 0)
194 fill_balloon(vb, diff);
195 else if (diff < 0)
196 leak_balloon(vb, -diff);
197 update_balloon_size(vb);
199 return 0;
202 static int virtballoon_probe(struct virtio_device *vdev)
204 struct virtio_balloon *vb;
205 int err;
207 vdev->priv = vb = kmalloc(sizeof(*vb), GFP_KERNEL);
208 if (!vb) {
209 err = -ENOMEM;
210 goto out;
213 INIT_LIST_HEAD(&vb->pages);
214 vb->num_pages = 0;
215 init_waitqueue_head(&vb->config_change);
216 vb->vdev = vdev;
218 /* We expect two virtqueues. */
219 vb->inflate_vq = vdev->config->find_vq(vdev, 0, balloon_ack);
220 if (IS_ERR(vb->inflate_vq)) {
221 err = PTR_ERR(vb->inflate_vq);
222 goto out_free_vb;
225 vb->deflate_vq = vdev->config->find_vq(vdev, 1, balloon_ack);
226 if (IS_ERR(vb->deflate_vq)) {
227 err = PTR_ERR(vb->deflate_vq);
228 goto out_del_inflate_vq;
231 vb->thread = kthread_run(balloon, vb, "vballoon");
232 if (IS_ERR(vb->thread)) {
233 err = PTR_ERR(vb->thread);
234 goto out_del_deflate_vq;
237 vb->tell_host_first
238 = vdev->config->feature(vdev, VIRTIO_BALLOON_F_MUST_TELL_HOST);
240 return 0;
242 out_del_deflate_vq:
243 vdev->config->del_vq(vb->deflate_vq);
244 out_del_inflate_vq:
245 vdev->config->del_vq(vb->inflate_vq);
246 out_free_vb:
247 kfree(vb);
248 out:
249 return err;
252 static void virtballoon_remove(struct virtio_device *vdev)
254 struct virtio_balloon *vb = vdev->priv;
256 kthread_stop(vb->thread);
258 /* There might be pages left in the balloon: free them. */
259 while (vb->num_pages)
260 leak_balloon(vb, vb->num_pages);
262 /* Now we reset the device so we can clean up the queues. */
263 vdev->config->reset(vdev);
265 vdev->config->del_vq(vb->deflate_vq);
266 vdev->config->del_vq(vb->inflate_vq);
267 kfree(vb);
270 static struct virtio_driver virtio_balloon = {
271 .driver.name = KBUILD_MODNAME,
272 .driver.owner = THIS_MODULE,
273 .id_table = id_table,
274 .probe = virtballoon_probe,
275 .remove = __devexit_p(virtballoon_remove),
276 .config_changed = virtballoon_changed,
279 static int __init init(void)
281 return register_virtio_driver(&virtio_balloon);
284 static void __exit fini(void)
286 unregister_virtio_driver(&virtio_balloon);
288 module_init(init);
289 module_exit(fini);
291 MODULE_DEVICE_TABLE(virtio, id_table);
292 MODULE_DESCRIPTION("Virtio balloon driver");
293 MODULE_LICENSE("GPL");