blob: 7d7add5ceba452867fbcb11d2a6d2f2056a0da1f [file] [log] [blame]
Sasha Levin1e214a52011-11-03 10:20:04 +02001/*
2 * Virtio balloon implementation, inspired by Dor Laor and Marcelo
Rusty Russell6b35e402008-02-04 23:50:12 -05003 * Tosatti's implementations.
4 *
5 * Copyright 2008 Rusty Russell IBM Corporation
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
Sasha Levin1e214a52011-11-03 10:20:04 +020021
Rusty Russell6b35e402008-02-04 23:50:12 -050022#include <linux/virtio.h>
23#include <linux/virtio_balloon.h>
24#include <linux/swap.h>
25#include <linux/kthread.h>
26#include <linux/freezer.h>
Johann Felix Soden6659a0f2008-02-06 01:40:22 -080027#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Paul Gortmakerb5a2c4f2011-07-03 16:20:30 -040029#include <linux/module.h>
Rafael Aquinie2250422012-12-11 16:02:45 -080030#include <linux/balloon_compaction.h>
Rusty Russell6b35e402008-02-04 23:50:12 -050031
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030032/*
33 * Balloon device works in 4K page units. So each page is pointed to by
34 * multiple balloon pages. All memory counters in this driver are in balloon
35 * page units.
36 */
Rafael Aquinie2250422012-12-11 16:02:45 -080037#define VIRTIO_BALLOON_PAGES_PER_PAGE (unsigned)(PAGE_SIZE >> VIRTIO_BALLOON_PFN_SHIFT)
38#define VIRTIO_BALLOON_ARRAY_PFNS_MAX 256
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030039
Rusty Russell6b35e402008-02-04 23:50:12 -050040struct virtio_balloon
41{
42 struct virtio_device *vdev;
Adam Litke9564e132009-11-30 10:14:15 -060043 struct virtqueue *inflate_vq, *deflate_vq, *stats_vq;
Rusty Russell6b35e402008-02-04 23:50:12 -050044
45 /* Where the ballooning thread waits for config to change. */
46 wait_queue_head_t config_change;
47
48 /* The thread servicing the balloon. */
49 struct task_struct *thread;
50
51 /* Waiting for host to ack the pages we released. */
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +030052 wait_queue_head_t acked;
Rusty Russell6b35e402008-02-04 23:50:12 -050053
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030054 /* Number of balloon pages we've told the Host we're not using. */
Rusty Russell6b35e402008-02-04 23:50:12 -050055 unsigned int num_pages;
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030056 /*
Rafael Aquinie2250422012-12-11 16:02:45 -080057 * The pages we've told the Host we're not using are enqueued
58 * at vb_dev_info->pages list.
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030059 * Each page on this list adds VIRTIO_BALLOON_PAGES_PER_PAGE
60 * to num_pages above.
61 */
Rafael Aquinie2250422012-12-11 16:02:45 -080062 struct balloon_dev_info *vb_dev_info;
63
64 /* Synchronize access/update to this struct virtio_balloon elements */
65 struct mutex balloon_lock;
Rusty Russell6b35e402008-02-04 23:50:12 -050066
67 /* The array of pfns we tell the Host about. */
68 unsigned int num_pfns;
Rafael Aquinie2250422012-12-11 16:02:45 -080069 u32 pfns[VIRTIO_BALLOON_ARRAY_PFNS_MAX];
Adam Litke9564e132009-11-30 10:14:15 -060070
71 /* Memory statistics */
Adam Litke1f34c712009-12-10 16:35:15 -060072 int need_stats_update;
Adam Litke9564e132009-11-30 10:14:15 -060073 struct virtio_balloon_stat stats[VIRTIO_BALLOON_S_NR];
Rusty Russell6b35e402008-02-04 23:50:12 -050074};
75
76static struct virtio_device_id id_table[] = {
77 { VIRTIO_ID_BALLOON, VIRTIO_DEV_ANY_ID },
78 { 0 },
79};
80
Hollis Blanchard1b4aa2f2008-11-13 15:48:33 -060081static u32 page_to_balloon_pfn(struct page *page)
82{
83 unsigned long pfn = page_to_pfn(page);
84
85 BUILD_BUG_ON(PAGE_SHIFT < VIRTIO_BALLOON_PFN_SHIFT);
86 /* Convert pfn from Linux page size to balloon page size. */
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030087 return pfn * VIRTIO_BALLOON_PAGES_PER_PAGE;
88}
89
90static struct page *balloon_pfn_to_page(u32 pfn)
91{
92 BUG_ON(pfn % VIRTIO_BALLOON_PAGES_PER_PAGE);
93 return pfn_to_page(pfn / VIRTIO_BALLOON_PAGES_PER_PAGE);
Hollis Blanchard1b4aa2f2008-11-13 15:48:33 -060094}
95
Rusty Russell6b35e402008-02-04 23:50:12 -050096static void balloon_ack(struct virtqueue *vq)
97{
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +030098 struct virtio_balloon *vb = vq->vdev->priv;
Rusty Russell6b35e402008-02-04 23:50:12 -050099
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300100 wake_up(&vb->acked);
Rusty Russell6b35e402008-02-04 23:50:12 -0500101}
102
103static void tell_host(struct virtio_balloon *vb, struct virtqueue *vq)
104{
105 struct scatterlist sg;
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300106 unsigned int len;
Rusty Russell6b35e402008-02-04 23:50:12 -0500107
108 sg_init_one(&sg, vb->pfns, sizeof(vb->pfns[0]) * vb->num_pfns);
109
Rusty Russell6b35e402008-02-04 23:50:12 -0500110 /* We should always be able to add one buffer to an empty queue. */
Rusty Russell92549ab2013-03-20 15:44:30 +1030111 if (virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL) < 0)
Rusty Russell6b35e402008-02-04 23:50:12 -0500112 BUG();
Michael S. Tsirkin946cfe02010-04-12 16:18:28 +0300113 virtqueue_kick(vq);
Rusty Russell6b35e402008-02-04 23:50:12 -0500114
115 /* When host has read buffer, this completes via balloon_ack */
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300116 wait_event(vb->acked, virtqueue_get_buf(vq, &len));
Rusty Russell6b35e402008-02-04 23:50:12 -0500117}
118
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300119static void set_page_pfns(u32 pfns[], struct page *page)
120{
121 unsigned int i;
122
123 /* Set balloon pfns pointing at this page.
124 * Note that the first pfn points at start of the page. */
125 for (i = 0; i < VIRTIO_BALLOON_PAGES_PER_PAGE; i++)
126 pfns[i] = page_to_balloon_pfn(page) + i;
127}
128
Rusty Russell6b35e402008-02-04 23:50:12 -0500129static void fill_balloon(struct virtio_balloon *vb, size_t num)
130{
Rafael Aquinie2250422012-12-11 16:02:45 -0800131 struct balloon_dev_info *vb_dev_info = vb->vb_dev_info;
132
Rusty Russell6b35e402008-02-04 23:50:12 -0500133 /* We can only do one array worth at a time. */
134 num = min(num, ARRAY_SIZE(vb->pfns));
135
Rafael Aquinie2250422012-12-11 16:02:45 -0800136 mutex_lock(&vb->balloon_lock);
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300137 for (vb->num_pfns = 0; vb->num_pfns < num;
138 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) {
Rafael Aquinie2250422012-12-11 16:02:45 -0800139 struct page *page = balloon_page_enqueue(vb_dev_info);
140
Rusty Russell6b35e402008-02-04 23:50:12 -0500141 if (!page) {
Joe Perches800ba5e2012-10-31 09:27:22 +1030142 dev_info_ratelimited(&vb->vdev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800143 "Out of puff! Can't get %u pages\n",
144 VIRTIO_BALLOON_PAGES_PER_PAGE);
Rusty Russell6b35e402008-02-04 23:50:12 -0500145 /* Sleep for at least 1/5 of a second before retry. */
146 msleep(200);
147 break;
148 }
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300149 set_page_pfns(vb->pfns + vb->num_pfns, page);
150 vb->num_pages += VIRTIO_BALLOON_PAGES_PER_PAGE;
Rusty Russell6b35e402008-02-04 23:50:12 -0500151 totalram_pages--;
Rusty Russell6b35e402008-02-04 23:50:12 -0500152 }
153
Rafael Aquinie2250422012-12-11 16:02:45 -0800154 /* Did we get any? */
155 if (vb->num_pfns != 0)
156 tell_host(vb, vb->inflate_vq);
157 mutex_unlock(&vb->balloon_lock);
Rusty Russell6b35e402008-02-04 23:50:12 -0500158}
159
160static void release_pages_by_pfn(const u32 pfns[], unsigned int num)
161{
162 unsigned int i;
163
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300164 /* Find pfns pointing at start of each page, get pages and free them. */
165 for (i = 0; i < num; i += VIRTIO_BALLOON_PAGES_PER_PAGE) {
Rafael Aquinie2250422012-12-11 16:02:45 -0800166 balloon_page_free(balloon_pfn_to_page(pfns[i]));
Rusty Russell6b35e402008-02-04 23:50:12 -0500167 totalram_pages++;
168 }
169}
170
171static void leak_balloon(struct virtio_balloon *vb, size_t num)
172{
173 struct page *page;
Rafael Aquinie2250422012-12-11 16:02:45 -0800174 struct balloon_dev_info *vb_dev_info = vb->vb_dev_info;
Rusty Russell6b35e402008-02-04 23:50:12 -0500175
176 /* We can only do one array worth at a time. */
177 num = min(num, ARRAY_SIZE(vb->pfns));
178
Rafael Aquinie2250422012-12-11 16:02:45 -0800179 mutex_lock(&vb->balloon_lock);
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300180 for (vb->num_pfns = 0; vb->num_pfns < num;
181 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) {
Rafael Aquinie2250422012-12-11 16:02:45 -0800182 page = balloon_page_dequeue(vb_dev_info);
183 if (!page)
184 break;
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300185 set_page_pfns(vb->pfns + vb->num_pfns, page);
186 vb->num_pages -= VIRTIO_BALLOON_PAGES_PER_PAGE;
Rusty Russell6b35e402008-02-04 23:50:12 -0500187 }
188
Dave Hansenbf50e692011-04-07 10:43:25 -0700189 /*
190 * Note that if
191 * virtio_has_feature(vdev, VIRTIO_BALLOON_F_MUST_TELL_HOST);
192 * is true, we *have* to do it in this order
193 */
Luiz Capitulinoebfc0492013-07-02 15:35:13 +0930194 if (vb->num_pfns != 0)
195 tell_host(vb, vb->deflate_vq);
Rafael Aquinie2250422012-12-11 16:02:45 -0800196 mutex_unlock(&vb->balloon_lock);
Dave Hansenbf50e692011-04-07 10:43:25 -0700197 release_pages_by_pfn(vb->pfns, vb->num_pfns);
Rusty Russell6b35e402008-02-04 23:50:12 -0500198}
199
Adam Litke9564e132009-11-30 10:14:15 -0600200static inline void update_stat(struct virtio_balloon *vb, int idx,
201 u16 tag, u64 val)
202{
203 BUG_ON(idx >= VIRTIO_BALLOON_S_NR);
204 vb->stats[idx].tag = tag;
205 vb->stats[idx].val = val;
206}
207
208#define pages_to_bytes(x) ((u64)(x) << PAGE_SHIFT)
209
210static void update_balloon_stats(struct virtio_balloon *vb)
211{
212 unsigned long events[NR_VM_EVENT_ITEMS];
213 struct sysinfo i;
214 int idx = 0;
215
216 all_vm_events(events);
217 si_meminfo(&i);
218
219 update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_IN,
220 pages_to_bytes(events[PSWPIN]));
221 update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_OUT,
222 pages_to_bytes(events[PSWPOUT]));
223 update_stat(vb, idx++, VIRTIO_BALLOON_S_MAJFLT, events[PGMAJFAULT]);
224 update_stat(vb, idx++, VIRTIO_BALLOON_S_MINFLT, events[PGFAULT]);
225 update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMFREE,
226 pages_to_bytes(i.freeram));
227 update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMTOT,
228 pages_to_bytes(i.totalram));
229}
230
231/*
232 * While most virtqueues communicate guest-initiated requests to the hypervisor,
233 * the stats queue operates in reverse. The driver initializes the virtqueue
234 * with a single buffer. From that point forward, all conversations consist of
235 * a hypervisor request (a call to this function) which directs us to refill
Adam Litke1f34c712009-12-10 16:35:15 -0600236 * the virtqueue with a fresh stats buffer. Since stats collection can sleep,
237 * we notify our kthread which does the actual work via stats_handle_request().
Adam Litke9564e132009-11-30 10:14:15 -0600238 */
Adam Litke1f34c712009-12-10 16:35:15 -0600239static void stats_request(struct virtqueue *vq)
Adam Litke9564e132009-11-30 10:14:15 -0600240{
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300241 struct virtio_balloon *vb = vq->vdev->priv;
Adam Litke9564e132009-11-30 10:14:15 -0600242
Adam Litke1f34c712009-12-10 16:35:15 -0600243 vb->need_stats_update = 1;
244 wake_up(&vb->config_change);
245}
Adam Litke9564e132009-11-30 10:14:15 -0600246
Adam Litke1f34c712009-12-10 16:35:15 -0600247static void stats_handle_request(struct virtio_balloon *vb)
248{
249 struct virtqueue *vq;
250 struct scatterlist sg;
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300251 unsigned int len;
Adam Litke1f34c712009-12-10 16:35:15 -0600252
253 vb->need_stats_update = 0;
Adam Litke9564e132009-11-30 10:14:15 -0600254 update_balloon_stats(vb);
255
Adam Litke1f34c712009-12-10 16:35:15 -0600256 vq = vb->stats_vq;
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300257 if (!virtqueue_get_buf(vq, &len))
258 return;
Adam Litke9564e132009-11-30 10:14:15 -0600259 sg_init_one(&sg, vb->stats, sizeof(vb->stats));
Rusty Russell92549ab2013-03-20 15:44:30 +1030260 if (virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL) < 0)
Adam Litke9564e132009-11-30 10:14:15 -0600261 BUG();
Michael S. Tsirkin946cfe02010-04-12 16:18:28 +0300262 virtqueue_kick(vq);
Adam Litke9564e132009-11-30 10:14:15 -0600263}
264
Rusty Russell6b35e402008-02-04 23:50:12 -0500265static void virtballoon_changed(struct virtio_device *vdev)
266{
267 struct virtio_balloon *vb = vdev->priv;
268
269 wake_up(&vb->config_change);
270}
271
Rusty Russellbdc16812008-03-17 22:58:15 -0500272static inline s64 towards_target(struct virtio_balloon *vb)
Rusty Russell6b35e402008-02-04 23:50:12 -0500273{
David Gibson1a872282012-04-12 15:36:34 +1000274 __le32 v;
275 s64 target;
276
Rusty Russell72e61eb2008-05-02 21:50:49 -0500277 vb->vdev->config->get(vb->vdev,
278 offsetof(struct virtio_balloon_config, num_pages),
279 &v, sizeof(v));
David Gibson1a872282012-04-12 15:36:34 +1000280 target = le32_to_cpu(v);
281 return target - vb->num_pages;
Rusty Russell6b35e402008-02-04 23:50:12 -0500282}
283
284static void update_balloon_size(struct virtio_balloon *vb)
285{
286 __le32 actual = cpu_to_le32(vb->num_pages);
287
288 vb->vdev->config->set(vb->vdev,
289 offsetof(struct virtio_balloon_config, actual),
290 &actual, sizeof(actual));
291}
292
293static int balloon(void *_vballoon)
294{
295 struct virtio_balloon *vb = _vballoon;
296
297 set_freezable();
298 while (!kthread_should_stop()) {
Rusty Russellbdc16812008-03-17 22:58:15 -0500299 s64 diff;
Rusty Russell6b35e402008-02-04 23:50:12 -0500300
301 try_to_freeze();
302 wait_event_interruptible(vb->config_change,
303 (diff = towards_target(vb)) != 0
Adam Litke1f34c712009-12-10 16:35:15 -0600304 || vb->need_stats_update
Marcelo Tosatti84a139a2009-04-16 21:14:04 -0300305 || kthread_should_stop()
306 || freezing(current));
Adam Litke1f34c712009-12-10 16:35:15 -0600307 if (vb->need_stats_update)
308 stats_handle_request(vb);
Rusty Russell6b35e402008-02-04 23:50:12 -0500309 if (diff > 0)
310 fill_balloon(vb, diff);
311 else if (diff < 0)
312 leak_balloon(vb, -diff);
313 update_balloon_size(vb);
Rusty Russell16440b52014-03-13 11:23:38 +1030314
315 /*
316 * For large balloon changes, we could spend a lot of time
317 * and always have work to do. Be nice if preempt disabled.
318 */
319 cond_resched();
Rusty Russell6b35e402008-02-04 23:50:12 -0500320 }
321 return 0;
322}
323
Amit Shahbe91c332011-12-22 16:58:34 +0530324static int init_vqs(struct virtio_balloon *vb)
Rusty Russell6b35e402008-02-04 23:50:12 -0500325{
Adam Litke9564e132009-11-30 10:14:15 -0600326 struct virtqueue *vqs[3];
Adam Litke1f34c712009-12-10 16:35:15 -0600327 vq_callback_t *callbacks[] = { balloon_ack, balloon_ack, stats_request };
Adam Litke9564e132009-11-30 10:14:15 -0600328 const char *names[] = { "inflate", "deflate", "stats" };
329 int err, nvqs;
Rusty Russell6b35e402008-02-04 23:50:12 -0500330
Amit Shahbe91c332011-12-22 16:58:34 +0530331 /*
332 * We expect two virtqueues: inflate and deflate, and
333 * optionally stat.
334 */
Adam Litke9564e132009-11-30 10:14:15 -0600335 nvqs = virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ) ? 3 : 2;
Amit Shahbe91c332011-12-22 16:58:34 +0530336 err = vb->vdev->config->find_vqs(vb->vdev, nvqs, vqs, callbacks, names);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600337 if (err)
Amit Shahbe91c332011-12-22 16:58:34 +0530338 return err;
Rusty Russell6b35e402008-02-04 23:50:12 -0500339
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600340 vb->inflate_vq = vqs[0];
341 vb->deflate_vq = vqs[1];
Adam Litke9564e132009-11-30 10:14:15 -0600342 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ)) {
343 struct scatterlist sg;
344 vb->stats_vq = vqs[2];
345
346 /*
347 * Prime this virtqueue with one buffer so the hypervisor can
348 * use it to signal us later.
349 */
350 sg_init_one(&sg, vb->stats, sizeof vb->stats);
Rusty Russell92549ab2013-03-20 15:44:30 +1030351 if (virtqueue_add_outbuf(vb->stats_vq, &sg, 1, vb, GFP_KERNEL)
Rusty Russellf96fde42012-01-12 15:44:42 +1030352 < 0)
Adam Litke9564e132009-11-30 10:14:15 -0600353 BUG();
Michael S. Tsirkin946cfe02010-04-12 16:18:28 +0300354 virtqueue_kick(vb->stats_vq);
Adam Litke9564e132009-11-30 10:14:15 -0600355 }
Amit Shahbe91c332011-12-22 16:58:34 +0530356 return 0;
357}
358
Rafael Aquinie2250422012-12-11 16:02:45 -0800359static const struct address_space_operations virtio_balloon_aops;
360#ifdef CONFIG_BALLOON_COMPACTION
361/*
362 * virtballoon_migratepage - perform the balloon page migration on behalf of
363 * a compation thread. (called under page lock)
364 * @mapping: the page->mapping which will be assigned to the new migrated page.
365 * @newpage: page that will replace the isolated page after migration finishes.
366 * @page : the isolated (old) page that is about to be migrated to newpage.
367 * @mode : compaction mode -- not used for balloon page migration.
368 *
369 * After a ballooned page gets isolated by compaction procedures, this is the
370 * function that performs the page migration on behalf of a compaction thread
371 * The page migration for virtio balloon is done in a simple swap fashion which
372 * follows these two macro steps:
373 * 1) insert newpage into vb->pages list and update the host about it;
374 * 2) update the host about the old page removed from vb->pages list;
375 *
376 * This function preforms the balloon page migration task.
377 * Called through balloon_mapping->a_ops->migratepage
378 */
379int virtballoon_migratepage(struct address_space *mapping,
380 struct page *newpage, struct page *page, enum migrate_mode mode)
381{
382 struct balloon_dev_info *vb_dev_info = balloon_page_device(page);
383 struct virtio_balloon *vb;
384 unsigned long flags;
385
386 BUG_ON(!vb_dev_info);
387
388 vb = vb_dev_info->balloon_device;
389
390 /*
391 * In order to avoid lock contention while migrating pages concurrently
392 * to leak_balloon() or fill_balloon() we just give up the balloon_lock
393 * this turn, as it is easier to retry the page migration later.
394 * This also prevents fill_balloon() getting stuck into a mutex
395 * recursion in the case it ends up triggering memory compaction
396 * while it is attempting to inflate the ballon.
397 */
398 if (!mutex_trylock(&vb->balloon_lock))
399 return -EAGAIN;
400
401 /* balloon's page migration 1st step -- inflate "newpage" */
402 spin_lock_irqsave(&vb_dev_info->pages_lock, flags);
403 balloon_page_insert(newpage, mapping, &vb_dev_info->pages);
404 vb_dev_info->isolated_pages--;
405 spin_unlock_irqrestore(&vb_dev_info->pages_lock, flags);
406 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE;
407 set_page_pfns(vb->pfns, newpage);
408 tell_host(vb, vb->inflate_vq);
409
410 /*
411 * balloon's page migration 2nd step -- deflate "page"
412 *
413 * It's safe to delete page->lru here because this page is at
414 * an isolated migration list, and this step is expected to happen here
415 */
416 balloon_page_delete(page);
417 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE;
418 set_page_pfns(vb->pfns, page);
419 tell_host(vb, vb->deflate_vq);
420
421 mutex_unlock(&vb->balloon_lock);
422
423 return MIGRATEPAGE_BALLOON_SUCCESS;
424}
425
426/* define the balloon_mapping->a_ops callback to allow balloon page migration */
427static const struct address_space_operations virtio_balloon_aops = {
428 .migratepage = virtballoon_migratepage,
429};
430#endif /* CONFIG_BALLOON_COMPACTION */
431
Amit Shahbe91c332011-12-22 16:58:34 +0530432static int virtballoon_probe(struct virtio_device *vdev)
433{
434 struct virtio_balloon *vb;
Rafael Aquinie2250422012-12-11 16:02:45 -0800435 struct address_space *vb_mapping;
436 struct balloon_dev_info *vb_devinfo;
Amit Shahbe91c332011-12-22 16:58:34 +0530437 int err;
438
439 vdev->priv = vb = kmalloc(sizeof(*vb), GFP_KERNEL);
440 if (!vb) {
441 err = -ENOMEM;
442 goto out;
443 }
444
Amit Shahbe91c332011-12-22 16:58:34 +0530445 vb->num_pages = 0;
Rafael Aquinie2250422012-12-11 16:02:45 -0800446 mutex_init(&vb->balloon_lock);
Amit Shahbe91c332011-12-22 16:58:34 +0530447 init_waitqueue_head(&vb->config_change);
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300448 init_waitqueue_head(&vb->acked);
Amit Shahbe91c332011-12-22 16:58:34 +0530449 vb->vdev = vdev;
450 vb->need_stats_update = 0;
451
Rafael Aquinie2250422012-12-11 16:02:45 -0800452 vb_devinfo = balloon_devinfo_alloc(vb);
453 if (IS_ERR(vb_devinfo)) {
454 err = PTR_ERR(vb_devinfo);
455 goto out_free_vb;
456 }
457
458 vb_mapping = balloon_mapping_alloc(vb_devinfo,
459 (balloon_compaction_check()) ?
460 &virtio_balloon_aops : NULL);
461 if (IS_ERR(vb_mapping)) {
462 /*
463 * IS_ERR(vb_mapping) && PTR_ERR(vb_mapping) == -EOPNOTSUPP
464 * This means !CONFIG_BALLOON_COMPACTION, otherwise we get off.
465 */
466 err = PTR_ERR(vb_mapping);
467 if (err != -EOPNOTSUPP)
468 goto out_free_vb_devinfo;
469 }
470
471 vb->vb_dev_info = vb_devinfo;
472
Amit Shahbe91c332011-12-22 16:58:34 +0530473 err = init_vqs(vb);
474 if (err)
Rafael Aquinie2250422012-12-11 16:02:45 -0800475 goto out_free_vb_mapping;
Rusty Russell6b35e402008-02-04 23:50:12 -0500476
477 vb->thread = kthread_run(balloon, vb, "vballoon");
478 if (IS_ERR(vb->thread)) {
479 err = PTR_ERR(vb->thread);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600480 goto out_del_vqs;
Rusty Russell6b35e402008-02-04 23:50:12 -0500481 }
482
Rusty Russell6b35e402008-02-04 23:50:12 -0500483 return 0;
484
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600485out_del_vqs:
486 vdev->config->del_vqs(vdev);
Rafael Aquinie2250422012-12-11 16:02:45 -0800487out_free_vb_mapping:
488 balloon_mapping_free(vb_mapping);
489out_free_vb_devinfo:
490 balloon_devinfo_free(vb_devinfo);
Rusty Russell6b35e402008-02-04 23:50:12 -0500491out_free_vb:
492 kfree(vb);
493out:
494 return err;
495}
496
Amit Shahc877bab2012-04-27 00:45:57 +0530497static void remove_common(struct virtio_balloon *vb)
Rusty Russell6b35e402008-02-04 23:50:12 -0500498{
Rusty Russell6b35e402008-02-04 23:50:12 -0500499 /* There might be pages left in the balloon: free them. */
500 while (vb->num_pages)
501 leak_balloon(vb, vb->num_pages);
Amit Shahb8ae0eb2012-04-27 00:45:56 +0530502 update_balloon_size(vb);
Rusty Russell6b35e402008-02-04 23:50:12 -0500503
504 /* Now we reset the device so we can clean up the queues. */
Amit Shahc877bab2012-04-27 00:45:57 +0530505 vb->vdev->config->reset(vb->vdev);
Rusty Russell6b35e402008-02-04 23:50:12 -0500506
Amit Shahc877bab2012-04-27 00:45:57 +0530507 vb->vdev->config->del_vqs(vb->vdev);
508}
509
Greg Kroah-Hartman8590dbc2012-12-21 13:05:30 -0800510static void virtballoon_remove(struct virtio_device *vdev)
Amit Shahc877bab2012-04-27 00:45:57 +0530511{
512 struct virtio_balloon *vb = vdev->priv;
513
514 kthread_stop(vb->thread);
515 remove_common(vb);
Rafael Aquinie2250422012-12-11 16:02:45 -0800516 balloon_mapping_free(vb->vb_dev_info->mapping);
517 balloon_devinfo_free(vb->vb_dev_info);
Rusty Russell6b35e402008-02-04 23:50:12 -0500518 kfree(vb);
519}
520
Amit Shahe5629662011-12-22 16:58:35 +0530521#ifdef CONFIG_PM
522static int virtballoon_freeze(struct virtio_device *vdev)
523{
Amit Shah4eb05d52012-02-29 17:42:51 +0530524 struct virtio_balloon *vb = vdev->priv;
525
Amit Shahe5629662011-12-22 16:58:35 +0530526 /*
527 * The kthread is already frozen by the PM core before this
528 * function is called.
529 */
530
Amit Shahc877bab2012-04-27 00:45:57 +0530531 remove_common(vb);
Amit Shahe5629662011-12-22 16:58:35 +0530532 return 0;
533}
534
Amit Shahc45b4162012-04-27 00:45:55 +0530535static int virtballoon_restore(struct virtio_device *vdev)
Amit Shah4eb05d52012-02-29 17:42:51 +0530536{
537 struct virtio_balloon *vb = vdev->priv;
538 int ret;
539
540 ret = init_vqs(vdev->priv);
541 if (ret)
542 return ret;
543
544 fill_balloon(vb, towards_target(vb));
545 update_balloon_size(vb);
546 return 0;
547}
Amit Shahe5629662011-12-22 16:58:35 +0530548#endif
549
Adam Litke9564e132009-11-30 10:14:15 -0600550static unsigned int features[] = {
551 VIRTIO_BALLOON_F_MUST_TELL_HOST,
552 VIRTIO_BALLOON_F_STATS_VQ,
553};
Rusty Russellc45a6812008-05-02 21:50:50 -0500554
Jeff Mahoneyd817cd52010-01-15 17:01:26 -0800555static struct virtio_driver virtio_balloon_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -0500556 .feature_table = features,
557 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell6b35e402008-02-04 23:50:12 -0500558 .driver.name = KBUILD_MODNAME,
559 .driver.owner = THIS_MODULE,
560 .id_table = id_table,
561 .probe = virtballoon_probe,
Greg Kroah-Hartman8590dbc2012-12-21 13:05:30 -0800562 .remove = virtballoon_remove,
Rusty Russell6b35e402008-02-04 23:50:12 -0500563 .config_changed = virtballoon_changed,
Amit Shahe5629662011-12-22 16:58:35 +0530564#ifdef CONFIG_PM
565 .freeze = virtballoon_freeze,
566 .restore = virtballoon_restore,
Amit Shahe5629662011-12-22 16:58:35 +0530567#endif
Rusty Russell6b35e402008-02-04 23:50:12 -0500568};
569
Rusty Russellb2a17022013-02-13 16:59:28 +1030570module_virtio_driver(virtio_balloon_driver);
Rusty Russell6b35e402008-02-04 23:50:12 -0500571MODULE_DEVICE_TABLE(virtio, id_table);
572MODULE_DESCRIPTION("Virtio balloon driver");
573MODULE_LICENSE("GPL");