blob: f4c34a2a6b8eddc6d80af064fc8ede0991f6afe3 [file] [log] [blame]
Thomas Gleixnerfd534e92019-05-23 11:14:39 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Sasha Levin1e214a52011-11-03 10:20:04 +02002/*
3 * Virtio balloon implementation, inspired by Dor Laor and Marcelo
Rusty Russell6b35e402008-02-04 23:50:12 -05004 * Tosatti's implementations.
5 *
6 * Copyright 2008 Rusty Russell IBM Corporation
Rusty Russell6b35e402008-02-04 23:50:12 -05007 */
Sasha Levin1e214a52011-11-03 10:20:04 +02008
Rusty Russell6b35e402008-02-04 23:50:12 -05009#include <linux/virtio.h>
10#include <linux/virtio_balloon.h>
11#include <linux/swap.h>
Petr Mladekfad7b7b2016-01-25 17:38:05 +010012#include <linux/workqueue.h>
Johann Felix Soden6659a0f2008-02-06 01:40:22 -080013#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Paul Gortmakerb5a2c4f2011-07-03 16:20:30 -040015#include <linux/module.h>
Rafael Aquinie2250422012-12-11 16:02:45 -080016#include <linux/balloon_compaction.h>
David Hildenbrandda103292020-04-06 20:05:22 -070017#include <linux/oom.h>
Michael S. Tsirkin3d2a3772015-03-10 11:55:08 +103018#include <linux/wait.h>
Igor Redko5057dcd2016-03-17 14:19:08 -070019#include <linux/mm.h>
Minchan Kimb1123ea62016-07-26 15:23:09 -070020#include <linux/mount.h>
Ingo Molnar50d34392017-02-05 16:03:58 +010021#include <linux/magic.h>
David Howells99558d22019-03-25 16:38:25 +000022#include <linux/pseudo_fs.h>
Alexander Duyckb0c504f2020-04-06 20:05:05 -070023#include <linux/page_reporting.h>
Rusty Russell6b35e402008-02-04 23:50:12 -050024
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +030025/*
26 * Balloon device works in 4K page units. So each page is pointed to by
27 * multiple balloon pages. All memory counters in this driver are in balloon
28 * page units.
29 */
Rafael Aquinie2250422012-12-11 16:02:45 -080030#define VIRTIO_BALLOON_PAGES_PER_PAGE (unsigned)(PAGE_SIZE >> VIRTIO_BALLOON_PFN_SHIFT)
31#define VIRTIO_BALLOON_ARRAY_PFNS_MAX 256
David Hildenbrandda103292020-04-06 20:05:22 -070032/* Maximum number of (4k) pages to deflate on OOM notifications. */
33#define VIRTIO_BALLOON_OOM_NR_PAGES 256
34#define VIRTIO_BALLOON_OOM_NOTIFY_PRIORITY 80
Raushaniya Maksudova5a10b7d2014-11-10 09:36:29 +103035
Wei Wang86a55972018-08-27 09:32:17 +080036#define VIRTIO_BALLOON_FREE_PAGE_ALLOC_FLAG (__GFP_NORETRY | __GFP_NOWARN | \
37 __GFP_NOMEMALLOC)
38/* The order of free page blocks to report to host */
Michael S. Tsirkin2a946fa2019-11-19 05:21:47 -050039#define VIRTIO_BALLOON_HINT_BLOCK_ORDER (MAX_ORDER - 1)
Wei Wang86a55972018-08-27 09:32:17 +080040/* The size of a free page block in bytes */
Michael S. Tsirkin2a946fa2019-11-19 05:21:47 -050041#define VIRTIO_BALLOON_HINT_BLOCK_BYTES \
42 (1 << (VIRTIO_BALLOON_HINT_BLOCK_ORDER + PAGE_SHIFT))
Michael S. Tsirkin63b9b802019-11-19 05:25:24 -050043#define VIRTIO_BALLOON_HINT_BLOCK_PAGES (1 << VIRTIO_BALLOON_HINT_BLOCK_ORDER)
Wei Wang86a55972018-08-27 09:32:17 +080044
Minchan Kimb1123ea62016-07-26 15:23:09 -070045#ifdef CONFIG_BALLOON_COMPACTION
46static struct vfsmount *balloon_mnt;
47#endif
48
Wei Wang86a55972018-08-27 09:32:17 +080049enum virtio_balloon_vq {
50 VIRTIO_BALLOON_VQ_INFLATE,
51 VIRTIO_BALLOON_VQ_DEFLATE,
52 VIRTIO_BALLOON_VQ_STATS,
53 VIRTIO_BALLOON_VQ_FREE_PAGE,
Alexander Duyckb0c504f2020-04-06 20:05:05 -070054 VIRTIO_BALLOON_VQ_REPORTING,
Wei Wang86a55972018-08-27 09:32:17 +080055 VIRTIO_BALLOON_VQ_MAX
56};
57
Wei Wangbf4dc0b2019-01-07 15:01:04 +080058enum virtio_balloon_config_read {
59 VIRTIO_BALLOON_CONFIG_READ_CMD_ID = 0,
60};
61
Michael S. Tsirkin25e65e42015-01-15 13:33:31 +020062struct virtio_balloon {
Rusty Russell6b35e402008-02-04 23:50:12 -050063 struct virtio_device *vdev;
Wei Wang86a55972018-08-27 09:32:17 +080064 struct virtqueue *inflate_vq, *deflate_vq, *stats_vq, *free_page_vq;
65
66 /* Balloon's own wq for cpu-intensive work items */
67 struct workqueue_struct *balloon_wq;
68 /* The free page reporting work item submitted to the balloon wq */
69 struct work_struct report_free_page_work;
Rusty Russell6b35e402008-02-04 23:50:12 -050070
Petr Mladekfad7b7b2016-01-25 17:38:05 +010071 /* The balloon servicing is delegated to a freezable workqueue. */
Petr Mladekfd0e21c2016-01-25 17:38:06 +010072 struct work_struct update_balloon_stats_work;
73 struct work_struct update_balloon_size_work;
Rusty Russell6b35e402008-02-04 23:50:12 -050074
Petr Mladekfad7b7b2016-01-25 17:38:05 +010075 /* Prevent updating balloon when it is being canceled. */
76 spinlock_t stop_update_lock;
77 bool stop_update;
Wei Wangbf4dc0b2019-01-07 15:01:04 +080078 /* Bitmap to indicate if reading the related config fields are needed */
79 unsigned long config_read_bitmap;
Rusty Russell6b35e402008-02-04 23:50:12 -050080
Wei Wang86a55972018-08-27 09:32:17 +080081 /* The list of allocated free pages, waiting to be given back to mm */
82 struct list_head free_page_list;
83 spinlock_t free_page_list_lock;
84 /* The number of free page blocks on the above list */
85 unsigned long num_free_page_blocks;
Wei Wangbf4dc0b2019-01-07 15:01:04 +080086 /*
87 * The cmd id received from host.
88 * Read it via virtio_balloon_cmd_id_received to get the latest value
89 * sent from host.
90 */
91 u32 cmd_id_received_cache;
Wei Wang86a55972018-08-27 09:32:17 +080092 /* The cmd id that is actively in use */
93 __virtio32 cmd_id_active;
94 /* Buffer to store the stop sign */
95 __virtio32 cmd_id_stop;
96
Rusty Russell6b35e402008-02-04 23:50:12 -050097 /* Waiting for host to ack the pages we released. */
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +030098 wait_queue_head_t acked;
Rusty Russell6b35e402008-02-04 23:50:12 -050099
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300100 /* Number of balloon pages we've told the Host we're not using. */
Rusty Russell6b35e402008-02-04 23:50:12 -0500101 unsigned int num_pages;
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300102 /*
Rafael Aquinie2250422012-12-11 16:02:45 -0800103 * The pages we've told the Host we're not using are enqueued
104 * at vb_dev_info->pages list.
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300105 * Each page on this list adds VIRTIO_BALLOON_PAGES_PER_PAGE
106 * to num_pages above.
107 */
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700108 struct balloon_dev_info vb_dev_info;
Rafael Aquinie2250422012-12-11 16:02:45 -0800109
110 /* Synchronize access/update to this struct virtio_balloon elements */
111 struct mutex balloon_lock;
Rusty Russell6b35e402008-02-04 23:50:12 -0500112
113 /* The array of pfns we tell the Host about. */
114 unsigned int num_pfns;
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300115 __virtio32 pfns[VIRTIO_BALLOON_ARRAY_PFNS_MAX];
Adam Litke9564e132009-11-30 10:14:15 -0600116
117 /* Memory statistics */
118 struct virtio_balloon_stat stats[VIRTIO_BALLOON_S_NR];
Raushaniya Maksudova5a10b7d2014-11-10 09:36:29 +1030119
David Hildenbrandda103292020-04-06 20:05:22 -0700120 /* Shrinker to return free pages - VIRTIO_BALLOON_F_FREE_PAGE_HINT */
Wei Wang71994622018-08-16 15:50:58 +0800121 struct shrinker shrinker;
Alexander Duyckb0c504f2020-04-06 20:05:05 -0700122
David Hildenbrandda103292020-04-06 20:05:22 -0700123 /* OOM notifier to deflate on OOM - VIRTIO_BALLOON_F_DEFLATE_ON_OOM */
124 struct notifier_block oom_nb;
125
Alexander Duyckb0c504f2020-04-06 20:05:05 -0700126 /* Free page reporting device */
127 struct virtqueue *reporting_vq;
128 struct page_reporting_dev_info pr_dev_info;
Rusty Russell6b35e402008-02-04 23:50:12 -0500129};
130
Rikard Falkebornbfec6c832020-09-11 22:35:07 +0200131static const struct virtio_device_id id_table[] = {
Rusty Russell6b35e402008-02-04 23:50:12 -0500132 { VIRTIO_ID_BALLOON, VIRTIO_DEV_ANY_ID },
133 { 0 },
134};
135
Hollis Blanchard1b4aa2f2008-11-13 15:48:33 -0600136static u32 page_to_balloon_pfn(struct page *page)
137{
138 unsigned long pfn = page_to_pfn(page);
139
140 BUILD_BUG_ON(PAGE_SHIFT < VIRTIO_BALLOON_PFN_SHIFT);
141 /* Convert pfn from Linux page size to balloon page size. */
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300142 return pfn * VIRTIO_BALLOON_PAGES_PER_PAGE;
143}
144
Rusty Russell6b35e402008-02-04 23:50:12 -0500145static void balloon_ack(struct virtqueue *vq)
146{
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300147 struct virtio_balloon *vb = vq->vdev->priv;
Rusty Russell6b35e402008-02-04 23:50:12 -0500148
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300149 wake_up(&vb->acked);
Rusty Russell6b35e402008-02-04 23:50:12 -0500150}
151
152static void tell_host(struct virtio_balloon *vb, struct virtqueue *vq)
153{
154 struct scatterlist sg;
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300155 unsigned int len;
Rusty Russell6b35e402008-02-04 23:50:12 -0500156
157 sg_init_one(&sg, vb->pfns, sizeof(vb->pfns[0]) * vb->num_pfns);
158
Rusty Russell6b35e402008-02-04 23:50:12 -0500159 /* We should always be able to add one buffer to an empty queue. */
Rusty Russell4951cc92014-03-13 11:23:40 +1030160 virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL);
Michael S. Tsirkin946cfe02010-04-12 16:18:28 +0300161 virtqueue_kick(vq);
Rusty Russell6b35e402008-02-04 23:50:12 -0500162
163 /* When host has read buffer, this completes via balloon_ack */
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300164 wait_event(vb->acked, virtqueue_get_buf(vq, &len));
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100165
Rusty Russell6b35e402008-02-04 23:50:12 -0500166}
167
Jason Yandc39cbb2020-04-09 16:50:47 +0800168static int virtballoon_free_page_report(struct page_reporting_dev_info *pr_dev_info,
Alexander Duyckb0c504f2020-04-06 20:05:05 -0700169 struct scatterlist *sg, unsigned int nents)
170{
171 struct virtio_balloon *vb =
172 container_of(pr_dev_info, struct virtio_balloon, pr_dev_info);
173 struct virtqueue *vq = vb->reporting_vq;
174 unsigned int unused, err;
175
176 /* We should always be able to add these buffers to an empty queue. */
177 err = virtqueue_add_inbuf(vq, sg, nents, vb, GFP_NOWAIT | __GFP_NOWARN);
178
179 /*
180 * In the extremely unlikely case that something has occurred and we
181 * are able to trigger an error we will simply display a warning
182 * and exit without actually processing the pages.
183 */
184 if (WARN_ON_ONCE(err))
185 return err;
186
187 virtqueue_kick(vq);
188
189 /* When host has read buffer, this completes via balloon_ack */
190 wait_event(vb->acked, virtqueue_get_buf(vq, &unused));
191
192 return 0;
193}
194
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300195static void set_page_pfns(struct virtio_balloon *vb,
196 __virtio32 pfns[], struct page *page)
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300197{
198 unsigned int i;
199
Michael S. Tsirkin6e9826e2020-02-06 02:40:58 -0500200 BUILD_BUG_ON(VIRTIO_BALLOON_PAGES_PER_PAGE > VIRTIO_BALLOON_ARRAY_PFNS_MAX);
201
Wei Wangf9aada52017-07-12 20:40:15 +0800202 /*
203 * Set balloon pfns pointing at this page.
204 * Note that the first pfn points at start of the page.
205 */
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300206 for (i = 0; i < VIRTIO_BALLOON_PAGES_PER_PAGE; i++)
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300207 pfns[i] = cpu_to_virtio32(vb->vdev,
208 page_to_balloon_pfn(page) + i);
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300209}
210
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100211static unsigned fill_balloon(struct virtio_balloon *vb, size_t num)
Rusty Russell6b35e402008-02-04 23:50:12 -0500212{
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100213 unsigned num_allocated_pages;
Michael S. Tsirkinc7cdff02017-10-13 16:11:48 +0300214 unsigned num_pfns;
215 struct page *page;
216 LIST_HEAD(pages);
Rafael Aquinie2250422012-12-11 16:02:45 -0800217
Rusty Russell6b35e402008-02-04 23:50:12 -0500218 /* We can only do one array worth at a time. */
219 num = min(num, ARRAY_SIZE(vb->pfns));
220
Michael S. Tsirkinc7cdff02017-10-13 16:11:48 +0300221 for (num_pfns = 0; num_pfns < num;
222 num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) {
223 struct page *page = balloon_page_alloc();
Rafael Aquinie2250422012-12-11 16:02:45 -0800224
Rusty Russell6b35e402008-02-04 23:50:12 -0500225 if (!page) {
Joe Perches800ba5e2012-10-31 09:27:22 +1030226 dev_info_ratelimited(&vb->vdev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800227 "Out of puff! Can't get %u pages\n",
228 VIRTIO_BALLOON_PAGES_PER_PAGE);
Rusty Russell6b35e402008-02-04 23:50:12 -0500229 /* Sleep for at least 1/5 of a second before retry. */
230 msleep(200);
231 break;
232 }
Michael S. Tsirkinc7cdff02017-10-13 16:11:48 +0300233
234 balloon_page_push(&pages, page);
235 }
236
237 mutex_lock(&vb->balloon_lock);
238
239 vb->num_pfns = 0;
240
241 while ((page = balloon_page_pop(&pages))) {
242 balloon_page_enqueue(&vb->vb_dev_info, page);
243
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300244 set_page_pfns(vb, vb->pfns + vb->num_pfns, page);
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300245 vb->num_pages += VIRTIO_BALLOON_PAGES_PER_PAGE;
Denis V. Lunev997e1202015-08-20 00:49:49 +0300246 if (!virtio_has_feature(vb->vdev,
247 VIRTIO_BALLOON_F_DEFLATE_ON_OOM))
248 adjust_managed_page_count(page, -1);
Jan Stancekd9e427f2017-12-01 10:50:28 +0100249 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE;
Rusty Russell6b35e402008-02-04 23:50:12 -0500250 }
251
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100252 num_allocated_pages = vb->num_pfns;
Rafael Aquinie2250422012-12-11 16:02:45 -0800253 /* Did we get any? */
254 if (vb->num_pfns != 0)
255 tell_host(vb, vb->inflate_vq);
256 mutex_unlock(&vb->balloon_lock);
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100257
258 return num_allocated_pages;
Rusty Russell6b35e402008-02-04 23:50:12 -0500259}
260
Liang Li195a8c42017-07-12 20:40:14 +0800261static void release_pages_balloon(struct virtio_balloon *vb,
262 struct list_head *pages)
Rusty Russell6b35e402008-02-04 23:50:12 -0500263{
Liang Li195a8c42017-07-12 20:40:14 +0800264 struct page *page, *next;
Rusty Russell6b35e402008-02-04 23:50:12 -0500265
Liang Li195a8c42017-07-12 20:40:14 +0800266 list_for_each_entry_safe(page, next, pages, lru) {
Denis V. Lunev997e1202015-08-20 00:49:49 +0300267 if (!virtio_has_feature(vb->vdev,
268 VIRTIO_BALLOON_F_DEFLATE_ON_OOM))
269 adjust_managed_page_count(page, 1);
Liang Li195a8c42017-07-12 20:40:14 +0800270 list_del(&page->lru);
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700271 put_page(page); /* balloon reference */
Rusty Russell6b35e402008-02-04 23:50:12 -0500272 }
273}
274
Raushaniya Maksudova1fd9c672014-11-10 09:35:29 +1030275static unsigned leak_balloon(struct virtio_balloon *vb, size_t num)
Rusty Russell6b35e402008-02-04 23:50:12 -0500276{
Raushaniya Maksudova1fd9c672014-11-10 09:35:29 +1030277 unsigned num_freed_pages;
Rusty Russell6b35e402008-02-04 23:50:12 -0500278 struct page *page;
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700279 struct balloon_dev_info *vb_dev_info = &vb->vb_dev_info;
Liang Li195a8c42017-07-12 20:40:14 +0800280 LIST_HEAD(pages);
Rusty Russell6b35e402008-02-04 23:50:12 -0500281
282 /* We can only do one array worth at a time. */
283 num = min(num, ARRAY_SIZE(vb->pfns));
284
Rafael Aquinie2250422012-12-11 16:02:45 -0800285 mutex_lock(&vb->balloon_lock);
Konstantin Neumoin37cf99e2016-07-11 15:28:59 +0300286 /* We can't release more pages than taken */
287 num = min(num, (size_t)vb->num_pages);
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300288 for (vb->num_pfns = 0; vb->num_pfns < num;
289 vb->num_pfns += VIRTIO_BALLOON_PAGES_PER_PAGE) {
Rafael Aquinie2250422012-12-11 16:02:45 -0800290 page = balloon_page_dequeue(vb_dev_info);
291 if (!page)
292 break;
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300293 set_page_pfns(vb, vb->pfns + vb->num_pfns, page);
Liang Li195a8c42017-07-12 20:40:14 +0800294 list_add(&page->lru, &pages);
Michael S. Tsirkin3ccc9372012-04-12 16:38:00 +0300295 vb->num_pages -= VIRTIO_BALLOON_PAGES_PER_PAGE;
Rusty Russell6b35e402008-02-04 23:50:12 -0500296 }
297
Raushaniya Maksudova1fd9c672014-11-10 09:35:29 +1030298 num_freed_pages = vb->num_pfns;
Dave Hansenbf50e692011-04-07 10:43:25 -0700299 /*
300 * Note that if
301 * virtio_has_feature(vdev, VIRTIO_BALLOON_F_MUST_TELL_HOST);
302 * is true, we *have* to do it in this order
303 */
Luiz Capitulino8c6bab42013-07-02 15:35:13 +0930304 if (vb->num_pfns != 0)
305 tell_host(vb, vb->deflate_vq);
Liang Li195a8c42017-07-12 20:40:14 +0800306 release_pages_balloon(vb, &pages);
Minchan Kimf68b9922015-12-28 08:35:12 +0900307 mutex_unlock(&vb->balloon_lock);
Raushaniya Maksudova1fd9c672014-11-10 09:35:29 +1030308 return num_freed_pages;
Rusty Russell6b35e402008-02-04 23:50:12 -0500309}
310
Adam Litke9564e132009-11-30 10:14:15 -0600311static inline void update_stat(struct virtio_balloon *vb, int idx,
312 u16 tag, u64 val)
313{
314 BUG_ON(idx >= VIRTIO_BALLOON_S_NR);
Michael S. Tsirkindf81b292015-04-15 10:17:43 +0930315 vb->stats[idx].tag = cpu_to_virtio16(vb->vdev, tag);
316 vb->stats[idx].val = cpu_to_virtio64(vb->vdev, val);
Adam Litke9564e132009-11-30 10:14:15 -0600317}
318
319#define pages_to_bytes(x) ((u64)(x) << PAGE_SHIFT)
320
Ladi Prosek9646b262017-03-28 18:46:58 +0200321static unsigned int update_balloon_stats(struct virtio_balloon *vb)
Adam Litke9564e132009-11-30 10:14:15 -0600322{
323 unsigned long events[NR_VM_EVENT_ITEMS];
324 struct sysinfo i;
Ladi Prosek9646b262017-03-28 18:46:58 +0200325 unsigned int idx = 0;
Igor Redko5057dcd2016-03-17 14:19:08 -0700326 long available;
Tomáš Golembiovský4d320292017-11-12 13:05:38 +0100327 unsigned long caches;
Adam Litke9564e132009-11-30 10:14:15 -0600328
329 all_vm_events(events);
330 si_meminfo(&i);
331
Igor Redko5057dcd2016-03-17 14:19:08 -0700332 available = si_mem_available();
Tomáš Golembiovský4d320292017-11-12 13:05:38 +0100333 caches = global_node_page_state(NR_FILE_PAGES);
Igor Redko5057dcd2016-03-17 14:19:08 -0700334
Arnd Bergmannf0bb2d52017-03-28 18:46:59 +0200335#ifdef CONFIG_VM_EVENT_COUNTERS
Adam Litke9564e132009-11-30 10:14:15 -0600336 update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_IN,
337 pages_to_bytes(events[PSWPIN]));
338 update_stat(vb, idx++, VIRTIO_BALLOON_S_SWAP_OUT,
339 pages_to_bytes(events[PSWPOUT]));
340 update_stat(vb, idx++, VIRTIO_BALLOON_S_MAJFLT, events[PGMAJFAULT]);
341 update_stat(vb, idx++, VIRTIO_BALLOON_S_MINFLT, events[PGFAULT]);
Jonathan Helman6c64fe72018-03-19 15:14:14 -0700342#ifdef CONFIG_HUGETLB_PAGE
343 update_stat(vb, idx++, VIRTIO_BALLOON_S_HTLB_PGALLOC,
344 events[HTLB_BUDDY_PGALLOC]);
345 update_stat(vb, idx++, VIRTIO_BALLOON_S_HTLB_PGFAIL,
346 events[HTLB_BUDDY_PGALLOC_FAIL]);
347#endif
Arnd Bergmannf0bb2d52017-03-28 18:46:59 +0200348#endif
Adam Litke9564e132009-11-30 10:14:15 -0600349 update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMFREE,
350 pages_to_bytes(i.freeram));
351 update_stat(vb, idx++, VIRTIO_BALLOON_S_MEMTOT,
352 pages_to_bytes(i.totalram));
Igor Redko5057dcd2016-03-17 14:19:08 -0700353 update_stat(vb, idx++, VIRTIO_BALLOON_S_AVAIL,
354 pages_to_bytes(available));
Tomáš Golembiovský4d320292017-11-12 13:05:38 +0100355 update_stat(vb, idx++, VIRTIO_BALLOON_S_CACHES,
356 pages_to_bytes(caches));
Ladi Prosek9646b262017-03-28 18:46:58 +0200357
358 return idx;
Adam Litke9564e132009-11-30 10:14:15 -0600359}
360
361/*
362 * While most virtqueues communicate guest-initiated requests to the hypervisor,
363 * the stats queue operates in reverse. The driver initializes the virtqueue
364 * with a single buffer. From that point forward, all conversations consist of
365 * a hypervisor request (a call to this function) which directs us to refill
Adam Litke1f34c712009-12-10 16:35:15 -0600366 * the virtqueue with a fresh stats buffer. Since stats collection can sleep,
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100367 * we delegate the job to a freezable workqueue that will do the actual work via
368 * stats_handle_request().
Adam Litke9564e132009-11-30 10:14:15 -0600369 */
Adam Litke1f34c712009-12-10 16:35:15 -0600370static void stats_request(struct virtqueue *vq)
Adam Litke9564e132009-11-30 10:14:15 -0600371{
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300372 struct virtio_balloon *vb = vq->vdev->priv;
Adam Litke9564e132009-11-30 10:14:15 -0600373
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100374 spin_lock(&vb->stop_update_lock);
375 if (!vb->stop_update)
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100376 queue_work(system_freezable_wq, &vb->update_balloon_stats_work);
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100377 spin_unlock(&vb->stop_update_lock);
Adam Litke1f34c712009-12-10 16:35:15 -0600378}
Adam Litke9564e132009-11-30 10:14:15 -0600379
Adam Litke1f34c712009-12-10 16:35:15 -0600380static void stats_handle_request(struct virtio_balloon *vb)
381{
382 struct virtqueue *vq;
383 struct scatterlist sg;
Ladi Prosek9646b262017-03-28 18:46:58 +0200384 unsigned int len, num_stats;
Adam Litke1f34c712009-12-10 16:35:15 -0600385
Ladi Prosek9646b262017-03-28 18:46:58 +0200386 num_stats = update_balloon_stats(vb);
Adam Litke9564e132009-11-30 10:14:15 -0600387
Adam Litke1f34c712009-12-10 16:35:15 -0600388 vq = vb->stats_vq;
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300389 if (!virtqueue_get_buf(vq, &len))
390 return;
Ladi Prosek9646b262017-03-28 18:46:58 +0200391 sg_init_one(&sg, vb->stats, sizeof(vb->stats[0]) * num_stats);
Rusty Russell4951cc92014-03-13 11:23:40 +1030392 virtqueue_add_outbuf(vq, &sg, 1, vb, GFP_KERNEL);
Michael S. Tsirkin946cfe02010-04-12 16:18:28 +0300393 virtqueue_kick(vq);
Adam Litke9564e132009-11-30 10:14:15 -0600394}
395
Rusty Russellbdc16812008-03-17 22:58:15 -0500396static inline s64 towards_target(struct virtio_balloon *vb)
Rusty Russell6b35e402008-02-04 23:50:12 -0500397{
David Gibson1a872282012-04-12 15:36:34 +1000398 s64 target;
Michael S. Tsirkindf81b292015-04-15 10:17:43 +0930399 u32 num_pages;
David Gibson1a872282012-04-12 15:36:34 +1000400
Michael S. Tsirkindf81b292015-04-15 10:17:43 +0930401 /* Legacy balloon config space is LE, unlike all other devices. */
Michael S. Tsirkin805769d2020-08-04 17:51:35 -0400402 virtio_cread_le(vb->vdev, struct virtio_balloon_config, num_pages,
403 &num_pages);
Michael S. Tsirkindf81b292015-04-15 10:17:43 +0930404
405 target = num_pages;
David Gibson1a872282012-04-12 15:36:34 +1000406 return target - vb->num_pages;
Rusty Russell6b35e402008-02-04 23:50:12 -0500407}
408
Wei Wang86a55972018-08-27 09:32:17 +0800409/* Gives back @num_to_return blocks of free pages to mm. */
410static unsigned long return_free_pages_to_mm(struct virtio_balloon *vb,
411 unsigned long num_to_return)
412{
413 struct page *page;
414 unsigned long num_returned;
415
416 spin_lock_irq(&vb->free_page_list_lock);
417 for (num_returned = 0; num_returned < num_to_return; num_returned++) {
418 page = balloon_page_pop(&vb->free_page_list);
419 if (!page)
420 break;
421 free_pages((unsigned long)page_address(page),
Michael S. Tsirkin2a946fa2019-11-19 05:21:47 -0500422 VIRTIO_BALLOON_HINT_BLOCK_ORDER);
Wei Wang86a55972018-08-27 09:32:17 +0800423 }
424 vb->num_free_page_blocks -= num_returned;
425 spin_unlock_irq(&vb->free_page_list_lock);
426
427 return num_returned;
428}
429
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800430static void virtio_balloon_queue_free_page_work(struct virtio_balloon *vb)
431{
432 if (!virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT))
433 return;
434
435 /* No need to queue the work if the bit was already set. */
436 if (test_and_set_bit(VIRTIO_BALLOON_CONFIG_READ_CMD_ID,
437 &vb->config_read_bitmap))
438 return;
439
440 queue_work(vb->balloon_wq, &vb->report_free_page_work);
441}
442
Wei Wang86a55972018-08-27 09:32:17 +0800443static void virtballoon_changed(struct virtio_device *vdev)
444{
445 struct virtio_balloon *vb = vdev->priv;
446 unsigned long flags;
Wei Wang86a55972018-08-27 09:32:17 +0800447
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800448 spin_lock_irqsave(&vb->stop_update_lock, flags);
449 if (!vb->stop_update) {
450 queue_work(system_freezable_wq,
451 &vb->update_balloon_size_work);
452 virtio_balloon_queue_free_page_work(vb);
Wei Wang86a55972018-08-27 09:32:17 +0800453 }
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800454 spin_unlock_irqrestore(&vb->stop_update_lock, flags);
Wei Wang86a55972018-08-27 09:32:17 +0800455}
456
Rusty Russell6b35e402008-02-04 23:50:12 -0500457static void update_balloon_size(struct virtio_balloon *vb)
458{
Michael S. Tsirkindf81b292015-04-15 10:17:43 +0930459 u32 actual = vb->num_pages;
460
461 /* Legacy balloon config space is LE, unlike all other devices. */
Michael S. Tsirkin805769d2020-08-04 17:51:35 -0400462 virtio_cwrite_le(vb->vdev, struct virtio_balloon_config, actual,
463 &actual);
Rusty Russell6b35e402008-02-04 23:50:12 -0500464}
465
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100466static void update_balloon_stats_func(struct work_struct *work)
Rusty Russell6b35e402008-02-04 23:50:12 -0500467{
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100468 struct virtio_balloon *vb;
Rusty Russell6b35e402008-02-04 23:50:12 -0500469
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100470 vb = container_of(work, struct virtio_balloon,
471 update_balloon_stats_work);
472 stats_handle_request(vb);
473}
Rusty Russell6b35e402008-02-04 23:50:12 -0500474
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100475static void update_balloon_size_func(struct work_struct *work)
Rusty Russell6b35e402008-02-04 23:50:12 -0500476{
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100477 struct virtio_balloon *vb;
478 s64 diff;
Michael S. Tsirkin3d2a3772015-03-10 11:55:08 +1030479
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100480 vb = container_of(work, struct virtio_balloon,
481 update_balloon_size_work);
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100482 diff = towards_target(vb);
Michael S. Tsirkin3d2a3772015-03-10 11:55:08 +1030483
Wei Wang53e946c2019-01-07 15:01:05 +0800484 if (!diff)
485 return;
486
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100487 if (diff > 0)
488 diff -= fill_balloon(vb, diff);
Wei Wang53e946c2019-01-07 15:01:05 +0800489 else
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100490 diff += leak_balloon(vb, -diff);
491 update_balloon_size(vb);
Rusty Russell1f74ef02014-03-13 11:23:38 +1030492
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100493 if (diff)
494 queue_work(system_freezable_wq, work);
Rusty Russell6b35e402008-02-04 23:50:12 -0500495}
496
Amit Shahbe91c332011-12-22 16:58:34 +0530497static int init_vqs(struct virtio_balloon *vb)
Rusty Russell6b35e402008-02-04 23:50:12 -0500498{
Wei Wang86a55972018-08-27 09:32:17 +0800499 struct virtqueue *vqs[VIRTIO_BALLOON_VQ_MAX];
500 vq_callback_t *callbacks[VIRTIO_BALLOON_VQ_MAX];
501 const char *names[VIRTIO_BALLOON_VQ_MAX];
502 int err;
Rusty Russell6b35e402008-02-04 23:50:12 -0500503
Amit Shahbe91c332011-12-22 16:58:34 +0530504 /*
Wei Wang86a55972018-08-27 09:32:17 +0800505 * Inflateq and deflateq are used unconditionally. The names[]
506 * will be NULL if the related feature is not enabled, which will
507 * cause no allocation for the corresponding virtqueue in find_vqs.
Amit Shahbe91c332011-12-22 16:58:34 +0530508 */
Wei Wang86a55972018-08-27 09:32:17 +0800509 callbacks[VIRTIO_BALLOON_VQ_INFLATE] = balloon_ack;
510 names[VIRTIO_BALLOON_VQ_INFLATE] = "inflate";
511 callbacks[VIRTIO_BALLOON_VQ_DEFLATE] = balloon_ack;
512 names[VIRTIO_BALLOON_VQ_DEFLATE] = "deflate";
Daniel Verkamp5790b532020-01-03 10:40:43 -0800513 callbacks[VIRTIO_BALLOON_VQ_STATS] = NULL;
Wei Wang86a55972018-08-27 09:32:17 +0800514 names[VIRTIO_BALLOON_VQ_STATS] = NULL;
Daniel Verkamp5790b532020-01-03 10:40:43 -0800515 callbacks[VIRTIO_BALLOON_VQ_FREE_PAGE] = NULL;
Wei Wang86a55972018-08-27 09:32:17 +0800516 names[VIRTIO_BALLOON_VQ_FREE_PAGE] = NULL;
Alexander Duyckb0c504f2020-04-06 20:05:05 -0700517 names[VIRTIO_BALLOON_VQ_REPORTING] = NULL;
Wei Wang86a55972018-08-27 09:32:17 +0800518
519 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ)) {
520 names[VIRTIO_BALLOON_VQ_STATS] = "stats";
521 callbacks[VIRTIO_BALLOON_VQ_STATS] = stats_request;
522 }
523
524 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) {
525 names[VIRTIO_BALLOON_VQ_FREE_PAGE] = "free_page_vq";
526 callbacks[VIRTIO_BALLOON_VQ_FREE_PAGE] = NULL;
527 }
528
Alexander Duyckb0c504f2020-04-06 20:05:05 -0700529 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_REPORTING)) {
530 names[VIRTIO_BALLOON_VQ_REPORTING] = "reporting_vq";
531 callbacks[VIRTIO_BALLOON_VQ_REPORTING] = balloon_ack;
532 }
533
Xianting Tian81a83d72021-07-23 13:42:59 +0800534 err = virtio_find_vqs(vb->vdev, VIRTIO_BALLOON_VQ_MAX, vqs,
535 callbacks, names, NULL);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600536 if (err)
Amit Shahbe91c332011-12-22 16:58:34 +0530537 return err;
Rusty Russell6b35e402008-02-04 23:50:12 -0500538
Wei Wang86a55972018-08-27 09:32:17 +0800539 vb->inflate_vq = vqs[VIRTIO_BALLOON_VQ_INFLATE];
540 vb->deflate_vq = vqs[VIRTIO_BALLOON_VQ_DEFLATE];
Adam Litke9564e132009-11-30 10:14:15 -0600541 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_STATS_VQ)) {
542 struct scatterlist sg;
Ladi Prosek9646b262017-03-28 18:46:58 +0200543 unsigned int num_stats;
Wei Wang86a55972018-08-27 09:32:17 +0800544 vb->stats_vq = vqs[VIRTIO_BALLOON_VQ_STATS];
Adam Litke9564e132009-11-30 10:14:15 -0600545
546 /*
547 * Prime this virtqueue with one buffer so the hypervisor can
Rusty Russell4951cc92014-03-13 11:23:40 +1030548 * use it to signal us later (it can't be broken yet!).
Adam Litke9564e132009-11-30 10:14:15 -0600549 */
Ladi Prosek9646b262017-03-28 18:46:58 +0200550 num_stats = update_balloon_stats(vb);
Ladi Prosekfc865322017-03-23 08:04:18 +0100551
Ladi Prosek9646b262017-03-28 18:46:58 +0200552 sg_init_one(&sg, vb->stats, sizeof(vb->stats[0]) * num_stats);
Wei Wang74cf5b12018-08-16 15:50:56 +0800553 err = virtqueue_add_outbuf(vb->stats_vq, &sg, 1, vb,
554 GFP_KERNEL);
555 if (err) {
556 dev_warn(&vb->vdev->dev, "%s: add stat_vq failed\n",
557 __func__);
558 return err;
559 }
Michael S. Tsirkin946cfe02010-04-12 16:18:28 +0300560 virtqueue_kick(vb->stats_vq);
Adam Litke9564e132009-11-30 10:14:15 -0600561 }
Wei Wang86a55972018-08-27 09:32:17 +0800562
563 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT))
564 vb->free_page_vq = vqs[VIRTIO_BALLOON_VQ_FREE_PAGE];
565
Alexander Duyckb0c504f2020-04-06 20:05:05 -0700566 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_REPORTING))
567 vb->reporting_vq = vqs[VIRTIO_BALLOON_VQ_REPORTING];
568
Amit Shahbe91c332011-12-22 16:58:34 +0530569 return 0;
570}
571
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800572static u32 virtio_balloon_cmd_id_received(struct virtio_balloon *vb)
573{
574 if (test_and_clear_bit(VIRTIO_BALLOON_CONFIG_READ_CMD_ID,
Michael S. Tsirkin168c3582020-07-27 12:01:27 -0400575 &vb->config_read_bitmap)) {
Michael S. Tsirkin168c3582020-07-27 12:01:27 -0400576 /* Legacy balloon config space is LE, unlike all other devices. */
Michael S. Tsirkin805769d2020-08-04 17:51:35 -0400577 virtio_cread_le(vb->vdev, struct virtio_balloon_config,
578 free_page_hint_cmd_id,
579 &vb->cmd_id_received_cache);
Michael S. Tsirkin168c3582020-07-27 12:01:27 -0400580 }
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800581
582 return vb->cmd_id_received_cache;
583}
584
Wei Wang86a55972018-08-27 09:32:17 +0800585static int send_cmd_id_start(struct virtio_balloon *vb)
586{
587 struct scatterlist sg;
588 struct virtqueue *vq = vb->free_page_vq;
589 int err, unused;
590
591 /* Detach all the used buffers from the vq */
592 while (virtqueue_get_buf(vq, &unused))
593 ;
594
Michael S. Tsirkin8875bbb2020-07-10 06:34:49 -0400595 vb->cmd_id_active = cpu_to_virtio32(vb->vdev,
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800596 virtio_balloon_cmd_id_received(vb));
Wei Wang86a55972018-08-27 09:32:17 +0800597 sg_init_one(&sg, &vb->cmd_id_active, sizeof(vb->cmd_id_active));
598 err = virtqueue_add_outbuf(vq, &sg, 1, &vb->cmd_id_active, GFP_KERNEL);
599 if (!err)
600 virtqueue_kick(vq);
601 return err;
602}
603
604static int send_cmd_id_stop(struct virtio_balloon *vb)
605{
606 struct scatterlist sg;
607 struct virtqueue *vq = vb->free_page_vq;
608 int err, unused;
609
610 /* Detach all the used buffers from the vq */
611 while (virtqueue_get_buf(vq, &unused))
612 ;
613
614 sg_init_one(&sg, &vb->cmd_id_stop, sizeof(vb->cmd_id_stop));
615 err = virtqueue_add_outbuf(vq, &sg, 1, &vb->cmd_id_stop, GFP_KERNEL);
616 if (!err)
617 virtqueue_kick(vq);
618 return err;
619}
620
621static int get_free_page_and_send(struct virtio_balloon *vb)
622{
623 struct virtqueue *vq = vb->free_page_vq;
624 struct page *page;
625 struct scatterlist sg;
626 int err, unused;
627 void *p;
628
629 /* Detach all the used buffers from the vq */
630 while (virtqueue_get_buf(vq, &unused))
631 ;
632
633 page = alloc_pages(VIRTIO_BALLOON_FREE_PAGE_ALLOC_FLAG,
Michael S. Tsirkin2a946fa2019-11-19 05:21:47 -0500634 VIRTIO_BALLOON_HINT_BLOCK_ORDER);
Wei Wang86a55972018-08-27 09:32:17 +0800635 /*
636 * When the allocation returns NULL, it indicates that we have got all
637 * the possible free pages, so return -EINTR to stop.
638 */
639 if (!page)
640 return -EINTR;
641
642 p = page_address(page);
Michael S. Tsirkin2a946fa2019-11-19 05:21:47 -0500643 sg_init_one(&sg, p, VIRTIO_BALLOON_HINT_BLOCK_BYTES);
Wei Wang86a55972018-08-27 09:32:17 +0800644 /* There is always 1 entry reserved for the cmd id to use. */
645 if (vq->num_free > 1) {
646 err = virtqueue_add_inbuf(vq, &sg, 1, p, GFP_KERNEL);
647 if (unlikely(err)) {
648 free_pages((unsigned long)p,
Michael S. Tsirkin2a946fa2019-11-19 05:21:47 -0500649 VIRTIO_BALLOON_HINT_BLOCK_ORDER);
Wei Wang86a55972018-08-27 09:32:17 +0800650 return err;
651 }
652 virtqueue_kick(vq);
653 spin_lock_irq(&vb->free_page_list_lock);
654 balloon_page_push(&vb->free_page_list, page);
655 vb->num_free_page_blocks++;
656 spin_unlock_irq(&vb->free_page_list_lock);
657 } else {
658 /*
659 * The vq has no available entry to add this page block, so
660 * just free it.
661 */
Michael S. Tsirkin2a946fa2019-11-19 05:21:47 -0500662 free_pages((unsigned long)p, VIRTIO_BALLOON_HINT_BLOCK_ORDER);
Wei Wang86a55972018-08-27 09:32:17 +0800663 }
664
665 return 0;
666}
667
668static int send_free_pages(struct virtio_balloon *vb)
669{
670 int err;
671 u32 cmd_id_active;
672
673 while (1) {
674 /*
675 * If a stop id or a new cmd id was just received from host,
676 * stop the reporting.
677 */
678 cmd_id_active = virtio32_to_cpu(vb->vdev, vb->cmd_id_active);
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800679 if (unlikely(cmd_id_active !=
680 virtio_balloon_cmd_id_received(vb)))
Wei Wang86a55972018-08-27 09:32:17 +0800681 break;
682
683 /*
684 * The free page blocks are allocated and sent to host one by
685 * one.
686 */
687 err = get_free_page_and_send(vb);
688 if (err == -EINTR)
689 break;
690 else if (unlikely(err))
691 return err;
692 }
693
694 return 0;
695}
696
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800697static void virtio_balloon_report_free_page(struct virtio_balloon *vb)
Wei Wang86a55972018-08-27 09:32:17 +0800698{
699 int err;
Wei Wang86a55972018-08-27 09:32:17 +0800700 struct device *dev = &vb->vdev->dev;
701
702 /* Start by sending the received cmd id to host with an outbuf. */
703 err = send_cmd_id_start(vb);
704 if (unlikely(err))
705 dev_err(dev, "Failed to send a start id, err = %d\n", err);
706
707 err = send_free_pages(vb);
708 if (unlikely(err))
709 dev_err(dev, "Failed to send a free page, err = %d\n", err);
710
711 /* End by sending a stop id to host with an outbuf. */
712 err = send_cmd_id_stop(vb);
713 if (unlikely(err))
714 dev_err(dev, "Failed to send a stop id, err = %d\n", err);
715}
716
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800717static void report_free_page_func(struct work_struct *work)
718{
719 struct virtio_balloon *vb = container_of(work, struct virtio_balloon,
720 report_free_page_work);
721 u32 cmd_id_received;
722
723 cmd_id_received = virtio_balloon_cmd_id_received(vb);
724 if (cmd_id_received == VIRTIO_BALLOON_CMD_ID_DONE) {
725 /* Pass ULONG_MAX to give back all the free pages */
726 return_free_pages_to_mm(vb, ULONG_MAX);
727 } else if (cmd_id_received != VIRTIO_BALLOON_CMD_ID_STOP &&
728 cmd_id_received !=
729 virtio32_to_cpu(vb->vdev, vb->cmd_id_active)) {
730 virtio_balloon_report_free_page(vb);
731 }
732}
733
Rafael Aquinie2250422012-12-11 16:02:45 -0800734#ifdef CONFIG_BALLOON_COMPACTION
735/*
736 * virtballoon_migratepage - perform the balloon page migration on behalf of
Liu Xiang3fd02fb2021-03-27 11:17:10 +0800737 * a compaction thread. (called under page lock)
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700738 * @vb_dev_info: the balloon device
Rafael Aquinie2250422012-12-11 16:02:45 -0800739 * @newpage: page that will replace the isolated page after migration finishes.
740 * @page : the isolated (old) page that is about to be migrated to newpage.
741 * @mode : compaction mode -- not used for balloon page migration.
742 *
743 * After a ballooned page gets isolated by compaction procedures, this is the
744 * function that performs the page migration on behalf of a compaction thread
745 * The page migration for virtio balloon is done in a simple swap fashion which
746 * follows these two macro steps:
747 * 1) insert newpage into vb->pages list and update the host about it;
748 * 2) update the host about the old page removed from vb->pages list;
749 *
750 * This function preforms the balloon page migration task.
751 * Called through balloon_mapping->a_ops->migratepage
752 */
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700753static int virtballoon_migratepage(struct balloon_dev_info *vb_dev_info,
Rafael Aquinie2250422012-12-11 16:02:45 -0800754 struct page *newpage, struct page *page, enum migrate_mode mode)
755{
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700756 struct virtio_balloon *vb = container_of(vb_dev_info,
757 struct virtio_balloon, vb_dev_info);
Rafael Aquinie2250422012-12-11 16:02:45 -0800758 unsigned long flags;
759
Rafael Aquinie2250422012-12-11 16:02:45 -0800760 /*
761 * In order to avoid lock contention while migrating pages concurrently
762 * to leak_balloon() or fill_balloon() we just give up the balloon_lock
763 * this turn, as it is easier to retry the page migration later.
764 * This also prevents fill_balloon() getting stuck into a mutex
765 * recursion in the case it ends up triggering memory compaction
766 * while it is attempting to inflate the ballon.
767 */
768 if (!mutex_trylock(&vb->balloon_lock))
769 return -EAGAIN;
770
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700771 get_page(newpage); /* balloon reference */
772
David Hildenbrand63341ab2019-12-11 12:11:52 +0100773 /*
774 * When we migrate a page to a different zone and adjusted the
775 * managed page count when inflating, we have to fixup the count of
776 * both involved zones.
777 */
778 if (!virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM) &&
779 page_zone(page) != page_zone(newpage)) {
780 adjust_managed_page_count(page, 1);
781 adjust_managed_page_count(newpage, -1);
782 }
783
Rafael Aquinie2250422012-12-11 16:02:45 -0800784 /* balloon's page migration 1st step -- inflate "newpage" */
785 spin_lock_irqsave(&vb_dev_info->pages_lock, flags);
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700786 balloon_page_insert(vb_dev_info, newpage);
Rafael Aquinie2250422012-12-11 16:02:45 -0800787 vb_dev_info->isolated_pages--;
Konstantin Khlebnikov09316c02014-10-09 15:29:32 -0700788 __count_vm_event(BALLOON_MIGRATE);
Rafael Aquinie2250422012-12-11 16:02:45 -0800789 spin_unlock_irqrestore(&vb_dev_info->pages_lock, flags);
790 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE;
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300791 set_page_pfns(vb, vb->pfns, newpage);
Rafael Aquinie2250422012-12-11 16:02:45 -0800792 tell_host(vb, vb->inflate_vq);
793
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700794 /* balloon's page migration 2nd step -- deflate "page" */
Jiang Biao89da6192018-07-18 10:29:28 +0800795 spin_lock_irqsave(&vb_dev_info->pages_lock, flags);
Rafael Aquinie2250422012-12-11 16:02:45 -0800796 balloon_page_delete(page);
Jiang Biao89da6192018-07-18 10:29:28 +0800797 spin_unlock_irqrestore(&vb_dev_info->pages_lock, flags);
Rafael Aquinie2250422012-12-11 16:02:45 -0800798 vb->num_pfns = VIRTIO_BALLOON_PAGES_PER_PAGE;
Michael S. Tsirkin87c94032016-05-17 13:31:18 +0300799 set_page_pfns(vb, vb->pfns, page);
Rafael Aquinie2250422012-12-11 16:02:45 -0800800 tell_host(vb, vb->deflate_vq);
801
802 mutex_unlock(&vb->balloon_lock);
803
Konstantin Khlebnikovd6d86c02014-10-09 15:29:27 -0700804 put_page(page); /* balloon reference */
805
Minchan Kimdd4123f2016-07-26 15:26:50 -0700806 return MIGRATEPAGE_SUCCESS;
Rafael Aquinie2250422012-12-11 16:02:45 -0800807}
Minchan Kimb1123ea62016-07-26 15:23:09 -0700808
David Howells99558d22019-03-25 16:38:25 +0000809static int balloon_init_fs_context(struct fs_context *fc)
Minchan Kimb1123ea62016-07-26 15:23:09 -0700810{
David Howells99558d22019-03-25 16:38:25 +0000811 return init_pseudo(fc, BALLOON_KVM_MAGIC) ? 0 : -ENOMEM;
Minchan Kimb1123ea62016-07-26 15:23:09 -0700812}
813
814static struct file_system_type balloon_fs = {
815 .name = "balloon-kvm",
David Howells99558d22019-03-25 16:38:25 +0000816 .init_fs_context = balloon_init_fs_context,
Minchan Kimb1123ea62016-07-26 15:23:09 -0700817 .kill_sb = kill_anon_super,
818};
819
Rafael Aquinie2250422012-12-11 16:02:45 -0800820#endif /* CONFIG_BALLOON_COMPACTION */
821
Wei Wang86a55972018-08-27 09:32:17 +0800822static unsigned long shrink_free_pages(struct virtio_balloon *vb,
823 unsigned long pages_to_free)
824{
825 unsigned long blocks_to_free, blocks_freed;
826
827 pages_to_free = round_up(pages_to_free,
Michael S. Tsirkin63b9b802019-11-19 05:25:24 -0500828 VIRTIO_BALLOON_HINT_BLOCK_PAGES);
829 blocks_to_free = pages_to_free / VIRTIO_BALLOON_HINT_BLOCK_PAGES;
Wei Wang86a55972018-08-27 09:32:17 +0800830 blocks_freed = return_free_pages_to_mm(vb, blocks_to_free);
831
Michael S. Tsirkin63b9b802019-11-19 05:25:24 -0500832 return blocks_freed * VIRTIO_BALLOON_HINT_BLOCK_PAGES;
Wei Wang86a55972018-08-27 09:32:17 +0800833}
834
Wei Wang71994622018-08-16 15:50:58 +0800835static unsigned long virtio_balloon_shrinker_scan(struct shrinker *shrinker,
836 struct shrink_control *sc)
837{
Wei Wang71994622018-08-16 15:50:58 +0800838 struct virtio_balloon *vb = container_of(shrinker,
839 struct virtio_balloon, shrinker);
840
David Hildenbrandda103292020-04-06 20:05:22 -0700841 return shrink_free_pages(vb, sc->nr_to_scan);
Wei Wang71994622018-08-16 15:50:58 +0800842}
843
844static unsigned long virtio_balloon_shrinker_count(struct shrinker *shrinker,
845 struct shrink_control *sc)
846{
847 struct virtio_balloon *vb = container_of(shrinker,
848 struct virtio_balloon, shrinker);
849
David Hildenbrandda103292020-04-06 20:05:22 -0700850 return vb->num_free_page_blocks * VIRTIO_BALLOON_HINT_BLOCK_PAGES;
851}
Wei Wang86a55972018-08-27 09:32:17 +0800852
David Hildenbrandda103292020-04-06 20:05:22 -0700853static int virtio_balloon_oom_notify(struct notifier_block *nb,
854 unsigned long dummy, void *parm)
855{
856 struct virtio_balloon *vb = container_of(nb,
857 struct virtio_balloon, oom_nb);
858 unsigned long *freed = parm;
859
860 *freed += leak_balloon(vb, VIRTIO_BALLOON_OOM_NR_PAGES) /
861 VIRTIO_BALLOON_PAGES_PER_PAGE;
862 update_balloon_size(vb);
863
864 return NOTIFY_OK;
Wei Wang71994622018-08-16 15:50:58 +0800865}
866
867static void virtio_balloon_unregister_shrinker(struct virtio_balloon *vb)
868{
869 unregister_shrinker(&vb->shrinker);
870}
871
872static int virtio_balloon_register_shrinker(struct virtio_balloon *vb)
873{
874 vb->shrinker.scan_objects = virtio_balloon_shrinker_scan;
875 vb->shrinker.count_objects = virtio_balloon_shrinker_count;
876 vb->shrinker.seeks = DEFAULT_SEEKS;
877
878 return register_shrinker(&vb->shrinker);
879}
880
Amit Shahbe91c332011-12-22 16:58:34 +0530881static int virtballoon_probe(struct virtio_device *vdev)
882{
883 struct virtio_balloon *vb;
884 int err;
885
Michael S. Tsirkin2d9becc2015-01-12 16:23:37 +0200886 if (!vdev->config->get) {
887 dev_err(&vdev->dev, "%s failure: config access disabled\n",
888 __func__);
889 return -EINVAL;
890 }
891
Wei Wangc51d8fc2018-08-16 15:50:57 +0800892 vdev->priv = vb = kzalloc(sizeof(*vb), GFP_KERNEL);
Amit Shahbe91c332011-12-22 16:58:34 +0530893 if (!vb) {
894 err = -ENOMEM;
895 goto out;
896 }
897
Petr Mladekfd0e21c2016-01-25 17:38:06 +0100898 INIT_WORK(&vb->update_balloon_stats_work, update_balloon_stats_func);
899 INIT_WORK(&vb->update_balloon_size_work, update_balloon_size_func);
Petr Mladekfad7b7b2016-01-25 17:38:05 +0100900 spin_lock_init(&vb->stop_update_lock);
Rafael Aquinie2250422012-12-11 16:02:45 -0800901 mutex_init(&vb->balloon_lock);
Michael S. Tsirkin9c378ab2012-07-02 10:33:08 +0300902 init_waitqueue_head(&vb->acked);
Amit Shahbe91c332011-12-22 16:58:34 +0530903 vb->vdev = vdev;
Amit Shahbe91c332011-12-22 16:58:34 +0530904
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700905 balloon_devinfo_init(&vb->vb_dev_info);
Rafael Aquinie2250422012-12-11 16:02:45 -0800906
Amit Shahbe91c332011-12-22 16:58:34 +0530907 err = init_vqs(vb);
908 if (err)
Konstantin Khlebnikov9d1ba802014-10-09 15:29:29 -0700909 goto out_free_vb;
Rusty Russell6b35e402008-02-04 23:50:12 -0500910
Minchan Kimb1123ea62016-07-26 15:23:09 -0700911#ifdef CONFIG_BALLOON_COMPACTION
912 balloon_mnt = kern_mount(&balloon_fs);
913 if (IS_ERR(balloon_mnt)) {
914 err = PTR_ERR(balloon_mnt);
Minchan Kimb1123ea62016-07-26 15:23:09 -0700915 goto out_del_vqs;
916 }
917
918 vb->vb_dev_info.migratepage = virtballoon_migratepage;
919 vb->vb_dev_info.inode = alloc_anon_inode(balloon_mnt->mnt_sb);
920 if (IS_ERR(vb->vb_dev_info.inode)) {
921 err = PTR_ERR(vb->vb_dev_info.inode);
David Hildenbrand1ad6f582020-02-05 17:34:01 +0100922 goto out_kern_unmount;
Minchan Kimb1123ea62016-07-26 15:23:09 -0700923 }
924 vb->vb_dev_info.inode->i_mapping->a_ops = &balloon_aops;
925#endif
Wei Wang86a55972018-08-27 09:32:17 +0800926 if (virtio_has_feature(vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) {
927 /*
928 * There is always one entry reserved for cmd id, so the ring
929 * size needs to be at least two to report free page hints.
930 */
931 if (virtqueue_get_vring_size(vb->free_page_vq) < 2) {
932 err = -ENOSPC;
David Hildenbrand1ad6f582020-02-05 17:34:01 +0100933 goto out_iput;
Wei Wang86a55972018-08-27 09:32:17 +0800934 }
935 vb->balloon_wq = alloc_workqueue("balloon-wq",
936 WQ_FREEZABLE | WQ_CPU_INTENSIVE, 0);
937 if (!vb->balloon_wq) {
938 err = -ENOMEM;
David Hildenbrand1ad6f582020-02-05 17:34:01 +0100939 goto out_iput;
Wei Wang86a55972018-08-27 09:32:17 +0800940 }
941 INIT_WORK(&vb->report_free_page_work, report_free_page_func);
Wei Wangbf4dc0b2019-01-07 15:01:04 +0800942 vb->cmd_id_received_cache = VIRTIO_BALLOON_CMD_ID_STOP;
Wei Wang86a55972018-08-27 09:32:17 +0800943 vb->cmd_id_active = cpu_to_virtio32(vb->vdev,
944 VIRTIO_BALLOON_CMD_ID_STOP);
945 vb->cmd_id_stop = cpu_to_virtio32(vb->vdev,
946 VIRTIO_BALLOON_CMD_ID_STOP);
Wei Wang86a55972018-08-27 09:32:17 +0800947 spin_lock_init(&vb->free_page_list_lock);
948 INIT_LIST_HEAD(&vb->free_page_list);
David Hildenbrandda103292020-04-06 20:05:22 -0700949 /*
950 * We're allowed to reuse any free pages, even if they are
951 * still to be processed by the host.
952 */
953 err = virtio_balloon_register_shrinker(vb);
954 if (err)
955 goto out_del_balloon_wq;
Alexander Duyckd74b78f2020-04-06 20:05:01 -0700956 }
David Hildenbrandda103292020-04-06 20:05:22 -0700957
958 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM)) {
959 vb->oom_nb.notifier_call = virtio_balloon_oom_notify;
960 vb->oom_nb.priority = VIRTIO_BALLOON_OOM_NOTIFY_PRIORITY;
961 err = register_oom_notifier(&vb->oom_nb);
962 if (err < 0)
963 goto out_unregister_shrinker;
964 }
965
Alexander Duyckd74b78f2020-04-06 20:05:01 -0700966 if (virtio_has_feature(vdev, VIRTIO_BALLOON_F_PAGE_POISON)) {
967 /* Start with poison val of 0 representing general init */
968 __u32 poison_val = 0;
969
970 /*
971 * Let the hypervisor know that we are expecting a
972 * specific value to be written back in balloon pages.
Alexander Duyckca72cc32020-07-13 13:35:39 -0700973 *
974 * If the PAGE_POISON value was larger than a byte we would
975 * need to byte swap poison_val here to guarantee it is
976 * little-endian. However for now it is a single byte so we
977 * can pass it as-is.
Alexander Duyckd74b78f2020-04-06 20:05:01 -0700978 */
979 if (!want_init_on_free())
Wei Wang2e991622018-08-27 09:32:19 +0800980 memset(&poison_val, PAGE_POISON, sizeof(poison_val));
Alexander Duyckd74b78f2020-04-06 20:05:01 -0700981
Michael S. Tsirkin805769d2020-08-04 17:51:35 -0400982 virtio_cwrite_le(vb->vdev, struct virtio_balloon_config,
983 poison_val, &poison_val);
Wei Wang86a55972018-08-27 09:32:17 +0800984 }
Alexander Duyckb0c504f2020-04-06 20:05:05 -0700985
986 vb->pr_dev_info.report = virtballoon_free_page_report;
987 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_REPORTING)) {
988 unsigned int capacity;
989
990 capacity = virtqueue_get_vring_size(vb->reporting_vq);
991 if (capacity < PAGE_REPORTING_CAPACITY) {
992 err = -ENOSPC;
David Hildenbrandda103292020-04-06 20:05:22 -0700993 goto out_unregister_oom;
Alexander Duyckb0c504f2020-04-06 20:05:05 -0700994 }
995
Gavin Shanf8af4d02021-06-28 19:35:25 -0700996 /*
997 * The default page reporting order is @pageblock_order, which
998 * corresponds to 512MB in size on ARM64 when 64KB base page
999 * size is used. The page reporting won't be triggered if the
1000 * freeing page can't come up with a free area like that huge.
1001 * So we specify the page reporting order to 5, corresponding
1002 * to 2MB. It helps to avoid THP splitting if 4KB base page
1003 * size is used by host.
1004 *
1005 * Ideally, the page reporting order is selected based on the
1006 * host's base page size. However, it needs more work to report
1007 * that value. The hard-coded order would be fine currently.
1008 */
1009#if defined(CONFIG_ARM64) && defined(CONFIG_ARM64_64K_PAGES)
1010 vb->pr_dev_info.order = 5;
1011#endif
1012
Alexander Duyckb0c504f2020-04-06 20:05:05 -07001013 err = page_reporting_register(&vb->pr_dev_info);
1014 if (err)
David Hildenbrandda103292020-04-06 20:05:22 -07001015 goto out_unregister_oom;
Alexander Duyckb0c504f2020-04-06 20:05:05 -07001016 }
1017
Michael S. Tsirkin88660f7fb2015-03-05 13:24:41 +10301018 virtio_device_ready(vdev);
1019
Konstantin Neumoin8424af52016-09-29 13:17:12 +03001020 if (towards_target(vb))
1021 virtballoon_changed(vdev);
Rusty Russell6b35e402008-02-04 23:50:12 -05001022 return 0;
1023
David Hildenbrandda103292020-04-06 20:05:22 -07001024out_unregister_oom:
Alexander Duyckb0c504f2020-04-06 20:05:05 -07001025 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM))
David Hildenbrandda103292020-04-06 20:05:22 -07001026 unregister_oom_notifier(&vb->oom_nb);
1027out_unregister_shrinker:
1028 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT))
Alexander Duyckb0c504f2020-04-06 20:05:05 -07001029 virtio_balloon_unregister_shrinker(vb);
Wei Wang86a55972018-08-27 09:32:17 +08001030out_del_balloon_wq:
1031 if (virtio_has_feature(vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT))
1032 destroy_workqueue(vb->balloon_wq);
David Hildenbrand1ad6f582020-02-05 17:34:01 +01001033out_iput:
1034#ifdef CONFIG_BALLOON_COMPACTION
1035 iput(vb->vb_dev_info.inode);
1036out_kern_unmount:
1037 kern_unmount(balloon_mnt);
Minchan Kimb1123ea62016-07-26 15:23:09 -07001038out_del_vqs:
Nathan Chancellor6ae4eda2020-02-15 17:40:39 -07001039#endif
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06001040 vdev->config->del_vqs(vdev);
Rusty Russell6b35e402008-02-04 23:50:12 -05001041out_free_vb:
1042 kfree(vb);
1043out:
1044 return err;
1045}
1046
Amit Shahc877bab2012-04-27 00:45:57 +05301047static void remove_common(struct virtio_balloon *vb)
Rusty Russell6b35e402008-02-04 23:50:12 -05001048{
Rusty Russell6b35e402008-02-04 23:50:12 -05001049 /* There might be pages left in the balloon: free them. */
1050 while (vb->num_pages)
1051 leak_balloon(vb, vb->num_pages);
Amit Shahb8ae0eb2012-04-27 00:45:56 +05301052 update_balloon_size(vb);
Rusty Russell6b35e402008-02-04 23:50:12 -05001053
David Hildenbrand6c22dc62020-02-05 17:34:00 +01001054 /* There might be free pages that are being reported: release them. */
1055 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT))
1056 return_free_pages_to_mm(vb, ULONG_MAX);
1057
Rusty Russell6b35e402008-02-04 23:50:12 -05001058 /* Now we reset the device so we can clean up the queues. */
Michael S. Tsirkind9679d02021-10-13 06:55:44 -04001059 virtio_reset_device(vb->vdev);
Rusty Russell6b35e402008-02-04 23:50:12 -05001060
Amit Shahc877bab2012-04-27 00:45:57 +05301061 vb->vdev->config->del_vqs(vb->vdev);
1062}
1063
Greg Kroah-Hartman8590dbc2012-12-21 13:05:30 -08001064static void virtballoon_remove(struct virtio_device *vdev)
Amit Shahc877bab2012-04-27 00:45:57 +05301065{
1066 struct virtio_balloon *vb = vdev->priv;
1067
Alexander Duyckb0c504f2020-04-06 20:05:05 -07001068 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_REPORTING))
1069 page_reporting_unregister(&vb->pr_dev_info);
Wei Wang71994622018-08-16 15:50:58 +08001070 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_DEFLATE_ON_OOM))
David Hildenbrandda103292020-04-06 20:05:22 -07001071 unregister_oom_notifier(&vb->oom_nb);
1072 if (virtio_has_feature(vb->vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT))
Wei Wang71994622018-08-16 15:50:58 +08001073 virtio_balloon_unregister_shrinker(vb);
Petr Mladekfad7b7b2016-01-25 17:38:05 +01001074 spin_lock_irq(&vb->stop_update_lock);
1075 vb->stop_update = true;
1076 spin_unlock_irq(&vb->stop_update_lock);
Petr Mladekfd0e21c2016-01-25 17:38:06 +01001077 cancel_work_sync(&vb->update_balloon_size_work);
1078 cancel_work_sync(&vb->update_balloon_stats_work);
Petr Mladekfad7b7b2016-01-25 17:38:05 +01001079
Wei Wang86a55972018-08-27 09:32:17 +08001080 if (virtio_has_feature(vdev, VIRTIO_BALLOON_F_FREE_PAGE_HINT)) {
1081 cancel_work_sync(&vb->report_free_page_work);
1082 destroy_workqueue(vb->balloon_wq);
1083 }
1084
Amit Shahc877bab2012-04-27 00:45:57 +05301085 remove_common(vb);
Yisheng Xie9c57b582017-02-24 15:00:40 -08001086#ifdef CONFIG_BALLOON_COMPACTION
Minchan Kimb1123ea62016-07-26 15:23:09 -07001087 if (vb->vb_dev_info.inode)
1088 iput(vb->vb_dev_info.inode);
Yisheng Xie9c57b582017-02-24 15:00:40 -08001089
1090 kern_unmount(balloon_mnt);
1091#endif
Rusty Russell6b35e402008-02-04 23:50:12 -05001092 kfree(vb);
1093}
1094
Aaron Lu89107002013-09-17 09:25:23 +09301095#ifdef CONFIG_PM_SLEEP
Amit Shahe5629662011-12-22 16:58:35 +05301096static int virtballoon_freeze(struct virtio_device *vdev)
1097{
Amit Shah4eb05d52012-02-29 17:42:51 +05301098 struct virtio_balloon *vb = vdev->priv;
1099
Amit Shahe5629662011-12-22 16:58:35 +05301100 /*
Petr Mladekfad7b7b2016-01-25 17:38:05 +01001101 * The workqueue is already frozen by the PM core before this
Amit Shahe5629662011-12-22 16:58:35 +05301102 * function is called.
1103 */
Amit Shahc877bab2012-04-27 00:45:57 +05301104 remove_common(vb);
Amit Shahe5629662011-12-22 16:58:35 +05301105 return 0;
1106}
1107
Amit Shahc45b4162012-04-27 00:45:55 +05301108static int virtballoon_restore(struct virtio_device *vdev)
Amit Shah4eb05d52012-02-29 17:42:51 +05301109{
1110 struct virtio_balloon *vb = vdev->priv;
1111 int ret;
1112
1113 ret = init_vqs(vdev->priv);
1114 if (ret)
1115 return ret;
1116
Michael S. Tsirkin486d2e62014-10-15 10:22:33 +10301117 virtio_device_ready(vdev);
1118
Petr Mladekfad7b7b2016-01-25 17:38:05 +01001119 if (towards_target(vb))
1120 virtballoon_changed(vdev);
Amit Shah4eb05d52012-02-29 17:42:51 +05301121 update_balloon_size(vb);
1122 return 0;
1123}
Amit Shahe5629662011-12-22 16:58:35 +05301124#endif
1125
Michael S. Tsirkine41b1352017-06-13 20:56:44 +03001126static int virtballoon_validate(struct virtio_device *vdev)
1127{
Alexander Duyckfb69c2c2020-05-08 10:40:06 -07001128 /*
1129 * Inform the hypervisor that our pages are poisoned or
1130 * initialized. If we cannot do that then we should disable
1131 * page reporting as it could potentially change the contents
1132 * of our free pages.
1133 */
Vlastimil Babka8f424752020-12-14 19:13:41 -08001134 if (!want_init_on_free() && !page_poisoning_enabled_static())
Wei Wang2e991622018-08-27 09:32:19 +08001135 __virtio_clear_bit(vdev, VIRTIO_BALLOON_F_PAGE_POISON);
Alexander Duyckfb69c2c2020-05-08 10:40:06 -07001136 else if (!virtio_has_feature(vdev, VIRTIO_BALLOON_F_PAGE_POISON))
1137 __virtio_clear_bit(vdev, VIRTIO_BALLOON_F_REPORTING);
Wei Wang2e991622018-08-27 09:32:19 +08001138
Michael S. Tsirkin321bd212020-06-24 18:24:33 -04001139 __virtio_clear_bit(vdev, VIRTIO_F_ACCESS_PLATFORM);
Michael S. Tsirkine41b1352017-06-13 20:56:44 +03001140 return 0;
1141}
1142
Adam Litke9564e132009-11-30 10:14:15 -06001143static unsigned int features[] = {
1144 VIRTIO_BALLOON_F_MUST_TELL_HOST,
1145 VIRTIO_BALLOON_F_STATS_VQ,
Raushaniya Maksudova5a10b7d2014-11-10 09:36:29 +10301146 VIRTIO_BALLOON_F_DEFLATE_ON_OOM,
Wei Wang86a55972018-08-27 09:32:17 +08001147 VIRTIO_BALLOON_F_FREE_PAGE_HINT,
Wei Wang2e991622018-08-27 09:32:19 +08001148 VIRTIO_BALLOON_F_PAGE_POISON,
Alexander Duyckb0c504f2020-04-06 20:05:05 -07001149 VIRTIO_BALLOON_F_REPORTING,
Adam Litke9564e132009-11-30 10:14:15 -06001150};
Rusty Russellc45a6812008-05-02 21:50:50 -05001151
Jeff Mahoneyd817cd52010-01-15 17:01:26 -08001152static struct virtio_driver virtio_balloon_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05001153 .feature_table = features,
1154 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell6b35e402008-02-04 23:50:12 -05001155 .driver.name = KBUILD_MODNAME,
1156 .driver.owner = THIS_MODULE,
1157 .id_table = id_table,
Michael S. Tsirkine41b1352017-06-13 20:56:44 +03001158 .validate = virtballoon_validate,
Rusty Russell6b35e402008-02-04 23:50:12 -05001159 .probe = virtballoon_probe,
Greg Kroah-Hartman8590dbc2012-12-21 13:05:30 -08001160 .remove = virtballoon_remove,
Rusty Russell6b35e402008-02-04 23:50:12 -05001161 .config_changed = virtballoon_changed,
Aaron Lu89107002013-09-17 09:25:23 +09301162#ifdef CONFIG_PM_SLEEP
Amit Shahe5629662011-12-22 16:58:35 +05301163 .freeze = virtballoon_freeze,
1164 .restore = virtballoon_restore,
Amit Shahe5629662011-12-22 16:58:35 +05301165#endif
Rusty Russell6b35e402008-02-04 23:50:12 -05001166};
1167
Rusty Russellb2a17022013-02-13 16:59:28 +10301168module_virtio_driver(virtio_balloon_driver);
Rusty Russell6b35e402008-02-04 23:50:12 -05001169MODULE_DEVICE_TABLE(virtio, id_table);
1170MODULE_DESCRIPTION("Virtio balloon driver");
1171MODULE_LICENSE("GPL");