virtio: fix section mismatch warnings
[linux-2.6/linux-2.6-openrd.git] / drivers / virtio / virtio_balloon.c
blob505be88c82aefd7361c7f85f95a8394ffc8ca922
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 u32 page_to_balloon_pfn(struct page *page)
61 unsigned long pfn = page_to_pfn(page);
63 BUILD_BUG_ON(PAGE_SHIFT < VIRTIO_BALLOON_PFN_SHIFT);
64 /* Convert pfn from Linux page size to balloon page size. */
65 return pfn >> (PAGE_SHIFT - VIRTIO_BALLOON_PFN_SHIFT);
68 static void balloon_ack(struct virtqueue *vq)
70 struct virtio_balloon *vb;
71 unsigned int len;
73 vb = vq->vq_ops->get_buf(vq, &len);
74 if (vb)
75 complete(&vb->acked);
78 static void tell_host(struct virtio_balloon *vb, struct virtqueue *vq)
80 struct scatterlist sg;
82 sg_init_one(&sg, vb->pfns, sizeof(vb->pfns[0]) * vb->num_pfns);
84 init_completion(&vb->acked);
86 /* We should always be able to add one buffer to an empty queue. */
87 if (vq->vq_ops->add_buf(vq, &sg, 1, 0, vb) < 0)
88 BUG();
89 vq->vq_ops->kick(vq);
91 /* When host has read buffer, this completes via balloon_ack */
92 wait_for_completion(&vb->acked);
95 static void fill_balloon(struct virtio_balloon *vb, size_t num)
97 /* We can only do one array worth at a time. */
98 num = min(num, ARRAY_SIZE(vb->pfns));
100 for (vb->num_pfns = 0; vb->num_pfns < num; vb->num_pfns++) {
101 struct page *page = alloc_page(GFP_HIGHUSER | __GFP_NORETRY);
102 if (!page) {
103 if (printk_ratelimit())
104 dev_printk(KERN_INFO, &vb->vdev->dev,
105 "Out of puff! Can't get %zu pages\n",
106 num);
107 /* Sleep for at least 1/5 of a second before retry. */
108 msleep(200);
109 break;
111 vb->pfns[vb->num_pfns] = page_to_balloon_pfn(page);
112 totalram_pages--;
113 vb->num_pages++;
114 list_add(&page->lru, &vb->pages);
117 /* Didn't get any? Oh well. */
118 if (vb->num_pfns == 0)
119 return;
121 tell_host(vb, vb->inflate_vq);
124 static void release_pages_by_pfn(const u32 pfns[], unsigned int num)
126 unsigned int i;
128 for (i = 0; i < num; i++) {
129 __free_page(pfn_to_page(pfns[i]));
130 totalram_pages++;
134 static void leak_balloon(struct virtio_balloon *vb, size_t num)
136 struct page *page;
138 /* We can only do one array worth at a time. */
139 num = min(num, ARRAY_SIZE(vb->pfns));
141 for (vb->num_pfns = 0; vb->num_pfns < num; vb->num_pfns++) {
142 page = list_first_entry(&vb->pages, struct page, lru);
143 list_del(&page->lru);
144 vb->pfns[vb->num_pfns] = page_to_balloon_pfn(page);
145 vb->num_pages--;
148 if (vb->tell_host_first) {
149 tell_host(vb, vb->deflate_vq);
150 release_pages_by_pfn(vb->pfns, vb->num_pfns);
151 } else {
152 release_pages_by_pfn(vb->pfns, vb->num_pfns);
153 tell_host(vb, vb->deflate_vq);
157 static void virtballoon_changed(struct virtio_device *vdev)
159 struct virtio_balloon *vb = vdev->priv;
161 wake_up(&vb->config_change);
164 static inline s64 towards_target(struct virtio_balloon *vb)
166 u32 v;
167 vb->vdev->config->get(vb->vdev,
168 offsetof(struct virtio_balloon_config, num_pages),
169 &v, sizeof(v));
170 return (s64)v - vb->num_pages;
173 static void update_balloon_size(struct virtio_balloon *vb)
175 __le32 actual = cpu_to_le32(vb->num_pages);
177 vb->vdev->config->set(vb->vdev,
178 offsetof(struct virtio_balloon_config, actual),
179 &actual, sizeof(actual));
182 static int balloon(void *_vballoon)
184 struct virtio_balloon *vb = _vballoon;
186 set_freezable();
187 while (!kthread_should_stop()) {
188 s64 diff;
190 try_to_freeze();
191 wait_event_interruptible(vb->config_change,
192 (diff = towards_target(vb)) != 0
193 || kthread_should_stop()
194 || freezing(current));
195 if (diff > 0)
196 fill_balloon(vb, diff);
197 else if (diff < 0)
198 leak_balloon(vb, -diff);
199 update_balloon_size(vb);
201 return 0;
204 static int virtballoon_probe(struct virtio_device *vdev)
206 struct virtio_balloon *vb;
207 struct virtqueue *vqs[2];
208 vq_callback_t *callbacks[] = { balloon_ack, balloon_ack };
209 const char *names[] = { "inflate", "deflate" };
210 int err;
212 vdev->priv = vb = kmalloc(sizeof(*vb), GFP_KERNEL);
213 if (!vb) {
214 err = -ENOMEM;
215 goto out;
218 INIT_LIST_HEAD(&vb->pages);
219 vb->num_pages = 0;
220 init_waitqueue_head(&vb->config_change);
221 vb->vdev = vdev;
223 /* We expect two virtqueues. */
224 err = vdev->config->find_vqs(vdev, 2, vqs, callbacks, names);
225 if (err)
226 goto out_free_vb;
228 vb->inflate_vq = vqs[0];
229 vb->deflate_vq = vqs[1];
231 vb->thread = kthread_run(balloon, vb, "vballoon");
232 if (IS_ERR(vb->thread)) {
233 err = PTR_ERR(vb->thread);
234 goto out_del_vqs;
237 vb->tell_host_first
238 = virtio_has_feature(vdev, VIRTIO_BALLOON_F_MUST_TELL_HOST);
240 return 0;
242 out_del_vqs:
243 vdev->config->del_vqs(vdev);
244 out_free_vb:
245 kfree(vb);
246 out:
247 return err;
250 static void __devexit virtballoon_remove(struct virtio_device *vdev)
252 struct virtio_balloon *vb = vdev->priv;
254 kthread_stop(vb->thread);
256 /* There might be pages left in the balloon: free them. */
257 while (vb->num_pages)
258 leak_balloon(vb, vb->num_pages);
260 /* Now we reset the device so we can clean up the queues. */
261 vdev->config->reset(vdev);
263 vdev->config->del_vqs(vdev);
264 kfree(vb);
267 static unsigned int features[] = { VIRTIO_BALLOON_F_MUST_TELL_HOST };
269 static struct virtio_driver virtio_balloon_driver = {
270 .feature_table = features,
271 .feature_table_size = ARRAY_SIZE(features),
272 .driver.name = KBUILD_MODNAME,
273 .driver.owner = THIS_MODULE,
274 .id_table = id_table,
275 .probe = virtballoon_probe,
276 .remove = __devexit_p(virtballoon_remove),
277 .config_changed = virtballoon_changed,
280 static int __init init(void)
282 return register_virtio_driver(&virtio_balloon_driver);
285 static void __exit fini(void)
287 unregister_virtio_driver(&virtio_balloon_driver);
289 module_init(init);
290 module_exit(fini);
292 MODULE_DEVICE_TABLE(virtio, id_table);
293 MODULE_DESCRIPTION("Virtio balloon driver");
294 MODULE_LICENSE("GPL");