]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/virtio/virtio_balloon.c
virtio_balloon: Allow to resize and update the balloon stats in parallel
[mirror_ubuntu-bionic-kernel.git] / drivers / virtio / virtio_balloon.c
CommitLineData
1e214a5c
SL
1/*
2 * Virtio balloon implementation, inspired by Dor Laor and Marcelo
6b35e407
RR
3 * 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 */
1e214a5c 21
6b35e407
RR
22#include <linux/virtio.h>
23#include <linux/virtio_balloon.h>
24#include <linux/swap.h>
fad7b7b2 25#include <linux/workqueue.h>
6659a0f0 26#include <linux/delay.h>
5a0e3ad6 27#include <linux/slab.h>
b5a2c4f1 28#include <linux/module.h>
e2250429 29#include <linux/balloon_compaction.h>
5a10b7db 30#include <linux/oom.h>
3d2a3774 31#include <linux/wait.h>
6b35e407 32
3ccc9372
MT
33/*
34 * Balloon device works in 4K page units. So each page is pointed to by
35 * multiple balloon pages. All memory counters in this driver are in balloon
36 * page units.
37 */
e2250429
RA
38#define VIRTIO_BALLOON_PAGES_PER_PAGE (unsigned)(PAGE_SIZE >> VIRTIO_BALLOON_PFN_SHIFT)
39#define VIRTIO_BALLOON_ARRAY_PFNS_MAX 256
5a10b7db
RM
40#define OOM_VBALLOON_DEFAULT_PAGES 256
41#define VIRTBALLOON_OOM_NOTIFY_PRIORITY 80
42
43static int oom_pages = OOM_VBALLOON_DEFAULT_PAGES;
44module_param(oom_pages, int, S_IRUSR | S_IWUSR);
45MODULE_PARM_DESC(oom_pages, "pages to free on OOM");
3ccc9372 46
25e65e4e 47struct virtio_balloon {
6b35e407 48 struct virtio_device *vdev;
9564e138 49 struct virtqueue *inflate_vq, *deflate_vq, *stats_vq;
6b35e407 50
fad7b7b2 51 /* The balloon servicing is delegated to a freezable workqueue. */
fd0e21c3
PM
52 struct work_struct update_balloon_stats_work;
53 struct work_struct update_balloon_size_work;
6b35e407 54
fad7b7b2
PM
55 /* Prevent updating balloon when it is being canceled. */
56 spinlock_t stop_update_lock;
57 bool stop_update;
6b35e407
RR
58
59 /* Waiting for host to ack the pages we released. */
9c378abc 60 wait_queue_head_t acked;
6b35e407 61
3ccc9372 62 /* Number of balloon pages we've told the Host we're not using. */
6b35e407 63 unsigned int num_pages;
3ccc9372 64 /*
e2250429
RA
65 * The pages we've told the Host we're not using are enqueued
66 * at vb_dev_info->pages list.
3ccc9372
MT
67 * Each page on this list adds VIRTIO_BALLOON_PAGES_PER_PAGE
68 * to num_pages above.
69 */
9d1ba805 70 struct balloon_dev_info vb_dev_info;
e2250429
RA
71
72 /* Synchronize access/update to this struct virtio_balloon elements */
73 struct mutex balloon_lock;
6b35e407
RR
74
75 /* The array of pfns we tell the Host about. */
76 unsigned int num_pfns;
e2250429 77 u32 pfns[VIRTIO_BALLOON_ARRAY_PFNS_MAX];
9564e138
AL
78
79 /* Memory statistics */
80 struct virtio_balloon_stat stats[VIRTIO_BALLOON_S_NR];
5a10b7db
RM
81
82 /* To register callback in oom notifier call chain */
83 struct notifier_block nb;
6b35e407
RR
84};
85
86static struct virtio_device_id id_table[] = {
87 { VIRTIO_ID_BALLOON, VIRTIO_DEV_ANY_ID },
88 { 0 },
89};
90
1b4aa2fa
HB
91static u32 page_to_balloon_pfn(struct page *page)
92{
93 unsigned long pfn = page_to_pfn(page);
94
95 BUILD_BUG_ON(PAGE_SHIFT < VIRTIO_BALLOON_PFN_SHIFT);
96 /* Convert pfn from Linux page size to balloon page size. */
3ccc9372
MT
97 return pfn * VIRTIO_BALLOON_PAGES_PER_PAGE;
98}
99
100static struct page *balloon_pfn_to_page(u32 pfn)
101{
102 BUG_ON(pfn % VIRTIO_BALLOON_PAGES_PER_PAGE);
103 return pfn_to_page(pfn / VIRTIO_BALLOON_PAGES_PER_PAGE);
1b4aa2fa
HB
104}
105
6b35e407
RR
106static void balloon_ack(struct virtqueue *vq)
107{
9c378abc 108 struct virtio_balloon *vb = vq->vdev->priv;
6b35e407 109
9c378abc 110 wake_up(&vb->acked);
6b35e407
RR
111}
112
113static void tell_host(struct virtio_balloon *vb, struct virtqueue *vq)
114{
115 struct scatterlist sg;
9c378abc 116 unsigned int len;
6b35e407
RR
117
118 sg_init_one(&sg, vb->pfns, sizeof(vb->pfns[0]) * vb->num_pfns);
119
6b35e407 120 /* We should always be able to add one buffer to an empty queue. */
4951cc90 121 virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL);
946cfe0e 122 virtqueue_kick(vq);
6b35e407
RR
123
124 /* When host has read buffer, this completes via balloon_ack */
9c378abc 125 wait_event(vb->acked, virtqueue_get_buf(vq, &len));
fd0e21c3 126
6b35e407
RR
127}
128
3ccc9372
MT
129static void set_page_pfns(u32 pfns[], struct page *page)
130{
131 unsigned int i;
132
133 /* Set balloon pfns pointing at this page.
134 * Note that the first pfn points at start of the page. */
135 for (i = 0; i < VIRTIO_BALLOON_PAGES_PER_PAGE; i++)
136 pfns[i] = page_to_balloon_pfn(page) + i;
137}
138
fad7b7b2 139static unsigned fill_balloon(struct virtio_balloon *vb, size_t num)
6b35e407 140{
9d1ba805 141 struct balloon_dev_info *vb_dev_info = &vb->vb_dev_info;
fad7b7b2 142 unsigned num_allocated_pages;
e2250429 143
6b35e407
RR
144 /* We can only do one array worth at a time. */
145 num = min(num, ARRAY_SIZE(vb->pfns));
146
e2250429 147 mutex_lock(&vb->balloon_lock);
3ccc9372
MT
148 for (vb->num_pfns = 0; vb->num_pfns < num;
149 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) {
e2250429
RA
150 struct page *page = balloon_page_enqueue(vb_dev_info);
151
6b35e407 152 if (!page) {
800ba5ea 153 dev_info_ratelimited(&vb->vdev->dev,
b7dfde95
LT
154 "Out of puff! Can't get %u pages\n",
155 VIRTIO_BALLOON_PAGES_PER_PAGE);
6b35e407
RR
156 /* Sleep for at least 1/5 of a second before retry. */
157 msleep(200);
158 break;
159 }
3ccc9372
MT
160 set_page_pfns(vb->pfns + vb->num_pfns, page);
161 vb->num_pages += VIRTIO_BALLOON_PAGES_PER_PAGE;
997e1208
DL
162 if (!virtio_has_feature(vb->vdev,
163 VIRTIO_BALLOON_F_DEFLATE_ON_OOM))
164 adjust_managed_page_count(page, -1);
6b35e407
RR
165 }
166
fad7b7b2 167 num_allocated_pages = vb->num_pfns;
e2250429
RA
168 /* Did we get any? */
169 if (vb->num_pfns != 0)
170 tell_host(vb, vb->inflate_vq);
171 mutex_unlock(&vb->balloon_lock);
fad7b7b2
PM
172
173 return num_allocated_pages;
6b35e407
RR
174}
175
b4d34037 176static void release_pages_balloon(struct virtio_balloon *vb)
6b35e407
RR
177{
178 unsigned int i;
179
3ccc9372 180 /* Find pfns pointing at start of each page, get pages and free them. */
b4d34037
DL
181 for (i = 0; i < vb->num_pfns; i += VIRTIO_BALLOON_PAGES_PER_PAGE) {
182 struct page *page = balloon_pfn_to_page(vb->pfns[i]);
997e1208
DL
183 if (!virtio_has_feature(vb->vdev,
184 VIRTIO_BALLOON_F_DEFLATE_ON_OOM))
185 adjust_managed_page_count(page, 1);
d6d86c0a 186 put_page(page); /* balloon reference */
6b35e407
RR
187 }
188}
189
1fd9c672 190static unsigned leak_balloon(struct virtio_balloon *vb, size_t num)
6b35e407 191{
1fd9c672 192 unsigned num_freed_pages;
6b35e407 193 struct page *page;
9d1ba805 194 struct balloon_dev_info *vb_dev_info = &vb->vb_dev_info;
6b35e407
RR
195
196 /* We can only do one array worth at a time. */
197 num = min(num, ARRAY_SIZE(vb->pfns));
198
e2250429 199 mutex_lock(&vb->balloon_lock);
3ccc9372
MT
200 for (vb->num_pfns = 0; vb->num_pfns < num;
201 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) {
e2250429
RA
202 page = balloon_page_dequeue(vb_dev_info);
203 if (!page)
204 break;
3ccc9372
MT
205 set_page_pfns(vb->pfns + vb->num_pfns, page);
206 vb->num_pages -= VIRTIO_BALLOON_PAGES_PER_PAGE;
6b35e407
RR
207 }
208
1fd9c672 209 num_freed_pages = vb->num_pfns;
bf50e69f
DH
210 /*
211 * Note that if
212 * virtio_has_feature(vdev, VIRTIO_BALLOON_F_MUST_TELL_HOST);
213 * is true, we *have* to do it in this order
214 */
8c6bab4f
LC
215 if (vb->num_pfns != 0)
216 tell_host(vb, vb->deflate_vq);
b4d34037 217 release_pages_balloon(vb);
f68b992b 218 mutex_unlock(&vb->balloon_lock);
1fd9c672 219 return num_freed_pages;
6b35e407
RR
220}
221
9564e138
AL
222static inline void update_stat(struct virtio_balloon *vb, int idx,
223 u16 tag, u64 val)
224{
225 BUG_ON(idx >= VIRTIO_BALLOON_S_NR);
df81b29c
MT
226 vb->stats[idx].tag = cpu_to_virtio16(vb->vdev, tag);
227 vb->stats[idx].val = cpu_to_virtio64(vb->vdev, val);
9564e138
AL
228}
229
230#define pages_to_bytes(x) ((u64)(x) << PAGE_SHIFT)
231
232static void update_balloon_stats(struct virtio_balloon *vb)
233{
234 unsigned long events[NR_VM_EVENT_ITEMS];
235 struct sysinfo i;
236 int idx = 0;
237
238 all_vm_events(events);
239 si_meminfo(&i);
240
241 update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_IN,
242 pages_to_bytes(events[PSWPIN]));
243 update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_OUT,
244 pages_to_bytes(events[PSWPOUT]));
245 update_stat(vb, idx++, VIRTIO_BALLOON_S_MAJFLT, events[PGMAJFAULT]);
246 update_stat(vb, idx++, VIRTIO_BALLOON_S_MINFLT, events[PGFAULT]);
247 update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMFREE,
248 pages_to_bytes(i.freeram));
249 update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMTOT,
250 pages_to_bytes(i.totalram));
251}
252
253/*
254 * While most virtqueues communicate guest-initiated requests to the hypervisor,
255 * the stats queue operates in reverse. The driver initializes the virtqueue
256 * with a single buffer. From that point forward, all conversations consist of
257 * a hypervisor request (a call to this function) which directs us to refill
1f34c71a 258 * the virtqueue with a fresh stats buffer. Since stats collection can sleep,
fad7b7b2
PM
259 * we delegate the job to a freezable workqueue that will do the actual work via
260 * stats_handle_request().
9564e138 261 */
1f34c71a 262static void stats_request(struct virtqueue *vq)
9564e138 263{
9c378abc 264 struct virtio_balloon *vb = vq->vdev->priv;
9564e138 265
fad7b7b2
PM
266 spin_lock(&vb->stop_update_lock);
267 if (!vb->stop_update)
fd0e21c3 268 queue_work(system_freezable_wq, &vb->update_balloon_stats_work);
fad7b7b2 269 spin_unlock(&vb->stop_update_lock);
1f34c71a
AL
270}
271
272static void stats_handle_request(struct virtio_balloon *vb)
273{
274 struct virtqueue *vq;
275 struct scatterlist sg;
9c378abc 276 unsigned int len;
9564e138
AL
277
278 update_balloon_stats(vb);
279
1f34c71a 280 vq = vb->stats_vq;
9c378abc
MT
281 if (!virtqueue_get_buf(vq, &len))
282 return;
9564e138 283 sg_init_one(&sg, vb->stats, sizeof(vb->stats));
4951cc90 284 virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL);
946cfe0e 285 virtqueue_kick(vq);
9564e138
AL
286}
287
6b35e407
RR
288static void virtballoon_changed(struct virtio_device *vdev)
289{
290 struct virtio_balloon *vb = vdev->priv;
fad7b7b2 291 unsigned long flags;
6b35e407 292
fad7b7b2
PM
293 spin_lock_irqsave(&vb->stop_update_lock, flags);
294 if (!vb->stop_update)
fd0e21c3 295 queue_work(system_freezable_wq, &vb->update_balloon_size_work);
fad7b7b2 296 spin_unlock_irqrestore(&vb->stop_update_lock, flags);
6b35e407
RR
297}
298
bdc1681c 299static inline s64 towards_target(struct virtio_balloon *vb)
6b35e407 300{
1a87228f 301 s64 target;
df81b29c 302 u32 num_pages;
1a87228f 303
df81b29c
MT
304 virtio_cread(vb->vdev, struct virtio_balloon_config, num_pages,
305 &num_pages);
855e0c52 306
df81b29c
MT
307 /* Legacy balloon config space is LE, unlike all other devices. */
308 if (!virtio_has_feature(vb->vdev, VIRTIO_F_VERSION_1))
309 num_pages = le32_to_cpu((__force __le32)num_pages);
310
311 target = num_pages;
1a87228f 312 return target - vb->num_pages;
6b35e407
RR
313}
314
315static void update_balloon_size(struct virtio_balloon *vb)
316{
df81b29c
MT
317 u32 actual = vb->num_pages;
318
319 /* Legacy balloon config space is LE, unlike all other devices. */
320 if (!virtio_has_feature(vb->vdev, VIRTIO_F_VERSION_1))
321 actual = (__force u32)cpu_to_le32(actual);
6b35e407 322
3459f11a 323 virtio_cwrite(vb->vdev, struct virtio_balloon_config, actual,
855e0c52 324 &actual);
6b35e407
RR
325}
326
5a10b7db
RM
327/*
328 * virtballoon_oom_notify - release pages when system is under severe
329 * memory pressure (called from out_of_memory())
330 * @self : notifier block struct
331 * @dummy: not used
332 * @parm : returned - number of freed pages
333 *
334 * The balancing of memory by use of the virtio balloon should not cause
335 * the termination of processes while there are pages in the balloon.
336 * If virtio balloon manages to release some memory, it will make the
337 * system return and retry the allocation that forced the OOM killer
338 * to run.
339 */
340static int virtballoon_oom_notify(struct notifier_block *self,
341 unsigned long dummy, void *parm)
342{
343 struct virtio_balloon *vb;
344 unsigned long *freed;
345 unsigned num_freed_pages;
346
347 vb = container_of(self, struct virtio_balloon, nb);
348 if (!virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM))
349 return NOTIFY_OK;
350
351 freed = parm;
352 num_freed_pages = leak_balloon(vb, oom_pages);
353 update_balloon_size(vb);
354 *freed += num_freed_pages;
355
356 return NOTIFY_OK;
357}
358
fd0e21c3
PM
359static void update_balloon_stats_func(struct work_struct *work)
360{
361 struct virtio_balloon *vb;
362
363 vb = container_of(work, struct virtio_balloon,
364 update_balloon_stats_work);
365 stats_handle_request(vb);
366}
367
368static void update_balloon_size_func(struct work_struct *work)
6b35e407 369{
fad7b7b2
PM
370 struct virtio_balloon *vb;
371 s64 diff;
3d2a3774 372
fd0e21c3
PM
373 vb = container_of(work, struct virtio_balloon,
374 update_balloon_size_work);
fad7b7b2 375 diff = towards_target(vb);
1f74ef0f 376
fad7b7b2
PM
377 if (diff > 0)
378 diff -= fill_balloon(vb, diff);
379 else if (diff < 0)
380 diff += leak_balloon(vb, -diff);
381 update_balloon_size(vb);
382
383 if (diff)
384 queue_work(system_freezable_wq, work);
6b35e407
RR
385}
386
be91c33d 387static int init_vqs(struct virtio_balloon *vb)
6b35e407 388{
9564e138 389 struct virtqueue *vqs[3];
1f34c71a 390 vq_callback_t *callbacks[] = { balloon_ack, balloon_ack, stats_request };
f7ad26ff 391 static const char * const names[] = { "inflate", "deflate", "stats" };
9564e138 392 int err, nvqs;
6b35e407 393
be91c33d
AS
394 /*
395 * We expect two virtqueues: inflate and deflate, and
396 * optionally stat.
397 */
9564e138 398 nvqs = virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ) ? 3 : 2;
be91c33d 399 err = vb->vdev->config->find_vqs(vb->vdev, nvqs, vqs, callbacks, names);
d2a7ddda 400 if (err)
be91c33d 401 return err;
6b35e407 402
d2a7ddda
MT
403 vb->inflate_vq = vqs[0];
404 vb->deflate_vq = vqs[1];
9564e138
AL
405 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ)) {
406 struct scatterlist sg;
407 vb->stats_vq = vqs[2];
408
409 /*
410 * Prime this virtqueue with one buffer so the hypervisor can
4951cc90 411 * use it to signal us later (it can't be broken yet!).
9564e138
AL
412 */
413 sg_init_one(&sg, vb->stats, sizeof vb->stats);
92549abc 414 if (virtqueue_add_outbuf(vb->stats_vq, &sg, 1, vb, GFP_KERNEL)
f96fde41 415 < 0)
9564e138 416 BUG();
946cfe0e 417 virtqueue_kick(vb->stats_vq);
9564e138 418 }
be91c33d
AS
419 return 0;
420}
421
e2250429
RA
422#ifdef CONFIG_BALLOON_COMPACTION
423/*
424 * virtballoon_migratepage - perform the balloon page migration on behalf of
425 * a compation thread. (called under page lock)
9d1ba805 426 * @vb_dev_info: the balloon device
e2250429
RA
427 * @newpage: page that will replace the isolated page after migration finishes.
428 * @page : the isolated (old) page that is about to be migrated to newpage.
429 * @mode : compaction mode -- not used for balloon page migration.
430 *
431 * After a ballooned page gets isolated by compaction procedures, this is the
432 * function that performs the page migration on behalf of a compaction thread
433 * The page migration for virtio balloon is done in a simple swap fashion which
434 * follows these two macro steps:
435 * 1) insert newpage into vb->pages list and update the host about it;
436 * 2) update the host about the old page removed from vb->pages list;
437 *
438 * This function preforms the balloon page migration task.
439 * Called through balloon_mapping->a_ops->migratepage
440 */
9d1ba805 441static int virtballoon_migratepage(struct balloon_dev_info *vb_dev_info,
e2250429
RA
442 struct page *newpage, struct page *page, enum migrate_mode mode)
443{
9d1ba805
KK
444 struct virtio_balloon *vb = container_of(vb_dev_info,
445 struct virtio_balloon, vb_dev_info);
e2250429
RA
446 unsigned long flags;
447
e2250429
RA
448 /*
449 * In order to avoid lock contention while migrating pages concurrently
450 * to leak_balloon() or fill_balloon() we just give up the balloon_lock
451 * this turn, as it is easier to retry the page migration later.
452 * This also prevents fill_balloon() getting stuck into a mutex
453 * recursion in the case it ends up triggering memory compaction
454 * while it is attempting to inflate the ballon.
455 */
456 if (!mutex_trylock(&vb->balloon_lock))
457 return -EAGAIN;
458
d6d86c0a
KK
459 get_page(newpage); /* balloon reference */
460
e2250429
RA
461 /* balloon's page migration 1st step -- inflate "newpage" */
462 spin_lock_irqsave(&vb_dev_info->pages_lock, flags);
9d1ba805 463 balloon_page_insert(vb_dev_info, newpage);
e2250429 464 vb_dev_info->isolated_pages--;
09316c09 465 __count_vm_event(BALLOON_MIGRATE);
e2250429
RA
466 spin_unlock_irqrestore(&vb_dev_info->pages_lock, flags);
467 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE;
468 set_page_pfns(vb->pfns, newpage);
469 tell_host(vb, vb->inflate_vq);
470
d6d86c0a 471 /* balloon's page migration 2nd step -- deflate "page" */
e2250429
RA
472 balloon_page_delete(page);
473 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE;
474 set_page_pfns(vb->pfns, page);
475 tell_host(vb, vb->deflate_vq);
476
477 mutex_unlock(&vb->balloon_lock);
478
d6d86c0a
KK
479 put_page(page); /* balloon reference */
480
481 return MIGRATEPAGE_SUCCESS;
e2250429 482}
e2250429
RA
483#endif /* CONFIG_BALLOON_COMPACTION */
484
be91c33d
AS
485static int virtballoon_probe(struct virtio_device *vdev)
486{
487 struct virtio_balloon *vb;
488 int err;
489
2d9becc1
MT
490 if (!vdev->config->get) {
491 dev_err(&vdev->dev, "%s failure: config access disabled\n",
492 __func__);
493 return -EINVAL;
494 }
495
be91c33d
AS
496 vdev->priv = vb = kmalloc(sizeof(*vb), GFP_KERNEL);
497 if (!vb) {
498 err = -ENOMEM;
499 goto out;
500 }
501
fd0e21c3
PM
502 INIT_WORK(&vb->update_balloon_stats_work, update_balloon_stats_func);
503 INIT_WORK(&vb->update_balloon_size_work, update_balloon_size_func);
fad7b7b2
PM
504 spin_lock_init(&vb->stop_update_lock);
505 vb->stop_update = false;
be91c33d 506 vb->num_pages = 0;
e2250429 507 mutex_init(&vb->balloon_lock);
9c378abc 508 init_waitqueue_head(&vb->acked);
be91c33d 509 vb->vdev = vdev;
be91c33d 510
9d1ba805
KK
511 balloon_devinfo_init(&vb->vb_dev_info);
512#ifdef CONFIG_BALLOON_COMPACTION
513 vb->vb_dev_info.migratepage = virtballoon_migratepage;
514#endif
e2250429 515
be91c33d
AS
516 err = init_vqs(vb);
517 if (err)
9d1ba805 518 goto out_free_vb;
6b35e407 519
5a10b7db
RM
520 vb->nb.notifier_call = virtballoon_oom_notify;
521 vb->nb.priority = VIRTBALLOON_OOM_NOTIFY_PRIORITY;
522 err = register_oom_notifier(&vb->nb);
523 if (err < 0)
524 goto out_oom_notify;
525
88660f7f
MT
526 virtio_device_ready(vdev);
527
6b35e407
RR
528 return 0;
529
5a10b7db 530out_oom_notify:
d2a7ddda 531 vdev->config->del_vqs(vdev);
6b35e407
RR
532out_free_vb:
533 kfree(vb);
534out:
535 return err;
536}
537
c877bab5 538static void remove_common(struct virtio_balloon *vb)
6b35e407 539{
6b35e407
RR
540 /* There might be pages left in the balloon: free them. */
541 while (vb->num_pages)
542 leak_balloon(vb, vb->num_pages);
b8ae0eb3 543 update_balloon_size(vb);
6b35e407
RR
544
545 /* Now we reset the device so we can clean up the queues. */
c877bab5 546 vb->vdev->config->reset(vb->vdev);
6b35e407 547
c877bab5
AS
548 vb->vdev->config->del_vqs(vb->vdev);
549}
550
8590dbc7 551static void virtballoon_remove(struct virtio_device *vdev)
c877bab5
AS
552{
553 struct virtio_balloon *vb = vdev->priv;
554
5a10b7db 555 unregister_oom_notifier(&vb->nb);
fad7b7b2
PM
556
557 spin_lock_irq(&vb->stop_update_lock);
558 vb->stop_update = true;
559 spin_unlock_irq(&vb->stop_update_lock);
fd0e21c3
PM
560 cancel_work_sync(&vb->update_balloon_size_work);
561 cancel_work_sync(&vb->update_balloon_stats_work);
fad7b7b2 562
c877bab5 563 remove_common(vb);
6b35e407
RR
564 kfree(vb);
565}
566
89107000 567#ifdef CONFIG_PM_SLEEP
e562966d
AS
568static int virtballoon_freeze(struct virtio_device *vdev)
569{
4eb05d56
AS
570 struct virtio_balloon *vb = vdev->priv;
571
e562966d 572 /*
fad7b7b2 573 * The workqueue is already frozen by the PM core before this
e562966d
AS
574 * function is called.
575 */
c877bab5 576 remove_common(vb);
e562966d
AS
577 return 0;
578}
579
c45b4166 580static int virtballoon_restore(struct virtio_device *vdev)
4eb05d56
AS
581{
582 struct virtio_balloon *vb = vdev->priv;
583 int ret;
584
585 ret = init_vqs(vdev->priv);
586 if (ret)
587 return ret;
588
486d2e63
MT
589 virtio_device_ready(vdev);
590
fad7b7b2
PM
591 if (towards_target(vb))
592 virtballoon_changed(vdev);
4eb05d56
AS
593 update_balloon_size(vb);
594 return 0;
595}
e562966d
AS
596#endif
597
9564e138
AL
598static unsigned int features[] = {
599 VIRTIO_BALLOON_F_MUST_TELL_HOST,
600 VIRTIO_BALLOON_F_STATS_VQ,
5a10b7db 601 VIRTIO_BALLOON_F_DEFLATE_ON_OOM,
9564e138 602};
c45a6816 603
d817cd52 604static struct virtio_driver virtio_balloon_driver = {
c45a6816
RR
605 .feature_table = features,
606 .feature_table_size = ARRAY_SIZE(features),
6b35e407
RR
607 .driver.name = KBUILD_MODNAME,
608 .driver.owner = THIS_MODULE,
609 .id_table = id_table,
610 .probe = virtballoon_probe,
8590dbc7 611 .remove = virtballoon_remove,
6b35e407 612 .config_changed = virtballoon_changed,
89107000 613#ifdef CONFIG_PM_SLEEP
e562966d
AS
614 .freeze = virtballoon_freeze,
615 .restore = virtballoon_restore,
e562966d 616#endif
6b35e407
RR
617};
618
b2a17029 619module_virtio_driver(virtio_balloon_driver);
6b35e407
RR
620MODULE_DEVICE_TABLE(virtio, id_table);
621MODULE_DESCRIPTION("Virtio balloon driver");
622MODULE_LICENSE("GPL");