blob: 5e9122cd389885f31799208a5089f8b6eb4074df [file] [log] [blame]
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001/*
2 * VMware Balloon driver.
3 *
Philip P. Moltmann48e3d662015-08-06 15:18:01 -07004 * Copyright (C) 2000-2014, VMware, Inc. All Rights Reserved.
Dmitry Torokhov453dc652010-04-23 13:18:08 -04005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; version 2 of the License and no later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
13 * NON INFRINGEMENT. See the GNU General Public License for more
14 * details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19 *
Dmitry Torokhov73b35d02014-06-20 10:14:58 -070020 * Maintained by: Xavier Deguillard <xdeguillard@vmware.com>
21 * Philip Moltmann <moltmann@vmware.com>
Dmitry Torokhov453dc652010-04-23 13:18:08 -040022 */
23
24/*
25 * This is VMware physical memory management driver for Linux. The driver
26 * acts like a "balloon" that can be inflated to reclaim physical pages by
27 * reserving them in the guest and invalidating them in the monitor,
28 * freeing up the underlying machine pages so they can be allocated to
29 * other guests. The balloon can also be deflated to allow the guest to
30 * use more physical memory. Higher level policies can control the sizes
31 * of balloons in VMs in order to manage physical memory resources.
32 */
33
34//#define DEBUG
35#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
36
37#include <linux/types.h>
38#include <linux/kernel.h>
39#include <linux/mm.h>
Xavier Deguillardf220a802015-08-06 15:17:58 -070040#include <linux/vmalloc.h>
Dmitry Torokhov453dc652010-04-23 13:18:08 -040041#include <linux/sched.h>
42#include <linux/module.h>
43#include <linux/workqueue.h>
44#include <linux/debugfs.h>
45#include <linux/seq_file.h>
Philip P. Moltmann48e3d662015-08-06 15:18:01 -070046#include <linux/vmw_vmci_defs.h>
47#include <linux/vmw_vmci_api.h>
Nadav Amit460f8132018-09-13 13:18:52 -070048#include <linux/io.h>
H. Peter Anvina10a5692010-05-09 01:13:42 -070049#include <asm/hypervisor.h>
Dmitry Torokhov453dc652010-04-23 13:18:08 -040050
51MODULE_AUTHOR("VMware, Inc.");
52MODULE_DESCRIPTION("VMware Memory Control (Balloon) Driver");
Philip P. Moltmann48e3d662015-08-06 15:18:01 -070053MODULE_VERSION("1.5.0.0-k");
Dmitry Torokhov453dc652010-04-23 13:18:08 -040054MODULE_ALIAS("dmi:*:svnVMware*:*");
55MODULE_ALIAS("vmware_vmmemctl");
56MODULE_LICENSE("GPL");
57
58/*
59 * Various constants controlling rate of inflaint/deflating balloon,
60 * measured in pages.
61 */
62
63/*
Dmitry Torokhov453dc652010-04-23 13:18:08 -040064 * Rates of memory allocaton when guest experiences memory pressure
65 * (driver performs sleeping allocations).
66 */
67#define VMW_BALLOON_RATE_ALLOC_MIN 512U
68#define VMW_BALLOON_RATE_ALLOC_MAX 2048U
69#define VMW_BALLOON_RATE_ALLOC_INC 16U
70
71/*
Dmitry Torokhov453dc652010-04-23 13:18:08 -040072 * When guest is under memory pressure, use a reduced page allocation
73 * rate for next several cycles.
74 */
75#define VMW_BALLOON_SLOW_CYCLES 4
76
77/*
78 * Use __GFP_HIGHMEM to allow pages from HIGHMEM zone. We don't
Mel Gorman71baba42015-11-06 16:28:28 -080079 * allow wait (__GFP_RECLAIM) for NOSLEEP page allocations. Use
Dmitry Torokhov453dc652010-04-23 13:18:08 -040080 * __GFP_NOWARN, to suppress page allocation failure warnings.
81 */
82#define VMW_PAGE_ALLOC_NOSLEEP (__GFP_HIGHMEM|__GFP_NOWARN)
83
84/*
85 * Use GFP_HIGHUSER when executing in a separate kernel thread
86 * context and allocation can sleep. This is less stressful to
87 * the guest memory system, since it allows the thread to block
88 * while memory is reclaimed, and won't take pages from emergency
89 * low-memory pools.
90 */
91#define VMW_PAGE_ALLOC_CANSLEEP (GFP_HIGHUSER)
92
Dmitry Torokhov55adaa42010-06-04 14:14:52 -070093/* Maximum number of refused pages we accumulate during inflation cycle */
94#define VMW_BALLOON_MAX_REFUSED 16
Dmitry Torokhov453dc652010-04-23 13:18:08 -040095
96/*
97 * Hypervisor communication port definitions.
98 */
99#define VMW_BALLOON_HV_PORT 0x5670
100#define VMW_BALLOON_HV_MAGIC 0x456c6d6f
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400101#define VMW_BALLOON_GUEST_ID 1 /* Linux */
102
Xavier Deguillardeb79100f2015-06-12 11:43:23 -0700103enum vmwballoon_capabilities {
104 /*
105 * Bit 0 is reserved and not associated to any capability.
106 */
Philip P. Moltmann48e3d662015-08-06 15:18:01 -0700107 VMW_BALLOON_BASIC_CMDS = (1 << 1),
108 VMW_BALLOON_BATCHED_CMDS = (1 << 2),
109 VMW_BALLOON_BATCHED_2M_CMDS = (1 << 3),
110 VMW_BALLOON_SIGNALLED_WAKEUP_CMD = (1 << 4),
Xavier Deguillardeb79100f2015-06-12 11:43:23 -0700111};
112
Xavier Deguillardf220a802015-08-06 15:17:58 -0700113#define VMW_BALLOON_CAPABILITIES (VMW_BALLOON_BASIC_CMDS \
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700114 | VMW_BALLOON_BATCHED_CMDS \
Philip P. Moltmann48e3d662015-08-06 15:18:01 -0700115 | VMW_BALLOON_BATCHED_2M_CMDS \
116 | VMW_BALLOON_SIGNALLED_WAKEUP_CMD)
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700117
118#define VMW_BALLOON_2M_SHIFT (9)
119#define VMW_BALLOON_NUM_PAGE_SIZES (2)
Xavier Deguillardeb79100f2015-06-12 11:43:23 -0700120
Xavier Deguillardf220a802015-08-06 15:17:58 -0700121/*
122 * Backdoor commands availability:
123 *
124 * START, GET_TARGET and GUEST_ID are always available,
125 *
126 * VMW_BALLOON_BASIC_CMDS:
127 * LOCK and UNLOCK commands,
128 * VMW_BALLOON_BATCHED_CMDS:
129 * BATCHED_LOCK and BATCHED_UNLOCK commands.
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700130 * VMW BALLOON_BATCHED_2M_CMDS:
Philip P. Moltmann48e3d662015-08-06 15:18:01 -0700131 * BATCHED_2M_LOCK and BATCHED_2M_UNLOCK commands,
132 * VMW VMW_BALLOON_SIGNALLED_WAKEUP_CMD:
133 * VMW_BALLOON_CMD_VMCI_DOORBELL_SET command.
Xavier Deguillardf220a802015-08-06 15:17:58 -0700134 */
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700135#define VMW_BALLOON_CMD_START 0
136#define VMW_BALLOON_CMD_GET_TARGET 1
137#define VMW_BALLOON_CMD_LOCK 2
138#define VMW_BALLOON_CMD_UNLOCK 3
139#define VMW_BALLOON_CMD_GUEST_ID 4
140#define VMW_BALLOON_CMD_BATCHED_LOCK 6
141#define VMW_BALLOON_CMD_BATCHED_UNLOCK 7
142#define VMW_BALLOON_CMD_BATCHED_2M_LOCK 8
143#define VMW_BALLOON_CMD_BATCHED_2M_UNLOCK 9
Philip P. Moltmann48e3d662015-08-06 15:18:01 -0700144#define VMW_BALLOON_CMD_VMCI_DOORBELL_SET 10
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700145
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400146
147/* error codes */
Xavier Deguillardeb79100f2015-06-12 11:43:23 -0700148#define VMW_BALLOON_SUCCESS 0
149#define VMW_BALLOON_FAILURE -1
150#define VMW_BALLOON_ERROR_CMD_INVALID 1
151#define VMW_BALLOON_ERROR_PPN_INVALID 2
152#define VMW_BALLOON_ERROR_PPN_LOCKED 3
153#define VMW_BALLOON_ERROR_PPN_UNLOCKED 4
154#define VMW_BALLOON_ERROR_PPN_PINNED 5
155#define VMW_BALLOON_ERROR_PPN_NOTNEEDED 6
156#define VMW_BALLOON_ERROR_RESET 7
157#define VMW_BALLOON_ERROR_BUSY 8
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400158
Xavier Deguillardeb79100f2015-06-12 11:43:23 -0700159#define VMW_BALLOON_SUCCESS_WITH_CAPABILITIES (0x03000000)
160
Xavier Deguillardf220a802015-08-06 15:17:58 -0700161/* Batch page description */
162
163/*
164 * Layout of a page in the batch page:
165 *
166 * +-------------+----------+--------+
167 * | | | |
168 * | Page number | Reserved | Status |
169 * | | | |
170 * +-------------+----------+--------+
171 * 64 PAGE_SHIFT 6 0
172 *
Xavier Deguillardf220a802015-08-06 15:17:58 -0700173 * The reserved field should be set to 0.
174 */
175#define VMW_BALLOON_BATCH_MAX_PAGES (PAGE_SIZE / sizeof(u64))
176#define VMW_BALLOON_BATCH_STATUS_MASK ((1UL << 5) - 1)
177#define VMW_BALLOON_BATCH_PAGE_MASK (~((1UL << PAGE_SHIFT) - 1))
178
179struct vmballoon_batch_page {
180 u64 pages[VMW_BALLOON_BATCH_MAX_PAGES];
181};
182
183static u64 vmballoon_batch_get_pa(struct vmballoon_batch_page *batch, int idx)
184{
185 return batch->pages[idx] & VMW_BALLOON_BATCH_PAGE_MASK;
186}
187
188static int vmballoon_batch_get_status(struct vmballoon_batch_page *batch,
189 int idx)
190{
191 return (int)(batch->pages[idx] & VMW_BALLOON_BATCH_STATUS_MASK);
192}
193
194static void vmballoon_batch_set_pa(struct vmballoon_batch_page *batch, int idx,
195 u64 pa)
196{
197 batch->pages[idx] = pa;
198}
199
200
201#define VMWARE_BALLOON_CMD(cmd, arg1, arg2, result) \
Xavier Deguillardeb79100f2015-06-12 11:43:23 -0700202({ \
Xavier Deguillardf220a802015-08-06 15:17:58 -0700203 unsigned long __status, __dummy1, __dummy2, __dummy3; \
Xavier Deguillardeb79100f2015-06-12 11:43:23 -0700204 __asm__ __volatile__ ("inl %%dx" : \
205 "=a"(__status), \
206 "=c"(__dummy1), \
207 "=d"(__dummy2), \
Xavier Deguillardf220a802015-08-06 15:17:58 -0700208 "=b"(result), \
209 "=S" (__dummy3) : \
Xavier Deguillardeb79100f2015-06-12 11:43:23 -0700210 "0"(VMW_BALLOON_HV_MAGIC), \
211 "1"(VMW_BALLOON_CMD_##cmd), \
212 "2"(VMW_BALLOON_HV_PORT), \
Xavier Deguillardf220a802015-08-06 15:17:58 -0700213 "3"(arg1), \
214 "4" (arg2) : \
Xavier Deguillardeb79100f2015-06-12 11:43:23 -0700215 "memory"); \
216 if (VMW_BALLOON_CMD_##cmd == VMW_BALLOON_CMD_START) \
217 result = __dummy1; \
218 result &= -1UL; \
219 __status & -1UL; \
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400220})
221
222#ifdef CONFIG_DEBUG_FS
223struct vmballoon_stats {
224 unsigned int timer;
Philip P. Moltmann48e3d662015-08-06 15:18:01 -0700225 unsigned int doorbell;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400226
Rakib Mullick2ca02df2011-11-02 13:40:07 -0700227 /* allocation statistics */
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700228 unsigned int alloc[VMW_BALLOON_NUM_PAGE_SIZES];
229 unsigned int alloc_fail[VMW_BALLOON_NUM_PAGE_SIZES];
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400230 unsigned int sleep_alloc;
231 unsigned int sleep_alloc_fail;
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700232 unsigned int refused_alloc[VMW_BALLOON_NUM_PAGE_SIZES];
233 unsigned int refused_free[VMW_BALLOON_NUM_PAGE_SIZES];
234 unsigned int free[VMW_BALLOON_NUM_PAGE_SIZES];
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400235
236 /* monitor operations */
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700237 unsigned int lock[VMW_BALLOON_NUM_PAGE_SIZES];
238 unsigned int lock_fail[VMW_BALLOON_NUM_PAGE_SIZES];
239 unsigned int unlock[VMW_BALLOON_NUM_PAGE_SIZES];
240 unsigned int unlock_fail[VMW_BALLOON_NUM_PAGE_SIZES];
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400241 unsigned int target;
242 unsigned int target_fail;
243 unsigned int start;
244 unsigned int start_fail;
245 unsigned int guest_type;
246 unsigned int guest_type_fail;
Philip P. Moltmann48e3d662015-08-06 15:18:01 -0700247 unsigned int doorbell_set;
248 unsigned int doorbell_unset;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400249};
250
251#define STATS_INC(stat) (stat)++
252#else
253#define STATS_INC(stat)
254#endif
255
Xavier Deguillardf220a802015-08-06 15:17:58 -0700256struct vmballoon;
257
258struct vmballoon_ops {
259 void (*add_page)(struct vmballoon *b, int idx, struct page *p);
Xavier Deguillard4670de42015-08-06 15:17:59 -0700260 int (*lock)(struct vmballoon *b, unsigned int num_pages,
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700261 bool is_2m_pages, unsigned int *target);
Xavier Deguillard4670de42015-08-06 15:17:59 -0700262 int (*unlock)(struct vmballoon *b, unsigned int num_pages,
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700263 bool is_2m_pages, unsigned int *target);
Xavier Deguillardf220a802015-08-06 15:17:58 -0700264};
265
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700266struct vmballoon_page_size {
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400267 /* list of reserved physical pages */
268 struct list_head pages;
269
270 /* transient list of non-balloonable pages */
271 struct list_head refused_pages;
Dmitry Torokhov55adaa42010-06-04 14:14:52 -0700272 unsigned int n_refused_pages;
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700273};
274
275struct vmballoon {
276 struct vmballoon_page_size page_sizes[VMW_BALLOON_NUM_PAGE_SIZES];
277
278 /* supported page sizes. 1 == 4k pages only, 2 == 4k and 2m pages */
279 unsigned supported_page_sizes;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400280
281 /* balloon size in pages */
282 unsigned int size;
283 unsigned int target;
284
285 /* reset flag */
286 bool reset_required;
287
288 /* adjustment rates (pages per second) */
289 unsigned int rate_alloc;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400290
291 /* slowdown page allocations for next few cycles */
292 unsigned int slow_allocation_cycles;
293
Xavier Deguillardf220a802015-08-06 15:17:58 -0700294 unsigned long capabilities;
295
296 struct vmballoon_batch_page *batch_page;
297 unsigned int batch_max_pages;
298 struct page *page;
299
300 const struct vmballoon_ops *ops;
301
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400302#ifdef CONFIG_DEBUG_FS
303 /* statistics */
304 struct vmballoon_stats stats;
305
306 /* debugfs file exporting statistics */
307 struct dentry *dbg_entry;
308#endif
309
310 struct sysinfo sysinfo;
311
312 struct delayed_work dwork;
Philip P. Moltmann48e3d662015-08-06 15:18:01 -0700313
314 struct vmci_handle vmci_doorbell;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400315};
316
317static struct vmballoon balloon;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400318
319/*
320 * Send "start" command to the host, communicating supported version
321 * of the protocol.
322 */
Xavier Deguillardf220a802015-08-06 15:17:58 -0700323static bool vmballoon_send_start(struct vmballoon *b, unsigned long req_caps)
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400324{
Xavier Deguillardf220a802015-08-06 15:17:58 -0700325 unsigned long status, capabilities, dummy = 0;
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700326 bool success;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400327
328 STATS_INC(b->stats.start);
329
Xavier Deguillardf220a802015-08-06 15:17:58 -0700330 status = VMWARE_BALLOON_CMD(START, req_caps, dummy, capabilities);
331
332 switch (status) {
333 case VMW_BALLOON_SUCCESS_WITH_CAPABILITIES:
334 b->capabilities = capabilities;
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700335 success = true;
336 break;
Xavier Deguillardf220a802015-08-06 15:17:58 -0700337 case VMW_BALLOON_SUCCESS:
338 b->capabilities = VMW_BALLOON_BASIC_CMDS;
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700339 success = true;
340 break;
341 default:
342 success = false;
Xavier Deguillardf220a802015-08-06 15:17:58 -0700343 }
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400344
Nadav Amitfa511772018-06-19 16:00:25 -0700345 /*
346 * 2MB pages are only supported with batching. If batching is for some
347 * reason disabled, do not use 2MB pages, since otherwise the legacy
348 * mechanism is used with 2MB pages, causing a failure.
349 */
350 if ((b->capabilities & VMW_BALLOON_BATCHED_2M_CMDS) &&
351 (b->capabilities & VMW_BALLOON_BATCHED_CMDS))
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700352 b->supported_page_sizes = 2;
353 else
354 b->supported_page_sizes = 1;
355
356 if (!success) {
357 pr_debug("%s - failed, hv returns %ld\n", __func__, status);
358 STATS_INC(b->stats.start_fail);
359 }
360 return success;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400361}
362
363static bool vmballoon_check_status(struct vmballoon *b, unsigned long status)
364{
365 switch (status) {
366 case VMW_BALLOON_SUCCESS:
367 return true;
368
369 case VMW_BALLOON_ERROR_RESET:
370 b->reset_required = true;
371 /* fall through */
372
373 default:
374 return false;
375 }
376}
377
378/*
379 * Communicate guest type to the host so that it can adjust ballooning
380 * algorithm to the one most appropriate for the guest. This command
381 * is normally issued after sending "start" command and is part of
382 * standard reset sequence.
383 */
384static bool vmballoon_send_guest_id(struct vmballoon *b)
385{
Xavier Deguillardf220a802015-08-06 15:17:58 -0700386 unsigned long status, dummy = 0;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400387
Xavier Deguillardf220a802015-08-06 15:17:58 -0700388 status = VMWARE_BALLOON_CMD(GUEST_ID, VMW_BALLOON_GUEST_ID, dummy,
389 dummy);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400390
391 STATS_INC(b->stats.guest_type);
392
393 if (vmballoon_check_status(b, status))
394 return true;
395
396 pr_debug("%s - failed, hv returns %ld\n", __func__, status);
397 STATS_INC(b->stats.guest_type_fail);
398 return false;
399}
400
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700401static u16 vmballoon_page_size(bool is_2m_page)
402{
403 if (is_2m_page)
404 return 1 << VMW_BALLOON_2M_SHIFT;
405
406 return 1;
407}
408
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400409/*
410 * Retrieve desired balloon size from the host.
411 */
412static bool vmballoon_send_get_target(struct vmballoon *b, u32 *new_target)
413{
414 unsigned long status;
415 unsigned long target;
416 unsigned long limit;
Xavier Deguillardf220a802015-08-06 15:17:58 -0700417 unsigned long dummy = 0;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400418 u32 limit32;
419
420 /*
421 * si_meminfo() is cheap. Moreover, we want to provide dynamic
422 * max balloon size later. So let us call si_meminfo() every
423 * iteration.
424 */
425 si_meminfo(&b->sysinfo);
426 limit = b->sysinfo.totalram;
427
428 /* Ensure limit fits in 32-bits */
429 limit32 = (u32)limit;
430 if (limit != limit32)
431 return false;
432
433 /* update stats */
434 STATS_INC(b->stats.target);
435
Xavier Deguillardf220a802015-08-06 15:17:58 -0700436 status = VMWARE_BALLOON_CMD(GET_TARGET, limit, dummy, target);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400437 if (vmballoon_check_status(b, status)) {
438 *new_target = target;
439 return true;
440 }
441
442 pr_debug("%s - failed, hv returns %ld\n", __func__, status);
443 STATS_INC(b->stats.target_fail);
444 return false;
445}
446
447/*
448 * Notify the host about allocated page so that host can use it without
449 * fear that guest will need it. Host may reject some pages, we need to
450 * check the return value and maybe submit a different page.
451 */
Danny Kukawka3e5ba462012-01-30 23:00:08 +0100452static int vmballoon_send_lock_page(struct vmballoon *b, unsigned long pfn,
Xavier Deguillard4670de42015-08-06 15:17:59 -0700453 unsigned int *hv_status, unsigned int *target)
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400454{
Xavier Deguillardf220a802015-08-06 15:17:58 -0700455 unsigned long status, dummy = 0;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400456 u32 pfn32;
457
458 pfn32 = (u32)pfn;
459 if (pfn32 != pfn)
Nadav Amit0e0dd1a2018-06-19 16:00:24 -0700460 return -EINVAL;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400461
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700462 STATS_INC(b->stats.lock[false]);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400463
Xavier Deguillard4670de42015-08-06 15:17:59 -0700464 *hv_status = status = VMWARE_BALLOON_CMD(LOCK, pfn, dummy, *target);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400465 if (vmballoon_check_status(b, status))
Danny Kukawka3e5ba462012-01-30 23:00:08 +0100466 return 0;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400467
468 pr_debug("%s - ppn %lx, hv returns %ld\n", __func__, pfn, status);
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700469 STATS_INC(b->stats.lock_fail[false]);
Nadav Amit0e0dd1a2018-06-19 16:00:24 -0700470 return -EIO;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400471}
472
Xavier Deguillardf220a802015-08-06 15:17:58 -0700473static int vmballoon_send_batched_lock(struct vmballoon *b,
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700474 unsigned int num_pages, bool is_2m_pages, unsigned int *target)
Xavier Deguillardf220a802015-08-06 15:17:58 -0700475{
Xavier Deguillard4670de42015-08-06 15:17:59 -0700476 unsigned long status;
Nadav Amit63c003e2018-07-02 19:27:13 -0700477 unsigned long pfn = PHYS_PFN(virt_to_phys(b->batch_page));
Xavier Deguillardf220a802015-08-06 15:17:58 -0700478
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700479 STATS_INC(b->stats.lock[is_2m_pages]);
Xavier Deguillardf220a802015-08-06 15:17:58 -0700480
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700481 if (is_2m_pages)
482 status = VMWARE_BALLOON_CMD(BATCHED_2M_LOCK, pfn, num_pages,
483 *target);
484 else
485 status = VMWARE_BALLOON_CMD(BATCHED_LOCK, pfn, num_pages,
486 *target);
487
Xavier Deguillardf220a802015-08-06 15:17:58 -0700488 if (vmballoon_check_status(b, status))
489 return 0;
490
491 pr_debug("%s - batch ppn %lx, hv returns %ld\n", __func__, pfn, status);
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700492 STATS_INC(b->stats.lock_fail[is_2m_pages]);
Xavier Deguillardf220a802015-08-06 15:17:58 -0700493 return 1;
494}
495
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400496/*
497 * Notify the host that guest intends to release given page back into
498 * the pool of available (to the guest) pages.
499 */
Xavier Deguillard4670de42015-08-06 15:17:59 -0700500static bool vmballoon_send_unlock_page(struct vmballoon *b, unsigned long pfn,
501 unsigned int *target)
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400502{
Xavier Deguillardf220a802015-08-06 15:17:58 -0700503 unsigned long status, dummy = 0;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400504 u32 pfn32;
505
506 pfn32 = (u32)pfn;
507 if (pfn32 != pfn)
508 return false;
509
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700510 STATS_INC(b->stats.unlock[false]);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400511
Xavier Deguillard4670de42015-08-06 15:17:59 -0700512 status = VMWARE_BALLOON_CMD(UNLOCK, pfn, dummy, *target);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400513 if (vmballoon_check_status(b, status))
514 return true;
515
516 pr_debug("%s - ppn %lx, hv returns %ld\n", __func__, pfn, status);
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700517 STATS_INC(b->stats.unlock_fail[false]);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400518 return false;
519}
520
Xavier Deguillardf220a802015-08-06 15:17:58 -0700521static bool vmballoon_send_batched_unlock(struct vmballoon *b,
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700522 unsigned int num_pages, bool is_2m_pages, unsigned int *target)
Xavier Deguillardf220a802015-08-06 15:17:58 -0700523{
Xavier Deguillard4670de42015-08-06 15:17:59 -0700524 unsigned long status;
Nadav Amit63c003e2018-07-02 19:27:13 -0700525 unsigned long pfn = PHYS_PFN(virt_to_phys(b->batch_page));
Xavier Deguillardf220a802015-08-06 15:17:58 -0700526
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700527 STATS_INC(b->stats.unlock[is_2m_pages]);
Xavier Deguillardf220a802015-08-06 15:17:58 -0700528
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700529 if (is_2m_pages)
530 status = VMWARE_BALLOON_CMD(BATCHED_2M_UNLOCK, pfn, num_pages,
531 *target);
532 else
533 status = VMWARE_BALLOON_CMD(BATCHED_UNLOCK, pfn, num_pages,
534 *target);
535
Xavier Deguillardf220a802015-08-06 15:17:58 -0700536 if (vmballoon_check_status(b, status))
537 return true;
538
539 pr_debug("%s - batch ppn %lx, hv returns %ld\n", __func__, pfn, status);
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700540 STATS_INC(b->stats.unlock_fail[is_2m_pages]);
Xavier Deguillardf220a802015-08-06 15:17:58 -0700541 return false;
542}
543
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700544static struct page *vmballoon_alloc_page(gfp_t flags, bool is_2m_page)
545{
546 if (is_2m_page)
547 return alloc_pages(flags, VMW_BALLOON_2M_SHIFT);
548
549 return alloc_page(flags);
550}
551
552static void vmballoon_free_page(struct page *page, bool is_2m_page)
553{
554 if (is_2m_page)
555 __free_pages(page, VMW_BALLOON_2M_SHIFT);
556 else
557 __free_page(page);
558}
559
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400560/*
561 * Quickly release all pages allocated for the balloon. This function is
562 * called when host decides to "reset" balloon for one reason or another.
563 * Unlike normal "deflate" we do not (shall not) notify host of the pages
564 * being released.
565 */
566static void vmballoon_pop(struct vmballoon *b)
567{
568 struct page *page, *next;
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700569 unsigned is_2m_pages;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400570
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700571 for (is_2m_pages = 0; is_2m_pages < VMW_BALLOON_NUM_PAGE_SIZES;
572 is_2m_pages++) {
573 struct vmballoon_page_size *page_size =
574 &b->page_sizes[is_2m_pages];
575 u16 size_per_page = vmballoon_page_size(is_2m_pages);
576
577 list_for_each_entry_safe(page, next, &page_size->pages, lru) {
578 list_del(&page->lru);
579 vmballoon_free_page(page, is_2m_pages);
580 STATS_INC(b->stats.free[is_2m_pages]);
581 b->size -= size_per_page;
582 cond_resched();
583 }
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400584 }
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400585
Gil Kupferd9bc59c2018-06-01 00:47:47 -0700586 /* Clearing the batch_page unconditionally has no adverse effect */
587 free_page((unsigned long)b->batch_page);
588 b->batch_page = NULL;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400589}
590
591/*
Xavier Deguillardef0f8f12015-06-12 11:43:22 -0700592 * Notify the host of a ballooned page. If host rejects the page put it on the
593 * refuse list, those refused page are then released at the end of the
594 * inflation cycle.
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400595 */
Xavier Deguillard4670de42015-08-06 15:17:59 -0700596static int vmballoon_lock_page(struct vmballoon *b, unsigned int num_pages,
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700597 bool is_2m_pages, unsigned int *target)
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400598{
Xavier Deguillardef0f8f12015-06-12 11:43:22 -0700599 int locked, hv_status;
Xavier Deguillardf220a802015-08-06 15:17:58 -0700600 struct page *page = b->page;
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700601 struct vmballoon_page_size *page_size = &b->page_sizes[false];
602
603 /* is_2m_pages can never happen as 2m pages support implies batching */
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400604
Xavier Deguillard4670de42015-08-06 15:17:59 -0700605 locked = vmballoon_send_lock_page(b, page_to_pfn(page), &hv_status,
606 target);
Nadav Amit0e0dd1a2018-06-19 16:00:24 -0700607 if (locked) {
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700608 STATS_INC(b->stats.refused_alloc[false]);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400609
Nadav Amit0e0dd1a2018-06-19 16:00:24 -0700610 if (locked == -EIO &&
611 (hv_status == VMW_BALLOON_ERROR_RESET ||
612 hv_status == VMW_BALLOON_ERROR_PPN_NOTNEEDED)) {
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700613 vmballoon_free_page(page, false);
Xavier Deguillardef0f8f12015-06-12 11:43:22 -0700614 return -EIO;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400615 }
616
Xavier Deguillardef0f8f12015-06-12 11:43:22 -0700617 /*
618 * Place page on the list of non-balloonable pages
619 * and retry allocation, unless we already accumulated
620 * too many of them, in which case take a breather.
621 */
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700622 if (page_size->n_refused_pages < VMW_BALLOON_MAX_REFUSED) {
623 page_size->n_refused_pages++;
624 list_add(&page->lru, &page_size->refused_pages);
Xavier Deguillardef0f8f12015-06-12 11:43:22 -0700625 } else {
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700626 vmballoon_free_page(page, false);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400627 }
Nadav Amit0e0dd1a2018-06-19 16:00:24 -0700628 return locked;
Xavier Deguillardef0f8f12015-06-12 11:43:22 -0700629 }
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400630
631 /* track allocated page */
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700632 list_add(&page->lru, &page_size->pages);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400633
634 /* update balloon size */
635 b->size++;
636
637 return 0;
638}
639
Xavier Deguillardf220a802015-08-06 15:17:58 -0700640static int vmballoon_lock_batched_page(struct vmballoon *b,
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700641 unsigned int num_pages, bool is_2m_pages, unsigned int *target)
Xavier Deguillardf220a802015-08-06 15:17:58 -0700642{
643 int locked, i;
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700644 u16 size_per_page = vmballoon_page_size(is_2m_pages);
Xavier Deguillardf220a802015-08-06 15:17:58 -0700645
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700646 locked = vmballoon_send_batched_lock(b, num_pages, is_2m_pages,
647 target);
Xavier Deguillardf220a802015-08-06 15:17:58 -0700648 if (locked > 0) {
649 for (i = 0; i < num_pages; i++) {
650 u64 pa = vmballoon_batch_get_pa(b->batch_page, i);
651 struct page *p = pfn_to_page(pa >> PAGE_SHIFT);
652
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700653 vmballoon_free_page(p, is_2m_pages);
Xavier Deguillardf220a802015-08-06 15:17:58 -0700654 }
655
656 return -EIO;
657 }
658
659 for (i = 0; i < num_pages; i++) {
660 u64 pa = vmballoon_batch_get_pa(b->batch_page, i);
661 struct page *p = pfn_to_page(pa >> PAGE_SHIFT);
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700662 struct vmballoon_page_size *page_size =
663 &b->page_sizes[is_2m_pages];
Xavier Deguillardf220a802015-08-06 15:17:58 -0700664
665 locked = vmballoon_batch_get_status(b->batch_page, i);
666
667 switch (locked) {
668 case VMW_BALLOON_SUCCESS:
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700669 list_add(&p->lru, &page_size->pages);
670 b->size += size_per_page;
Xavier Deguillardf220a802015-08-06 15:17:58 -0700671 break;
672 case VMW_BALLOON_ERROR_PPN_PINNED:
673 case VMW_BALLOON_ERROR_PPN_INVALID:
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700674 if (page_size->n_refused_pages
675 < VMW_BALLOON_MAX_REFUSED) {
676 list_add(&p->lru, &page_size->refused_pages);
677 page_size->n_refused_pages++;
Xavier Deguillardf220a802015-08-06 15:17:58 -0700678 break;
679 }
680 /* Fallthrough */
681 case VMW_BALLOON_ERROR_RESET:
682 case VMW_BALLOON_ERROR_PPN_NOTNEEDED:
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700683 vmballoon_free_page(p, is_2m_pages);
Xavier Deguillardf220a802015-08-06 15:17:58 -0700684 break;
685 default:
686 /* This should never happen */
687 WARN_ON_ONCE(true);
688 }
689 }
690
691 return 0;
692}
693
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400694/*
695 * Release the page allocated for the balloon. Note that we first notify
696 * the host so it can make sure the page will be available for the guest
697 * to use, if needed.
698 */
Xavier Deguillard4670de42015-08-06 15:17:59 -0700699static int vmballoon_unlock_page(struct vmballoon *b, unsigned int num_pages,
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700700 bool is_2m_pages, unsigned int *target)
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400701{
Xavier Deguillardf220a802015-08-06 15:17:58 -0700702 struct page *page = b->page;
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700703 struct vmballoon_page_size *page_size = &b->page_sizes[false];
704
705 /* is_2m_pages can never happen as 2m pages support implies batching */
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400706
Xavier Deguillard4670de42015-08-06 15:17:59 -0700707 if (!vmballoon_send_unlock_page(b, page_to_pfn(page), target)) {
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700708 list_add(&page->lru, &page_size->pages);
Xavier Deguillardf220a802015-08-06 15:17:58 -0700709 return -EIO;
710 }
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400711
712 /* deallocate page */
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700713 vmballoon_free_page(page, false);
714 STATS_INC(b->stats.free[false]);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400715
716 /* update balloon size */
717 b->size--;
718
719 return 0;
720}
721
Xavier Deguillardf220a802015-08-06 15:17:58 -0700722static int vmballoon_unlock_batched_page(struct vmballoon *b,
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700723 unsigned int num_pages, bool is_2m_pages,
724 unsigned int *target)
Xavier Deguillardf220a802015-08-06 15:17:58 -0700725{
726 int locked, i, ret = 0;
727 bool hv_success;
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700728 u16 size_per_page = vmballoon_page_size(is_2m_pages);
Xavier Deguillardf220a802015-08-06 15:17:58 -0700729
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700730 hv_success = vmballoon_send_batched_unlock(b, num_pages, is_2m_pages,
731 target);
Xavier Deguillardf220a802015-08-06 15:17:58 -0700732 if (!hv_success)
733 ret = -EIO;
734
735 for (i = 0; i < num_pages; i++) {
736 u64 pa = vmballoon_batch_get_pa(b->batch_page, i);
737 struct page *p = pfn_to_page(pa >> PAGE_SHIFT);
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700738 struct vmballoon_page_size *page_size =
739 &b->page_sizes[is_2m_pages];
Xavier Deguillardf220a802015-08-06 15:17:58 -0700740
741 locked = vmballoon_batch_get_status(b->batch_page, i);
742 if (!hv_success || locked != VMW_BALLOON_SUCCESS) {
743 /*
744 * That page wasn't successfully unlocked by the
745 * hypervisor, re-add it to the list of pages owned by
746 * the balloon driver.
747 */
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700748 list_add(&p->lru, &page_size->pages);
Xavier Deguillardf220a802015-08-06 15:17:58 -0700749 } else {
750 /* deallocate page */
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700751 vmballoon_free_page(p, is_2m_pages);
752 STATS_INC(b->stats.free[is_2m_pages]);
Xavier Deguillardf220a802015-08-06 15:17:58 -0700753
754 /* update balloon size */
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700755 b->size -= size_per_page;
Xavier Deguillardf220a802015-08-06 15:17:58 -0700756 }
757 }
758
759 return ret;
760}
761
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400762/*
763 * Release pages that were allocated while attempting to inflate the
764 * balloon but were refused by the host for one reason or another.
765 */
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700766static void vmballoon_release_refused_pages(struct vmballoon *b,
767 bool is_2m_pages)
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400768{
769 struct page *page, *next;
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700770 struct vmballoon_page_size *page_size =
771 &b->page_sizes[is_2m_pages];
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400772
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700773 list_for_each_entry_safe(page, next, &page_size->refused_pages, lru) {
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400774 list_del(&page->lru);
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700775 vmballoon_free_page(page, is_2m_pages);
776 STATS_INC(b->stats.refused_free[is_2m_pages]);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400777 }
Dmitry Torokhov55adaa42010-06-04 14:14:52 -0700778
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700779 page_size->n_refused_pages = 0;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400780}
781
Xavier Deguillardf220a802015-08-06 15:17:58 -0700782static void vmballoon_add_page(struct vmballoon *b, int idx, struct page *p)
783{
784 b->page = p;
785}
786
787static void vmballoon_add_batched_page(struct vmballoon *b, int idx,
788 struct page *p)
789{
790 vmballoon_batch_set_pa(b->batch_page, idx,
791 (u64)page_to_pfn(p) << PAGE_SHIFT);
792}
793
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400794/*
795 * Inflate the balloon towards its target size. Note that we try to limit
796 * the rate of allocation to make sure we are not choking the rest of the
797 * system.
798 */
799static void vmballoon_inflate(struct vmballoon *b)
800{
Philip P. Moltmann33d268e2015-08-06 15:18:01 -0700801 unsigned rate;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400802 unsigned int allocations = 0;
Xavier Deguillardf220a802015-08-06 15:17:58 -0700803 unsigned int num_pages = 0;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400804 int error = 0;
Xavier Deguillardef0f8f12015-06-12 11:43:22 -0700805 gfp_t flags = VMW_PAGE_ALLOC_NOSLEEP;
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700806 bool is_2m_pages;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400807
808 pr_debug("%s - size: %d, target %d\n", __func__, b->size, b->target);
809
810 /*
811 * First try NOSLEEP page allocations to inflate balloon.
812 *
813 * If we do not throttle nosleep allocations, we can drain all
814 * free pages in the guest quickly (if the balloon target is high).
815 * As a side-effect, draining free pages helps to inform (force)
816 * the guest to start swapping if balloon target is not met yet,
817 * which is a desired behavior. However, balloon driver can consume
818 * all available CPU cycles if too many pages are allocated in a
819 * second. Therefore, we throttle nosleep allocations even when
820 * the guest is not under memory pressure. OTOH, if we have already
821 * predicted that the guest is under memory pressure, then we
822 * slowdown page allocations considerably.
823 */
824
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400825 /*
826 * Start with no sleep allocation rate which may be higher
827 * than sleeping allocation rate.
828 */
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700829 if (b->slow_allocation_cycles) {
830 rate = b->rate_alloc;
831 is_2m_pages = false;
832 } else {
833 rate = UINT_MAX;
834 is_2m_pages =
835 b->supported_page_sizes == VMW_BALLOON_NUM_PAGE_SIZES;
836 }
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400837
Philip P. Moltmann33d268e2015-08-06 15:18:01 -0700838 pr_debug("%s - goal: %d, no-sleep rate: %u, sleep rate: %d\n",
Xavier Deguillard4670de42015-08-06 15:17:59 -0700839 __func__, b->target - b->size, rate, b->rate_alloc);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400840
Philip P. Moltmann33d268e2015-08-06 15:18:01 -0700841 while (!b->reset_required &&
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700842 b->size + num_pages * vmballoon_page_size(is_2m_pages)
843 < b->target) {
Xavier Deguillard4670de42015-08-06 15:17:59 -0700844 struct page *page;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400845
Xavier Deguillardef0f8f12015-06-12 11:43:22 -0700846 if (flags == VMW_PAGE_ALLOC_NOSLEEP)
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700847 STATS_INC(b->stats.alloc[is_2m_pages]);
Xavier Deguillardef0f8f12015-06-12 11:43:22 -0700848 else
849 STATS_INC(b->stats.sleep_alloc);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400850
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700851 page = vmballoon_alloc_page(flags, is_2m_pages);
Xavier Deguillardef0f8f12015-06-12 11:43:22 -0700852 if (!page) {
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700853 STATS_INC(b->stats.alloc_fail[is_2m_pages]);
854
855 if (is_2m_pages) {
856 b->ops->lock(b, num_pages, true, &b->target);
857
858 /*
859 * ignore errors from locking as we now switch
860 * to 4k pages and we might get different
861 * errors.
862 */
863
864 num_pages = 0;
865 is_2m_pages = false;
866 continue;
867 }
868
Xavier Deguillardef0f8f12015-06-12 11:43:22 -0700869 if (flags == VMW_PAGE_ALLOC_CANSLEEP) {
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400870 /*
871 * CANSLEEP page allocation failed, so guest
872 * is under severe memory pressure. Quickly
873 * decrease allocation rate.
874 */
875 b->rate_alloc = max(b->rate_alloc / 2,
876 VMW_BALLOON_RATE_ALLOC_MIN);
Xavier Deguillardef0f8f12015-06-12 11:43:22 -0700877 STATS_INC(b->stats.sleep_alloc_fail);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400878 break;
879 }
880
881 /*
882 * NOSLEEP page allocation failed, so the guest is
883 * under memory pressure. Let us slow down page
884 * allocations for next few cycles so that the guest
885 * gets out of memory pressure. Also, if we already
886 * allocated b->rate_alloc pages, let's pause,
887 * otherwise switch to sleeping allocations.
888 */
889 b->slow_allocation_cycles = VMW_BALLOON_SLOW_CYCLES;
890
Xavier Deguillard4670de42015-08-06 15:17:59 -0700891 if (allocations >= b->rate_alloc)
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400892 break;
893
Xavier Deguillardef0f8f12015-06-12 11:43:22 -0700894 flags = VMW_PAGE_ALLOC_CANSLEEP;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400895 /* Lower rate for sleeping allocations. */
896 rate = b->rate_alloc;
Xavier Deguillardef0f8f12015-06-12 11:43:22 -0700897 continue;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400898 }
899
Xavier Deguillardf220a802015-08-06 15:17:58 -0700900 b->ops->add_page(b, num_pages++, page);
901 if (num_pages == b->batch_max_pages) {
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700902 error = b->ops->lock(b, num_pages, is_2m_pages,
903 &b->target);
Xavier Deguillardf220a802015-08-06 15:17:58 -0700904 num_pages = 0;
905 if (error)
906 break;
907 }
Xavier Deguillardef0f8f12015-06-12 11:43:22 -0700908
Philip P. Moltmann33d268e2015-08-06 15:18:01 -0700909 cond_resched();
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400910
Xavier Deguillard4670de42015-08-06 15:17:59 -0700911 if (allocations >= rate) {
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400912 /* We allocated enough pages, let's take a break. */
913 break;
914 }
915 }
916
Xavier Deguillardf220a802015-08-06 15:17:58 -0700917 if (num_pages > 0)
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700918 b->ops->lock(b, num_pages, is_2m_pages, &b->target);
Xavier Deguillardf220a802015-08-06 15:17:58 -0700919
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400920 /*
921 * We reached our goal without failures so try increasing
922 * allocation rate.
923 */
Xavier Deguillard4670de42015-08-06 15:17:59 -0700924 if (error == 0 && allocations >= b->rate_alloc) {
925 unsigned int mult = allocations / b->rate_alloc;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400926
927 b->rate_alloc =
928 min(b->rate_alloc + mult * VMW_BALLOON_RATE_ALLOC_INC,
929 VMW_BALLOON_RATE_ALLOC_MAX);
930 }
931
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700932 vmballoon_release_refused_pages(b, true);
933 vmballoon_release_refused_pages(b, false);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400934}
935
936/*
937 * Decrease the size of the balloon allowing guest to use more memory.
938 */
939static void vmballoon_deflate(struct vmballoon *b)
940{
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700941 unsigned is_2m_pages;
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400942
Philip P. Moltmann33d268e2015-08-06 15:18:01 -0700943 pr_debug("%s - size: %d, target %d\n", __func__, b->size, b->target);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400944
945 /* free pages to reach target */
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700946 for (is_2m_pages = 0; is_2m_pages < b->supported_page_sizes;
947 is_2m_pages++) {
948 struct page *page, *next;
949 unsigned int num_pages = 0;
950 struct vmballoon_page_size *page_size =
951 &b->page_sizes[is_2m_pages];
Xavier Deguillardf220a802015-08-06 15:17:58 -0700952
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700953 list_for_each_entry_safe(page, next, &page_size->pages, lru) {
954 if (b->reset_required ||
955 (b->target > 0 &&
956 b->size - num_pages
957 * vmballoon_page_size(is_2m_pages)
958 < b->target + vmballoon_page_size(true)))
959 break;
Philip P. Moltmann33d268e2015-08-06 15:18:01 -0700960
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700961 list_del(&page->lru);
962 b->ops->add_page(b, num_pages++, page);
963
964 if (num_pages == b->batch_max_pages) {
965 int error;
966
967 error = b->ops->unlock(b, num_pages,
968 is_2m_pages, &b->target);
969 num_pages = 0;
970 if (error)
971 return;
972 }
973
974 cond_resched();
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400975 }
976
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -0700977 if (num_pages > 0)
978 b->ops->unlock(b, num_pages, is_2m_pages, &b->target);
Dmitry Torokhov453dc652010-04-23 13:18:08 -0400979 }
Xavier Deguillardf220a802015-08-06 15:17:58 -0700980}
981
982static const struct vmballoon_ops vmballoon_basic_ops = {
983 .add_page = vmballoon_add_page,
984 .lock = vmballoon_lock_page,
985 .unlock = vmballoon_unlock_page
986};
987
988static const struct vmballoon_ops vmballoon_batched_ops = {
989 .add_page = vmballoon_add_batched_page,
990 .lock = vmballoon_lock_batched_page,
991 .unlock = vmballoon_unlock_batched_page
992};
993
994static bool vmballoon_init_batching(struct vmballoon *b)
995{
Gil Kupferd9bc59c2018-06-01 00:47:47 -0700996 struct page *page;
997
998 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
999 if (!page)
Xavier Deguillardf220a802015-08-06 15:17:58 -07001000 return false;
1001
Gil Kupferd9bc59c2018-06-01 00:47:47 -07001002 b->batch_page = page_address(page);
Xavier Deguillardf220a802015-08-06 15:17:58 -07001003 return true;
1004}
1005
1006/*
Philip P. Moltmann48e3d662015-08-06 15:18:01 -07001007 * Receive notification and resize balloon
1008 */
1009static void vmballoon_doorbell(void *client_data)
1010{
1011 struct vmballoon *b = client_data;
1012
1013 STATS_INC(b->stats.doorbell);
1014
1015 mod_delayed_work(system_freezable_wq, &b->dwork, 0);
1016}
1017
1018/*
1019 * Clean up vmci doorbell
1020 */
1021static void vmballoon_vmci_cleanup(struct vmballoon *b)
1022{
1023 int error;
1024
1025 VMWARE_BALLOON_CMD(VMCI_DOORBELL_SET, VMCI_INVALID_ID,
1026 VMCI_INVALID_ID, error);
1027 STATS_INC(b->stats.doorbell_unset);
1028
1029 if (!vmci_handle_is_invalid(b->vmci_doorbell)) {
1030 vmci_doorbell_destroy(b->vmci_doorbell);
1031 b->vmci_doorbell = VMCI_INVALID_HANDLE;
1032 }
1033}
1034
1035/*
1036 * Initialize vmci doorbell, to get notified as soon as balloon changes
1037 */
1038static int vmballoon_vmci_init(struct vmballoon *b)
1039{
Nadav Amit18939742018-06-19 16:00:26 -07001040 unsigned long error, dummy;
Philip P. Moltmann48e3d662015-08-06 15:18:01 -07001041
Nadav Amit18939742018-06-19 16:00:26 -07001042 if ((b->capabilities & VMW_BALLOON_SIGNALLED_WAKEUP_CMD) == 0)
1043 return 0;
Philip P. Moltmann48e3d662015-08-06 15:18:01 -07001044
Nadav Amit18939742018-06-19 16:00:26 -07001045 error = vmci_doorbell_create(&b->vmci_doorbell, VMCI_FLAG_DELAYED_CB,
1046 VMCI_PRIVILEGE_FLAG_RESTRICTED,
1047 vmballoon_doorbell, b);
Philip P. Moltmann48e3d662015-08-06 15:18:01 -07001048
Nadav Amit18939742018-06-19 16:00:26 -07001049 if (error != VMCI_SUCCESS)
1050 goto fail;
Philip P. Moltmann48e3d662015-08-06 15:18:01 -07001051
Nadav Amit18939742018-06-19 16:00:26 -07001052 error = VMWARE_BALLOON_CMD(VMCI_DOORBELL_SET, b->vmci_doorbell.context,
1053 b->vmci_doorbell.resource, dummy);
1054
1055 STATS_INC(b->stats.doorbell_set);
1056
1057 if (error != VMW_BALLOON_SUCCESS)
1058 goto fail;
Philip P. Moltmann48e3d662015-08-06 15:18:01 -07001059
1060 return 0;
Nadav Amit18939742018-06-19 16:00:26 -07001061fail:
1062 vmballoon_vmci_cleanup(b);
1063 return -EIO;
Philip P. Moltmann48e3d662015-08-06 15:18:01 -07001064}
1065
1066/*
Xavier Deguillardf220a802015-08-06 15:17:58 -07001067 * Perform standard reset sequence by popping the balloon (in case it
1068 * is not empty) and then restarting protocol. This operation normally
1069 * happens when host responds with VMW_BALLOON_ERROR_RESET to a command.
1070 */
1071static void vmballoon_reset(struct vmballoon *b)
1072{
Philip P. Moltmann48e3d662015-08-06 15:18:01 -07001073 int error;
1074
1075 vmballoon_vmci_cleanup(b);
1076
Xavier Deguillardf220a802015-08-06 15:17:58 -07001077 /* free all pages, skipping monitor unlock */
1078 vmballoon_pop(b);
1079
1080 if (!vmballoon_send_start(b, VMW_BALLOON_CAPABILITIES))
1081 return;
1082
1083 if ((b->capabilities & VMW_BALLOON_BATCHED_CMDS) != 0) {
1084 b->ops = &vmballoon_batched_ops;
1085 b->batch_max_pages = VMW_BALLOON_BATCH_MAX_PAGES;
1086 if (!vmballoon_init_batching(b)) {
1087 /*
1088 * We failed to initialize batching, inform the monitor
1089 * about it by sending a null capability.
1090 *
1091 * The guest will retry in one second.
1092 */
1093 vmballoon_send_start(b, 0);
1094 return;
1095 }
1096 } else if ((b->capabilities & VMW_BALLOON_BASIC_CMDS) != 0) {
1097 b->ops = &vmballoon_basic_ops;
1098 b->batch_max_pages = 1;
1099 }
1100
1101 b->reset_required = false;
Philip P. Moltmann48e3d662015-08-06 15:18:01 -07001102
1103 error = vmballoon_vmci_init(b);
1104 if (error)
1105 pr_err("failed to initialize vmci doorbell\n");
1106
Xavier Deguillardf220a802015-08-06 15:17:58 -07001107 if (!vmballoon_send_guest_id(b))
1108 pr_err("failed to send guest ID to the host\n");
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001109}
1110
1111/*
1112 * Balloon work function: reset protocol, if needed, get the new size and
1113 * adjust balloon as needed. Repeat in 1 sec.
1114 */
1115static void vmballoon_work(struct work_struct *work)
1116{
1117 struct delayed_work *dwork = to_delayed_work(work);
1118 struct vmballoon *b = container_of(dwork, struct vmballoon, dwork);
1119 unsigned int target;
1120
1121 STATS_INC(b->stats.timer);
1122
1123 if (b->reset_required)
1124 vmballoon_reset(b);
1125
1126 if (b->slow_allocation_cycles > 0)
1127 b->slow_allocation_cycles--;
1128
Philip P. Moltmannd7568c12015-08-06 15:18:01 -07001129 if (!b->reset_required && vmballoon_send_get_target(b, &target)) {
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001130 /* update target, adjust size */
1131 b->target = target;
1132
1133 if (b->size < target)
1134 vmballoon_inflate(b);
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -07001135 else if (target == 0 ||
1136 b->size > target + vmballoon_page_size(true))
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001137 vmballoon_deflate(b);
1138 }
1139
Dmitry Torokhovbeda94d2011-07-26 16:08:56 -07001140 /*
1141 * We are using a freezable workqueue so that balloon operations are
1142 * stopped while the system transitions to/from sleep/hibernation.
1143 */
1144 queue_delayed_work(system_freezable_wq,
1145 dwork, round_jiffies_relative(HZ));
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001146}
1147
1148/*
1149 * DEBUGFS Interface
1150 */
1151#ifdef CONFIG_DEBUG_FS
1152
1153static int vmballoon_debug_show(struct seq_file *f, void *offset)
1154{
1155 struct vmballoon *b = f->private;
1156 struct vmballoon_stats *stats = &b->stats;
1157
Philip P. Moltmannb36e89d2015-08-06 15:18:00 -07001158 /* format capabilities info */
1159 seq_printf(f,
1160 "balloon capabilities: %#4x\n"
Philip P. Moltmannd7568c12015-08-06 15:18:01 -07001161 "used capabilities: %#4lx\n"
1162 "is resetting: %c\n",
1163 VMW_BALLOON_CAPABILITIES, b->capabilities,
1164 b->reset_required ? 'y' : 'n');
Philip P. Moltmannb36e89d2015-08-06 15:18:00 -07001165
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001166 /* format size info */
1167 seq_printf(f,
1168 "target: %8d pages\n"
1169 "current: %8d pages\n",
1170 b->target, b->size);
1171
1172 /* format rate info */
1173 seq_printf(f,
Philip P. Moltmann33d268e2015-08-06 15:18:01 -07001174 "rateSleepAlloc: %8d pages/sec\n",
1175 b->rate_alloc);
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001176
1177 seq_printf(f,
1178 "\n"
1179 "timer: %8u\n"
Philip P. Moltmann48e3d662015-08-06 15:18:01 -07001180 "doorbell: %8u\n"
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001181 "start: %8u (%4u failed)\n"
1182 "guestType: %8u (%4u failed)\n"
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -07001183 "2m-lock: %8u (%4u failed)\n"
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001184 "lock: %8u (%4u failed)\n"
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -07001185 "2m-unlock: %8u (%4u failed)\n"
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001186 "unlock: %8u (%4u failed)\n"
1187 "target: %8u (%4u failed)\n"
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -07001188 "prim2mAlloc: %8u (%4u failed)\n"
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001189 "primNoSleepAlloc: %8u (%4u failed)\n"
1190 "primCanSleepAlloc: %8u (%4u failed)\n"
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -07001191 "prim2mFree: %8u\n"
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001192 "primFree: %8u\n"
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -07001193 "err2mAlloc: %8u\n"
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001194 "errAlloc: %8u\n"
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -07001195 "err2mFree: %8u\n"
Philip P. Moltmann48e3d662015-08-06 15:18:01 -07001196 "errFree: %8u\n"
1197 "doorbellSet: %8u\n"
1198 "doorbellUnset: %8u\n",
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001199 stats->timer,
Philip P. Moltmann48e3d662015-08-06 15:18:01 -07001200 stats->doorbell,
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001201 stats->start, stats->start_fail,
1202 stats->guest_type, stats->guest_type_fail,
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -07001203 stats->lock[true], stats->lock_fail[true],
1204 stats->lock[false], stats->lock_fail[false],
1205 stats->unlock[true], stats->unlock_fail[true],
1206 stats->unlock[false], stats->unlock_fail[false],
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001207 stats->target, stats->target_fail,
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -07001208 stats->alloc[true], stats->alloc_fail[true],
1209 stats->alloc[false], stats->alloc_fail[false],
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001210 stats->sleep_alloc, stats->sleep_alloc_fail,
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -07001211 stats->free[true],
1212 stats->free[false],
1213 stats->refused_alloc[true], stats->refused_alloc[false],
Philip P. Moltmann48e3d662015-08-06 15:18:01 -07001214 stats->refused_free[true], stats->refused_free[false],
1215 stats->doorbell_set, stats->doorbell_unset);
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001216
1217 return 0;
1218}
1219
1220static int vmballoon_debug_open(struct inode *inode, struct file *file)
1221{
1222 return single_open(file, vmballoon_debug_show, inode->i_private);
1223}
1224
1225static const struct file_operations vmballoon_debug_fops = {
1226 .owner = THIS_MODULE,
1227 .open = vmballoon_debug_open,
1228 .read = seq_read,
1229 .llseek = seq_lseek,
1230 .release = single_release,
1231};
1232
1233static int __init vmballoon_debugfs_init(struct vmballoon *b)
1234{
1235 int error;
1236
1237 b->dbg_entry = debugfs_create_file("vmmemctl", S_IRUGO, NULL, b,
1238 &vmballoon_debug_fops);
1239 if (IS_ERR(b->dbg_entry)) {
1240 error = PTR_ERR(b->dbg_entry);
1241 pr_err("failed to create debugfs entry, error: %d\n", error);
1242 return error;
1243 }
1244
1245 return 0;
1246}
1247
1248static void __exit vmballoon_debugfs_exit(struct vmballoon *b)
1249{
1250 debugfs_remove(b->dbg_entry);
1251}
1252
1253#else
1254
1255static inline int vmballoon_debugfs_init(struct vmballoon *b)
1256{
1257 return 0;
1258}
1259
1260static inline void vmballoon_debugfs_exit(struct vmballoon *b)
1261{
1262}
1263
1264#endif /* CONFIG_DEBUG_FS */
1265
1266static int __init vmballoon_init(void)
1267{
1268 int error;
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -07001269 unsigned is_2m_pages;
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001270 /*
1271 * Check if we are running on VMware's hypervisor and bail out
1272 * if we are not.
1273 */
H. Peter Anvina10a5692010-05-09 01:13:42 -07001274 if (x86_hyper != &x86_hyper_vmware)
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001275 return -ENODEV;
1276
Philip P. Moltmann365bd7e2015-08-06 15:18:01 -07001277 for (is_2m_pages = 0; is_2m_pages < VMW_BALLOON_NUM_PAGE_SIZES;
1278 is_2m_pages++) {
1279 INIT_LIST_HEAD(&balloon.page_sizes[is_2m_pages].pages);
1280 INIT_LIST_HEAD(&balloon.page_sizes[is_2m_pages].refused_pages);
1281 }
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001282
1283 /* initialize rates */
1284 balloon.rate_alloc = VMW_BALLOON_RATE_ALLOC_MAX;
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001285
1286 INIT_DELAYED_WORK(&balloon.dwork, vmballoon_work);
1287
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001288 error = vmballoon_debugfs_init(&balloon);
1289 if (error)
Dmitry Torokhovbeda94d2011-07-26 16:08:56 -07001290 return error;
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001291
Philip P. Moltmann48e3d662015-08-06 15:18:01 -07001292 balloon.vmci_doorbell = VMCI_INVALID_HANDLE;
Philip P. Moltmannd7568c12015-08-06 15:18:01 -07001293 balloon.batch_page = NULL;
1294 balloon.page = NULL;
1295 balloon.reset_required = true;
1296
Dmitry Torokhovbeda94d2011-07-26 16:08:56 -07001297 queue_delayed_work(system_freezable_wq, &balloon.dwork, 0);
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001298
1299 return 0;
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001300}
Nadav Amit604c8012018-06-19 16:00:27 -07001301
1302/*
1303 * Using late_initcall() instead of module_init() allows the balloon to use the
1304 * VMCI doorbell even when the balloon is built into the kernel. Otherwise the
1305 * VMCI is probed only after the balloon is initialized. If the balloon is used
1306 * as a module, late_initcall() is equivalent to module_init().
1307 */
1308late_initcall(vmballoon_init);
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001309
1310static void __exit vmballoon_exit(void)
1311{
Philip P. Moltmann48e3d662015-08-06 15:18:01 -07001312 vmballoon_vmci_cleanup(&balloon);
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001313 cancel_delayed_work_sync(&balloon.dwork);
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001314
1315 vmballoon_debugfs_exit(&balloon);
1316
1317 /*
1318 * Deallocate all reserved memory, and reset connection with monitor.
1319 * Reset connection before deallocating memory to avoid potential for
1320 * additional spurious resets from guest touching deallocated pages.
1321 */
Philip P. Moltmannd7568c12015-08-06 15:18:01 -07001322 vmballoon_send_start(&balloon, 0);
Dmitry Torokhov453dc652010-04-23 13:18:08 -04001323 vmballoon_pop(&balloon);
1324}
1325module_exit(vmballoon_exit);