blob: ca873a3b98dbe6c81023be39f98da71565af598d [file] [log] [blame]
Thomas Gleixner43aa3132019-05-29 07:17:54 -07001// SPDX-License-Identifier: GPL-2.0-only
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08002/*
3 * Copyright (c) 2012, Microsoft Corporation.
4 *
5 * Author:
6 * K. Y. Srinivasan <kys@microsoft.com>
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08007 */
8
9#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10
11#include <linux/kernel.h>
K. Y. Srinivasanae339332014-04-23 13:53:39 -070012#include <linux/jiffies.h>
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -080013#include <linux/mman.h>
14#include <linux/delay.h>
15#include <linux/init.h>
16#include <linux/module.h>
17#include <linux/slab.h>
18#include <linux/kthread.h>
19#include <linux/completion.h>
20#include <linux/memory_hotplug.h>
21#include <linux/memory.h>
22#include <linux/notifier.h>
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -080023#include <linux/percpu_counter.h>
Sunil Muthuswamy6dc2a772021-03-23 18:47:16 +000024#include <linux/page_reporting.h>
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -080025
26#include <linux/hyperv.h>
Himadri Pandya2af5e7b2019-08-17 04:08:50 +000027#include <asm/hyperv-tlfs.h>
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -080028
Dexuan Cui25bd2b22019-11-19 23:16:05 -080029#include <asm/mshyperv.h>
30
Vitaly Kuznetsovcf21be92018-03-04 22:17:22 -070031#define CREATE_TRACE_POINTS
32#include "hv_trace_balloon.h"
33
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -080034/*
35 * We begin with definitions supporting the Dynamic Memory protocol
36 * with the host.
37 *
38 * Begin protocol definitions.
39 */
40
41
42
43/*
44 * Protocol versions. The low word is the minor version, the high word the major
45 * version.
46 *
47 * History:
48 * Initial version 1.0
49 * Changed to 0.1 on 2009/03/25
50 * Changes to 0.2 on 2009/05/14
51 * Changes to 0.3 on 2009/12/03
52 * Changed to 1.0 on 2011/04/05
53 */
54
55#define DYNMEM_MAKE_VERSION(Major, Minor) ((__u32)(((Major) << 16) | (Minor)))
56#define DYNMEM_MAJOR_VERSION(Version) ((__u32)(Version) >> 16)
57#define DYNMEM_MINOR_VERSION(Version) ((__u32)(Version) & 0xff)
58
59enum {
60 DYNMEM_PROTOCOL_VERSION_1 = DYNMEM_MAKE_VERSION(0, 3),
61 DYNMEM_PROTOCOL_VERSION_2 = DYNMEM_MAKE_VERSION(1, 0),
Alex Ngb6ddeae2015-08-01 16:08:13 -070062 DYNMEM_PROTOCOL_VERSION_3 = DYNMEM_MAKE_VERSION(2, 0),
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -080063
64 DYNMEM_PROTOCOL_VERSION_WIN7 = DYNMEM_PROTOCOL_VERSION_1,
65 DYNMEM_PROTOCOL_VERSION_WIN8 = DYNMEM_PROTOCOL_VERSION_2,
Alex Ngb6ddeae2015-08-01 16:08:13 -070066 DYNMEM_PROTOCOL_VERSION_WIN10 = DYNMEM_PROTOCOL_VERSION_3,
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -080067
Alex Ngb6ddeae2015-08-01 16:08:13 -070068 DYNMEM_PROTOCOL_VERSION_CURRENT = DYNMEM_PROTOCOL_VERSION_WIN10
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -080069};
70
71
72
73/*
74 * Message Types
75 */
76
77enum dm_message_type {
78 /*
79 * Version 0.3
80 */
81 DM_ERROR = 0,
82 DM_VERSION_REQUEST = 1,
83 DM_VERSION_RESPONSE = 2,
84 DM_CAPABILITIES_REPORT = 3,
85 DM_CAPABILITIES_RESPONSE = 4,
86 DM_STATUS_REPORT = 5,
87 DM_BALLOON_REQUEST = 6,
88 DM_BALLOON_RESPONSE = 7,
89 DM_UNBALLOON_REQUEST = 8,
90 DM_UNBALLOON_RESPONSE = 9,
91 DM_MEM_HOT_ADD_REQUEST = 10,
92 DM_MEM_HOT_ADD_RESPONSE = 11,
93 DM_VERSION_03_MAX = 11,
94 /*
95 * Version 1.0.
96 */
97 DM_INFO_MESSAGE = 12,
98 DM_VERSION_1_MAX = 12
99};
100
101
102/*
103 * Structures defining the dynamic memory management
104 * protocol.
105 */
106
107union dm_version {
108 struct {
109 __u16 minor_version;
110 __u16 major_version;
111 };
112 __u32 version;
113} __packed;
114
115
116union dm_caps {
117 struct {
118 __u64 balloon:1;
119 __u64 hot_add:1;
K. Y. Srinivasan647965a2013-03-29 07:36:11 -0700120 /*
121 * To support guests that may have alignment
122 * limitations on hot-add, the guest can specify
123 * its alignment requirements; a value of n
124 * represents an alignment of 2^n in mega bytes.
125 */
126 __u64 hot_add_alignment:4;
127 __u64 reservedz:58;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800128 } cap_bits;
129 __u64 caps;
130} __packed;
131
132union dm_mem_page_range {
133 struct {
134 /*
135 * The PFN number of the first page in the range.
136 * 40 bits is the architectural limit of a PFN
137 * number for AMD64.
138 */
139 __u64 start_page:40;
140 /*
141 * The number of pages in the range.
142 */
143 __u64 page_cnt:24;
144 } finfo;
145 __u64 page_range;
146} __packed;
147
148
149
150/*
151 * The header for all dynamic memory messages:
152 *
153 * type: Type of the message.
154 * size: Size of the message in bytes; including the header.
155 * trans_id: The guest is responsible for manufacturing this ID.
156 */
157
158struct dm_header {
159 __u16 type;
160 __u16 size;
161 __u32 trans_id;
162} __packed;
163
164/*
165 * A generic message format for dynamic memory.
166 * Specific message formats are defined later in the file.
167 */
168
169struct dm_message {
170 struct dm_header hdr;
171 __u8 data[]; /* enclosed message */
172} __packed;
173
174
175/*
176 * Specific message types supporting the dynamic memory protocol.
177 */
178
179/*
180 * Version negotiation message. Sent from the guest to the host.
181 * The guest is free to try different versions until the host
182 * accepts the version.
183 *
184 * dm_version: The protocol version requested.
185 * is_last_attempt: If TRUE, this is the last version guest will request.
186 * reservedz: Reserved field, set to zero.
187 */
188
189struct dm_version_request {
190 struct dm_header hdr;
191 union dm_version version;
192 __u32 is_last_attempt:1;
193 __u32 reservedz:31;
194} __packed;
195
196/*
197 * Version response message; Host to Guest and indicates
198 * if the host has accepted the version sent by the guest.
199 *
200 * is_accepted: If TRUE, host has accepted the version and the guest
201 * should proceed to the next stage of the protocol. FALSE indicates that
202 * guest should re-try with a different version.
203 *
204 * reservedz: Reserved field, set to zero.
205 */
206
207struct dm_version_response {
208 struct dm_header hdr;
209 __u64 is_accepted:1;
210 __u64 reservedz:63;
211} __packed;
212
213/*
214 * Message reporting capabilities. This is sent from the guest to the
215 * host.
216 */
217
218struct dm_capabilities {
219 struct dm_header hdr;
220 union dm_caps caps;
221 __u64 min_page_cnt;
222 __u64 max_page_number;
223} __packed;
224
225/*
226 * Response to the capabilities message. This is sent from the host to the
227 * guest. This message notifies if the host has accepted the guest's
228 * capabilities. If the host has not accepted, the guest must shutdown
229 * the service.
230 *
231 * is_accepted: Indicates if the host has accepted guest's capabilities.
232 * reservedz: Must be 0.
233 */
234
235struct dm_capabilities_resp_msg {
236 struct dm_header hdr;
237 __u64 is_accepted:1;
238 __u64 reservedz:63;
239} __packed;
240
241/*
242 * This message is used to report memory pressure from the guest.
243 * This message is not part of any transaction and there is no
244 * response to this message.
245 *
246 * num_avail: Available memory in pages.
247 * num_committed: Committed memory in pages.
248 * page_file_size: The accumulated size of all page files
249 * in the system in pages.
250 * zero_free: The nunber of zero and free pages.
251 * page_file_writes: The writes to the page file in pages.
252 * io_diff: An indicator of file cache efficiency or page file activity,
253 * calculated as File Cache Page Fault Count - Page Read Count.
254 * This value is in pages.
255 *
256 * Some of these metrics are Windows specific and fortunately
257 * the algorithm on the host side that computes the guest memory
258 * pressure only uses num_committed value.
259 */
260
261struct dm_status {
262 struct dm_header hdr;
263 __u64 num_avail;
264 __u64 num_committed;
265 __u64 page_file_size;
266 __u64 zero_free;
267 __u32 page_file_writes;
268 __u32 io_diff;
269} __packed;
270
271
272/*
273 * Message to ask the guest to allocate memory - balloon up message.
274 * This message is sent from the host to the guest. The guest may not be
275 * able to allocate as much memory as requested.
276 *
277 * num_pages: number of pages to allocate.
278 */
279
280struct dm_balloon {
281 struct dm_header hdr;
282 __u32 num_pages;
283 __u32 reservedz;
284} __packed;
285
286
287/*
288 * Balloon response message; this message is sent from the guest
289 * to the host in response to the balloon message.
290 *
291 * reservedz: Reserved; must be set to zero.
292 * more_pages: If FALSE, this is the last message of the transaction.
293 * if TRUE there will atleast one more message from the guest.
294 *
295 * range_count: The number of ranges in the range array.
296 *
297 * range_array: An array of page ranges returned to the host.
298 *
299 */
300
301struct dm_balloon_response {
302 struct dm_header hdr;
303 __u32 reservedz;
304 __u32 more_pages:1;
305 __u32 range_count:31;
306 union dm_mem_page_range range_array[];
307} __packed;
308
309/*
310 * Un-balloon message; this message is sent from the host
311 * to the guest to give guest more memory.
312 *
313 * more_pages: If FALSE, this is the last message of the transaction.
314 * if TRUE there will atleast one more message from the guest.
315 *
316 * reservedz: Reserved; must be set to zero.
317 *
318 * range_count: The number of ranges in the range array.
319 *
320 * range_array: An array of page ranges returned to the host.
321 *
322 */
323
324struct dm_unballoon_request {
325 struct dm_header hdr;
326 __u32 more_pages:1;
327 __u32 reservedz:31;
328 __u32 range_count;
329 union dm_mem_page_range range_array[];
330} __packed;
331
332/*
333 * Un-balloon response message; this message is sent from the guest
334 * to the host in response to an unballoon request.
335 *
336 */
337
338struct dm_unballoon_response {
339 struct dm_header hdr;
340} __packed;
341
342
343/*
344 * Hot add request message. Message sent from the host to the guest.
345 *
346 * mem_range: Memory range to hot add.
347 *
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800348 */
349
350struct dm_hot_add {
351 struct dm_header hdr;
352 union dm_mem_page_range range;
353} __packed;
354
355/*
356 * Hot add response message.
357 * This message is sent by the guest to report the status of a hot add request.
358 * If page_count is less than the requested page count, then the host should
359 * assume all further hot add requests will fail, since this indicates that
360 * the guest has hit an upper physical memory barrier.
361 *
362 * Hot adds may also fail due to low resources; in this case, the guest must
363 * not complete this message until the hot add can succeed, and the host must
364 * not send a new hot add request until the response is sent.
365 * If VSC fails to hot add memory DYNMEM_NUMBER_OF_UNSUCCESSFUL_HOTADD_ATTEMPTS
366 * times it fails the request.
367 *
368 *
369 * page_count: number of pages that were successfully hot added.
370 *
371 * result: result of the operation 1: success, 0: failure.
372 *
373 */
374
375struct dm_hot_add_response {
376 struct dm_header hdr;
377 __u32 page_count;
378 __u32 result;
379} __packed;
380
381/*
382 * Types of information sent from host to the guest.
383 */
384
385enum dm_info_type {
386 INFO_TYPE_MAX_PAGE_CNT = 0,
387 MAX_INFO_TYPE
388};
389
390
391/*
392 * Header for the information message.
393 */
394
395struct dm_info_header {
396 enum dm_info_type type;
397 __u32 data_size;
398} __packed;
399
400/*
401 * This message is sent from the host to the guest to pass
402 * some relevant information (win8 addition).
403 *
404 * reserved: no used.
405 * info_size: size of the information blob.
406 * info: information blob.
407 */
408
409struct dm_info_msg {
K. Y. Srinivasan6427a0d2012-12-06 11:06:54 -0800410 struct dm_header hdr;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800411 __u32 reserved;
412 __u32 info_size;
413 __u8 info[];
414};
415
416/*
417 * End protocol definitions.
418 */
419
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700420/*
421 * State to manage hot adding memory into the guest.
422 * The range start_pfn : end_pfn specifies the range
423 * that the host has asked us to hot add. The range
424 * start_pfn : ha_end_pfn specifies the range that we have
425 * currently hot added. We hot add in multiples of 128M
426 * chunks; it is possible that we may not be able to bring
427 * online all the pages in the region. The range
Vitaly Kuznetsov7cf3b792016-08-24 16:23:09 -0700428 * covered_start_pfn:covered_end_pfn defines the pages that can
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700429 * be brough online.
430 */
431
432struct hv_hotadd_state {
433 struct list_head list;
434 unsigned long start_pfn;
Vitaly Kuznetsov7cf3b792016-08-24 16:23:09 -0700435 unsigned long covered_start_pfn;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700436 unsigned long covered_end_pfn;
437 unsigned long ha_end_pfn;
438 unsigned long end_pfn;
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700439 /*
440 * A list of gaps.
441 */
442 struct list_head gap_list;
443};
444
445struct hv_hotadd_gap {
446 struct list_head list;
447 unsigned long start_pfn;
448 unsigned long end_pfn;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700449};
450
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -0700451struct balloon_state {
452 __u32 num_pages;
453 struct work_struct wrk;
454};
455
K. Y. Srinivasanc51af822013-03-15 12:25:41 -0700456struct hot_add_wrk {
457 union dm_mem_page_range ha_page_range;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700458 union dm_mem_page_range ha_region_range;
K. Y. Srinivasanc51af822013-03-15 12:25:41 -0700459 struct work_struct wrk;
460};
461
Dexuan Cui25bd2b22019-11-19 23:16:05 -0800462static bool allow_hibernation;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700463static bool hot_add = true;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800464static bool do_hot_add;
K. Y. Srinivasane500d152013-02-08 15:57:15 -0800465/*
466 * Delay reporting memory pressure by
467 * the specified number of seconds.
468 */
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700469static uint pressure_report_delay = 45;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800470
K. Y. Srinivasanae339332014-04-23 13:53:39 -0700471/*
472 * The last time we posted a pressure report to host.
473 */
474static unsigned long last_post_time;
475
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800476module_param(hot_add, bool, (S_IRUGO | S_IWUSR));
477MODULE_PARM_DESC(hot_add, "If set attempt memory hot_add");
478
K. Y. Srinivasane500d152013-02-08 15:57:15 -0800479module_param(pressure_report_delay, uint, (S_IRUGO | S_IWUSR));
480MODULE_PARM_DESC(pressure_report_delay, "Delay in secs in reporting pressure");
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800481static atomic_t trans_id = ATOMIC_INIT(0);
482
Boqun Feng8a7eb2d2021-11-01 23:00:26 +0800483static int dm_ring_size = VMBUS_RING_SIZE(16 * 1024);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800484
485/*
486 * Driver specific state.
487 */
488
489enum hv_dm_state {
490 DM_INITIALIZING = 0,
491 DM_INITIALIZED,
492 DM_BALLOON_UP,
493 DM_BALLOON_DOWN,
494 DM_HOT_ADD,
495 DM_INIT_ERROR
496};
497
498
Himadri Pandya2af5e7b2019-08-17 04:08:50 +0000499static __u8 recv_buffer[HV_HYP_PAGE_SIZE];
500static __u8 balloon_up_send_buffer[HV_HYP_PAGE_SIZE];
501#define PAGES_IN_2M (2 * 1024 * 1024 / PAGE_SIZE)
502#define HA_CHUNK (128 * 1024 * 1024 / PAGE_SIZE)
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800503
504struct hv_dynmem_device {
505 struct hv_device *dev;
506 enum hv_dm_state state;
507 struct completion host_event;
508 struct completion config_event;
509
510 /*
511 * Number of pages we have currently ballooned out.
512 */
513 unsigned int num_pages_ballooned;
Vitaly Kuznetsov549fd282015-02-28 11:38:59 -0800514 unsigned int num_pages_onlined;
515 unsigned int num_pages_added;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800516
517 /*
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -0700518 * State to manage the ballooning (up) operation.
519 */
520 struct balloon_state balloon_wrk;
521
522 /*
K. Y. Srinivasanc51af822013-03-15 12:25:41 -0700523 * State to execute the "hot-add" operation.
524 */
525 struct hot_add_wrk ha_wrk;
526
527 /*
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700528 * This state tracks if the host has specified a hot-add
529 * region.
530 */
531 bool host_specified_ha_region;
532
533 /*
534 * State to synchronize hot-add.
535 */
536 struct completion ol_waitevent;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700537 /*
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -0700538 * This thread handles hot-add
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800539 * requests from the host as well as notifying
540 * the host with regards to memory pressure in
541 * the guest.
542 */
543 struct task_struct *thread;
544
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700545 /*
546 * Protects ha_region_list, num_pages_onlined counter and individual
547 * regions from ha_region_list.
548 */
549 spinlock_t ha_lock;
K. Y. Srinivasan22f88472015-01-09 23:54:30 -0800550
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800551 /*
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700552 * A list of hot-add regions.
553 */
554 struct list_head ha_region_list;
555
556 /*
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800557 * We start with the highest version we can support
558 * and downgrade based on the host; we save here the
559 * next version to try.
560 */
561 __u32 next_version;
Alex Ngb3bb97b2016-11-06 13:14:09 -0800562
563 /*
564 * The negotiated version agreed by host.
565 */
566 __u32 version;
Sunil Muthuswamy6dc2a772021-03-23 18:47:16 +0000567
568 struct page_reporting_dev_info pr_dev_info;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800569};
570
571static struct hv_dynmem_device dm_device;
572
K. Y. Srinivasanae339332014-04-23 13:53:39 -0700573static void post_status(struct hv_dynmem_device *dm);
K. Y. Srinivasan22f88472015-01-09 23:54:30 -0800574
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700575#ifdef CONFIG_MEMORY_HOTPLUG
Vitaly Kuznetsovbba072d12018-03-04 22:17:21 -0700576static inline bool has_pfn_is_backed(struct hv_hotadd_state *has,
577 unsigned long pfn)
578{
579 struct hv_hotadd_gap *gap;
580
581 /* The page is not backed. */
582 if ((pfn < has->covered_start_pfn) || (pfn >= has->covered_end_pfn))
583 return false;
584
585 /* Check for gaps. */
586 list_for_each_entry(gap, &has->gap_list, list) {
587 if ((pfn >= gap->start_pfn) && (pfn < gap->end_pfn))
588 return false;
589 }
590
591 return true;
592}
593
594static unsigned long hv_page_offline_check(unsigned long start_pfn,
595 unsigned long nr_pages)
596{
597 unsigned long pfn = start_pfn, count = 0;
598 struct hv_hotadd_state *has;
599 bool found;
600
601 while (pfn < start_pfn + nr_pages) {
602 /*
603 * Search for HAS which covers the pfn and when we find one
604 * count how many consequitive PFNs are covered.
605 */
606 found = false;
607 list_for_each_entry(has, &dm_device.ha_region_list, list) {
608 while ((pfn >= has->start_pfn) &&
609 (pfn < has->end_pfn) &&
610 (pfn < start_pfn + nr_pages)) {
611 found = true;
612 if (has_pfn_is_backed(has, pfn))
613 count++;
614 pfn++;
615 }
616 }
617
618 /*
619 * This PFN is not in any HAS (e.g. we're offlining a region
620 * which was present at boot), no need to account for it. Go
621 * to the next one.
622 */
623 if (!found)
624 pfn++;
625 }
626
627 return count;
628}
629
K. Y. Srinivasan22f88472015-01-09 23:54:30 -0800630static int hv_memory_notifier(struct notifier_block *nb, unsigned long val,
631 void *v)
632{
Vitaly Kuznetsov549fd282015-02-28 11:38:59 -0800633 struct memory_notify *mem = (struct memory_notify *)v;
Vitaly Kuznetsovbba072d12018-03-04 22:17:21 -0700634 unsigned long flags, pfn_count;
Vitaly Kuznetsov549fd282015-02-28 11:38:59 -0800635
K. Y. Srinivasan22f88472015-01-09 23:54:30 -0800636 switch (val) {
K. Y. Srinivasan22f88472015-01-09 23:54:30 -0800637 case MEM_ONLINE:
638 case MEM_CANCEL_ONLINE:
David Hildenbrandbc58ebd2020-04-06 20:07:32 -0700639 complete(&dm_device.ol_waitevent);
K. Y. Srinivasan22f88472015-01-09 23:54:30 -0800640 break;
641
K. Y. Srinivasan22f88472015-01-09 23:54:30 -0800642 case MEM_OFFLINE:
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700643 spin_lock_irqsave(&dm_device.ha_lock, flags);
Vitaly Kuznetsovbba072d12018-03-04 22:17:21 -0700644 pfn_count = hv_page_offline_check(mem->start_pfn,
645 mem->nr_pages);
646 if (pfn_count <= dm_device.num_pages_onlined) {
647 dm_device.num_pages_onlined -= pfn_count;
648 } else {
649 /*
650 * We're offlining more pages than we managed to online.
651 * This is unexpected. In any case don't let
652 * num_pages_onlined wrap around zero.
653 */
654 WARN_ON_ONCE(1);
655 dm_device.num_pages_onlined = 0;
656 }
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700657 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
Vitaly Kuznetsov549fd282015-02-28 11:38:59 -0800658 break;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700659 case MEM_GOING_ONLINE:
Vitaly Kuznetsov549fd282015-02-28 11:38:59 -0800660 case MEM_GOING_OFFLINE:
K. Y. Srinivasan22f88472015-01-09 23:54:30 -0800661 case MEM_CANCEL_OFFLINE:
662 break;
663 }
664 return NOTIFY_OK;
665}
666
667static struct notifier_block hv_memory_nb = {
668 .notifier_call = hv_memory_notifier,
669 .priority = 0
670};
671
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700672/* Check if the particular page is backed and can be onlined and online it. */
673static void hv_page_online_one(struct hv_hotadd_state *has, struct page *pg)
674{
David Hildenbrandfae42c42019-03-05 15:42:36 -0800675 if (!has_pfn_is_backed(has, page_to_pfn(pg))) {
676 if (!PageOffline(pg))
677 __SetPageOffline(pg);
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700678 return;
David Hildenbrandfae42c42019-03-05 15:42:36 -0800679 }
680 if (PageOffline(pg))
681 __ClearPageOffline(pg);
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700682
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700683 /* This frame is currently backed; online the page. */
David Hildenbrand30a9c242019-11-30 17:53:55 -0800684 generic_online_page(pg, 0);
Alex Ng6df8d9a2017-08-06 13:12:53 -0700685
Lance Roy1c87dc82018-10-02 22:38:48 -0700686 lockdep_assert_held(&dm_device.ha_lock);
Alex Ng6df8d9a2017-08-06 13:12:53 -0700687 dm_device.num_pages_onlined++;
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700688}
689
690static void hv_bring_pgs_online(struct hv_hotadd_state *has,
691 unsigned long start_pfn, unsigned long size)
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800692{
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700693 int i;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800694
Alex Ngb3bb97b2016-11-06 13:14:09 -0800695 pr_debug("Online %lu pages starting at pfn 0x%lx\n", size, start_pfn);
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700696 for (i = 0; i < size; i++)
697 hv_page_online_one(has, pfn_to_page(start_pfn + i));
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700698}
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800699
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700700static void hv_mem_hot_add(unsigned long start, unsigned long size,
701 unsigned long pfn_count,
702 struct hv_hotadd_state *has)
703{
704 int ret = 0;
K. Y. Srinivasaned07ec92013-07-14 22:38:11 -0700705 int i, nid;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700706 unsigned long start_pfn;
707 unsigned long processed_pfn;
708 unsigned long total_pfn = pfn_count;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700709 unsigned long flags;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800710
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700711 for (i = 0; i < (size/HA_CHUNK); i++) {
712 start_pfn = start + (i * HA_CHUNK);
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700713
714 spin_lock_irqsave(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700715 has->ha_end_pfn += HA_CHUNK;
716
717 if (total_pfn > HA_CHUNK) {
718 processed_pfn = HA_CHUNK;
719 total_pfn -= HA_CHUNK;
720 } else {
721 processed_pfn = total_pfn;
722 total_pfn = 0;
723 }
724
725 has->covered_end_pfn += processed_pfn;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700726 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700727
David Hildenbrandbc58ebd2020-04-06 20:07:32 -0700728 reinit_completion(&dm_device.ol_waitevent);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700729
730 nid = memory_add_physaddr_to_nid(PFN_PHYS(start_pfn));
731 ret = add_memory(nid, PFN_PHYS((start_pfn)),
David Hildenbrand26011262021-02-25 17:17:17 -0800732 (HA_CHUNK << PAGE_SHIFT), MHP_MERGE_RESOURCE);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700733
734 if (ret) {
Vitaly Kuznetsov223e1e42018-03-04 22:17:19 -0700735 pr_err("hot_add memory failed error is %d\n", ret);
K. Y. Srinivasan7f4f2302013-03-18 13:51:38 -0700736 if (ret == -EEXIST) {
737 /*
738 * This error indicates that the error
739 * is not a transient failure. This is the
740 * case where the guest's physical address map
741 * precludes hot adding memory. Stop all further
742 * memory hot-add.
743 */
744 do_hot_add = false;
745 }
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700746 spin_lock_irqsave(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700747 has->ha_end_pfn -= HA_CHUNK;
748 has->covered_end_pfn -= processed_pfn;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700749 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700750 break;
751 }
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800752
753 /*
David Hildenbrandbc58ebd2020-04-06 20:07:32 -0700754 * Wait for memory to get onlined. If the kernel onlined the
755 * memory when adding it, this will return directly. Otherwise,
756 * it will wait for user space to online the memory. This helps
757 * to avoid adding memory faster than it is getting onlined. As
758 * adding succeeded, it is ok to proceed even if the memory was
759 * not onlined in time.
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800760 */
David Hildenbrandbc58ebd2020-04-06 20:07:32 -0700761 wait_for_completion_timeout(&dm_device.ol_waitevent, 5 * HZ);
K. Y. Srinivasanae339332014-04-23 13:53:39 -0700762 post_status(&dm_device);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800763 }
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700764}
765
Arun KSa9cd4102019-03-05 15:42:14 -0800766static void hv_online_page(struct page *pg, unsigned int order)
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700767{
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700768 struct hv_hotadd_state *has;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700769 unsigned long flags;
Vitaly Kuznetsov4f098af2018-03-04 22:17:20 -0700770 unsigned long pfn = page_to_pfn(pg);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700771
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700772 spin_lock_irqsave(&dm_device.ha_lock, flags);
773 list_for_each_entry(has, &dm_device.ha_region_list, list) {
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700774 /* The page belongs to a different HAS. */
Arun KSa9cd4102019-03-05 15:42:14 -0800775 if ((pfn < has->start_pfn) ||
776 (pfn + (1UL << order) > has->end_pfn))
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700777 continue;
778
Arun KSa9cd4102019-03-05 15:42:14 -0800779 hv_bring_pgs_online(has, pfn, 1UL << order);
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700780 break;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700781 }
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700782 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700783}
784
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700785static int pfn_covered(unsigned long start_pfn, unsigned long pfn_cnt)
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700786{
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700787 struct hv_hotadd_state *has;
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700788 struct hv_hotadd_gap *gap;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700789 unsigned long residual, new_inc;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700790 int ret = 0;
791 unsigned long flags;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700792
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700793 spin_lock_irqsave(&dm_device.ha_lock, flags);
794 list_for_each_entry(has, &dm_device.ha_region_list, list) {
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700795 /*
796 * If the pfn range we are dealing with is not in the current
797 * "hot add block", move on.
798 */
Vitaly Kuznetsov77c0c972016-04-30 19:21:35 -0700799 if (start_pfn < has->start_pfn || start_pfn >= has->end_pfn)
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700800 continue;
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700801
802 /*
803 * If the current start pfn is not where the covered_end
804 * is, create a gap and update covered_end_pfn.
805 */
806 if (has->covered_end_pfn != start_pfn) {
807 gap = kzalloc(sizeof(struct hv_hotadd_gap), GFP_ATOMIC);
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700808 if (!gap) {
809 ret = -ENOMEM;
810 break;
811 }
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700812
813 INIT_LIST_HEAD(&gap->list);
814 gap->start_pfn = has->covered_end_pfn;
815 gap->end_pfn = start_pfn;
816 list_add_tail(&gap->list, &has->gap_list);
817
818 has->covered_end_pfn = start_pfn;
819 }
820
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700821 /*
822 * If the current hot add-request extends beyond
823 * our current limit; extend it.
824 */
825 if ((start_pfn + pfn_cnt) > has->end_pfn) {
826 residual = (start_pfn + pfn_cnt - has->end_pfn);
827 /*
828 * Extend the region by multiples of HA_CHUNK.
829 */
830 new_inc = (residual / HA_CHUNK) * HA_CHUNK;
831 if (residual % HA_CHUNK)
832 new_inc += HA_CHUNK;
833
834 has->end_pfn += new_inc;
835 }
836
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700837 ret = 1;
838 break;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700839 }
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700840 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700841
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700842 return ret;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700843}
844
845static unsigned long handle_pg_range(unsigned long pg_start,
846 unsigned long pg_count)
847{
848 unsigned long start_pfn = pg_start;
849 unsigned long pfn_cnt = pg_count;
850 unsigned long size;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700851 struct hv_hotadd_state *has;
852 unsigned long pgs_ol = 0;
853 unsigned long old_covered_state;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700854 unsigned long res = 0, flags;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700855
Alex Ngb3bb97b2016-11-06 13:14:09 -0800856 pr_debug("Hot adding %lu pages starting at pfn 0x%lx.\n", pg_count,
857 pg_start);
858
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700859 spin_lock_irqsave(&dm_device.ha_lock, flags);
860 list_for_each_entry(has, &dm_device.ha_region_list, list) {
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700861 /*
862 * If the pfn range we are dealing with is not in the current
863 * "hot add block", move on.
864 */
Vitaly Kuznetsov77c0c972016-04-30 19:21:35 -0700865 if (start_pfn < has->start_pfn || start_pfn >= has->end_pfn)
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700866 continue;
867
868 old_covered_state = has->covered_end_pfn;
869
870 if (start_pfn < has->ha_end_pfn) {
871 /*
872 * This is the case where we are backing pages
873 * in an already hot added region. Bring
874 * these pages online first.
875 */
876 pgs_ol = has->ha_end_pfn - start_pfn;
877 if (pgs_ol > pfn_cnt)
878 pgs_ol = pfn_cnt;
Vitaly Kuznetsovd6cbd2c2015-03-27 09:10:11 -0700879
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700880 has->covered_end_pfn += pgs_ol;
881 pfn_cnt -= pgs_ol;
Vitaly Kuznetsovd6cbd2c2015-03-27 09:10:11 -0700882 /*
883 * Check if the corresponding memory block is already
Vitaly Kuznetsovda8ced32019-01-04 15:19:42 +0100884 * online. It is possible to observe struct pages still
885 * being uninitialized here so check section instead.
886 * In case the section is online we need to bring the
887 * rest of pfns (which were not backed previously)
888 * online too.
Vitaly Kuznetsovd6cbd2c2015-03-27 09:10:11 -0700889 */
890 if (start_pfn > has->start_pfn &&
Vitaly Kuznetsovda8ced32019-01-04 15:19:42 +0100891 online_section_nr(pfn_to_section_nr(start_pfn)))
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700892 hv_bring_pgs_online(has, start_pfn, pgs_ol);
Vitaly Kuznetsovd6cbd2c2015-03-27 09:10:11 -0700893
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700894 }
895
896 if ((has->ha_end_pfn < has->end_pfn) && (pfn_cnt > 0)) {
897 /*
898 * We have some residual hot add range
899 * that needs to be hot added; hot add
900 * it now. Hot add a multiple of
901 * of HA_CHUNK that fully covers the pages
902 * we have.
903 */
904 size = (has->end_pfn - has->ha_end_pfn);
905 if (pfn_cnt <= size) {
906 size = ((pfn_cnt / HA_CHUNK) * HA_CHUNK);
907 if (pfn_cnt % HA_CHUNK)
908 size += HA_CHUNK;
909 } else {
910 pfn_cnt = size;
911 }
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700912 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700913 hv_mem_hot_add(has->ha_end_pfn, size, pfn_cnt, has);
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700914 spin_lock_irqsave(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700915 }
916 /*
917 * If we managed to online any pages that were given to us,
918 * we declare success.
919 */
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700920 res = has->covered_end_pfn - old_covered_state;
921 break;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700922 }
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700923 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700924
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700925 return res;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700926}
927
928static unsigned long process_hot_add(unsigned long pg_start,
929 unsigned long pfn_cnt,
930 unsigned long rg_start,
931 unsigned long rg_size)
932{
933 struct hv_hotadd_state *ha_region = NULL;
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700934 int covered;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700935 unsigned long flags;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700936
937 if (pfn_cnt == 0)
938 return 0;
939
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700940 if (!dm_device.host_specified_ha_region) {
941 covered = pfn_covered(pg_start, pfn_cnt);
942 if (covered < 0)
943 return 0;
944
945 if (covered)
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700946 goto do_pg_range;
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700947 }
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700948
949 /*
950 * If the host has specified a hot-add range; deal with it first.
951 */
952
K. Y. Srinivasan647965a2013-03-29 07:36:11 -0700953 if (rg_size != 0) {
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700954 ha_region = kzalloc(sizeof(struct hv_hotadd_state), GFP_KERNEL);
955 if (!ha_region)
956 return 0;
957
958 INIT_LIST_HEAD(&ha_region->list);
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -0700959 INIT_LIST_HEAD(&ha_region->gap_list);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700960
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700961 ha_region->start_pfn = rg_start;
962 ha_region->ha_end_pfn = rg_start;
Vitaly Kuznetsov7cf3b792016-08-24 16:23:09 -0700963 ha_region->covered_start_pfn = pg_start;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700964 ha_region->covered_end_pfn = pg_start;
965 ha_region->end_pfn = rg_start + rg_size;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -0700966
967 spin_lock_irqsave(&dm_device.ha_lock, flags);
968 list_add_tail(&ha_region->list, &dm_device.ha_region_list);
969 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700970 }
971
972do_pg_range:
973 /*
974 * Process the page range specified; bringing them
975 * online if possible.
976 */
977 return handle_pg_range(pg_start, pfn_cnt);
978}
979
980#endif
981
982static void hot_add_req(struct work_struct *dummy)
983{
984 struct dm_hot_add_response resp;
985#ifdef CONFIG_MEMORY_HOTPLUG
986 unsigned long pg_start, pfn_cnt;
987 unsigned long rg_start, rg_sz;
988#endif
989 struct hv_dynmem_device *dm = &dm_device;
990
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800991 memset(&resp, 0, sizeof(struct dm_hot_add_response));
992 resp.hdr.type = DM_MEM_HOT_ADD_RESPONSE;
993 resp.hdr.size = sizeof(struct dm_hot_add_response);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800994
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700995#ifdef CONFIG_MEMORY_HOTPLUG
996 pg_start = dm->ha_wrk.ha_page_range.finfo.start_page;
997 pfn_cnt = dm->ha_wrk.ha_page_range.finfo.page_cnt;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -0800998
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -0700999 rg_start = dm->ha_wrk.ha_region_range.finfo.start_page;
1000 rg_sz = dm->ha_wrk.ha_region_range.finfo.page_cnt;
1001
1002 if ((rg_start == 0) && (!dm->host_specified_ha_region)) {
1003 unsigned long region_size;
1004 unsigned long region_start;
1005
1006 /*
1007 * The host has not specified the hot-add region.
1008 * Based on the hot-add page range being specified,
1009 * compute a hot-add region that can cover the pages
1010 * that need to be hot-added while ensuring the alignment
1011 * and size requirements of Linux as it relates to hot-add.
1012 */
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001013 region_size = (pfn_cnt / HA_CHUNK) * HA_CHUNK;
1014 if (pfn_cnt % HA_CHUNK)
1015 region_size += HA_CHUNK;
1016
1017 region_start = (pg_start / HA_CHUNK) * HA_CHUNK;
1018
1019 rg_start = region_start;
1020 rg_sz = region_size;
1021 }
1022
K. Y. Srinivasan7f4f2302013-03-18 13:51:38 -07001023 if (do_hot_add)
1024 resp.page_count = process_hot_add(pg_start, pfn_cnt,
1025 rg_start, rg_sz);
Vitaly Kuznetsov549fd282015-02-28 11:38:59 -08001026
1027 dm->num_pages_added += resp.page_count;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001028#endif
K. Y. Srinivasan7f4f2302013-03-18 13:51:38 -07001029 /*
1030 * The result field of the response structure has the
1031 * following semantics:
1032 *
1033 * 1. If all or some pages hot-added: Guest should return success.
1034 *
1035 * 2. If no pages could be hot-added:
1036 *
1037 * If the guest returns success, then the host
1038 * will not attempt any further hot-add operations. This
1039 * signifies a permanent failure.
1040 *
1041 * If the guest returns failure, then this failure will be
1042 * treated as a transient failure and the host may retry the
1043 * hot-add operation after some delay.
1044 */
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001045 if (resp.page_count > 0)
1046 resp.result = 1;
K. Y. Srinivasan7f4f2302013-03-18 13:51:38 -07001047 else if (!do_hot_add)
1048 resp.result = 1;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001049 else
1050 resp.result = 0;
1051
Dexuan Cui25bd2b22019-11-19 23:16:05 -08001052 if (!do_hot_add || resp.page_count == 0) {
1053 if (!allow_hibernation)
1054 pr_err("Memory hot add failed\n");
1055 else
1056 pr_info("Ignore hot-add request!\n");
1057 }
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001058
1059 dm->state = DM_INITIALIZED;
K. Y. Srinivasan20138d62013-07-17 17:27:27 -07001060 resp.hdr.trans_id = atomic_inc_return(&trans_id);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001061 vmbus_sendpacket(dm->dev->channel, &resp,
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001062 sizeof(struct dm_hot_add_response),
1063 (unsigned long)NULL,
1064 VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001065}
1066
1067static void process_info(struct hv_dynmem_device *dm, struct dm_info_msg *msg)
1068{
K. Y. Srinivasan6427a0d2012-12-06 11:06:54 -08001069 struct dm_info_header *info_hdr;
1070
1071 info_hdr = (struct dm_info_header *)msg->info;
1072
1073 switch (info_hdr->type) {
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001074 case INFO_TYPE_MAX_PAGE_CNT:
Alex Ng85000962016-11-06 13:14:12 -08001075 if (info_hdr->data_size == sizeof(__u64)) {
1076 __u64 *max_page_count = (__u64 *)&info_hdr[1];
1077
Alex Ng7b6e54b2017-08-06 13:12:54 -07001078 pr_info("Max. dynamic memory size: %llu MB\n",
Himadri Pandya2af5e7b2019-08-17 04:08:50 +00001079 (*max_page_count) >> (20 - HV_HYP_PAGE_SHIFT));
Alex Ng85000962016-11-06 13:14:12 -08001080 }
1081
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001082 break;
1083 default:
Vitaly Kuznetsov223e1e42018-03-04 22:17:19 -07001084 pr_warn("Received Unknown type: %d\n", info_hdr->type);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001085 }
1086}
1087
Wei Yongjuna6025a22013-03-20 23:25:59 +08001088static unsigned long compute_balloon_floor(void)
K. Y. Srinivasan1c7db962013-02-08 15:57:16 -08001089{
1090 unsigned long min_pages;
Arun KSca79b0c2018-12-28 00:34:29 -08001091 unsigned long nr_pages = totalram_pages();
K. Y. Srinivasan1c7db962013-02-08 15:57:16 -08001092#define MB2PAGES(mb) ((mb) << (20 - PAGE_SHIFT))
1093 /* Simple continuous piecewiese linear function:
1094 * max MiB -> min MiB gradient
1095 * 0 0
1096 * 16 16
1097 * 32 24
1098 * 128 72 (1/2)
1099 * 512 168 (1/4)
1100 * 2048 360 (1/8)
Vitaly Kuznetsov7fb0e1a2015-03-27 09:10:12 -07001101 * 8192 744 (1/16)
1102 * 32768 1512 (1/32)
K. Y. Srinivasan1c7db962013-02-08 15:57:16 -08001103 */
Arun KS3d6357d2018-12-28 00:34:20 -08001104 if (nr_pages < MB2PAGES(128))
1105 min_pages = MB2PAGES(8) + (nr_pages >> 1);
1106 else if (nr_pages < MB2PAGES(512))
1107 min_pages = MB2PAGES(40) + (nr_pages >> 2);
1108 else if (nr_pages < MB2PAGES(2048))
1109 min_pages = MB2PAGES(104) + (nr_pages >> 3);
1110 else if (nr_pages < MB2PAGES(8192))
1111 min_pages = MB2PAGES(232) + (nr_pages >> 4);
K. Y. Srinivasan1c7db962013-02-08 15:57:16 -08001112 else
Arun KS3d6357d2018-12-28 00:34:20 -08001113 min_pages = MB2PAGES(488) + (nr_pages >> 5);
K. Y. Srinivasan1c7db962013-02-08 15:57:16 -08001114#undef MB2PAGES
1115 return min_pages;
1116}
1117
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001118/*
1119 * Post our status as it relates memory pressure to the
1120 * host. Host expects the guests to post this status
1121 * periodically at 1 second intervals.
1122 *
1123 * The metrics specified in this protocol are very Windows
1124 * specific and so we cook up numbers here to convey our memory
1125 * pressure.
1126 */
1127
1128static void post_status(struct hv_dynmem_device *dm)
1129{
1130 struct dm_status status;
K. Y. Srinivasanae339332014-04-23 13:53:39 -07001131 unsigned long now = jiffies;
1132 unsigned long last_post = last_post_time;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001133
K. Y. Srinivasane500d152013-02-08 15:57:15 -08001134 if (pressure_report_delay > 0) {
1135 --pressure_report_delay;
1136 return;
1137 }
K. Y. Srinivasanae339332014-04-23 13:53:39 -07001138
1139 if (!time_after(now, (last_post_time + HZ)))
1140 return;
1141
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001142 memset(&status, 0, sizeof(struct dm_status));
1143 status.hdr.type = DM_STATUS_REPORT;
1144 status.hdr.size = sizeof(struct dm_status);
1145 status.hdr.trans_id = atomic_inc_return(&trans_id);
1146
K. Y. Srinivasan07315722013-01-25 16:18:47 -08001147 /*
Vitaly Kuznetsov549fd282015-02-28 11:38:59 -08001148 * The host expects the guest to report free and committed memory.
1149 * Furthermore, the host expects the pressure information to include
1150 * the ballooned out pages. For a given amount of memory that we are
1151 * managing we need to compute a floor below which we should not
1152 * balloon. Compute this and add it to the pressure report.
1153 * We also need to report all offline pages (num_pages_added -
1154 * num_pages_onlined) as committed to the host, otherwise it can try
1155 * asking us to balloon them out.
K. Y. Srinivasan07315722013-01-25 16:18:47 -08001156 */
Alex Ngb605c2d2016-08-24 16:23:13 -07001157 status.num_avail = si_mem_available();
K. Y. Srinivasan1c7db962013-02-08 15:57:16 -08001158 status.num_committed = vm_memory_committed() +
Vitaly Kuznetsov549fd282015-02-28 11:38:59 -08001159 dm->num_pages_ballooned +
1160 (dm->num_pages_added > dm->num_pages_onlined ?
1161 dm->num_pages_added - dm->num_pages_onlined : 0) +
1162 compute_balloon_floor();
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001163
Vitaly Kuznetsovcf21be92018-03-04 22:17:22 -07001164 trace_balloon_status(status.num_avail, status.num_committed,
1165 vm_memory_committed(), dm->num_pages_ballooned,
1166 dm->num_pages_added, dm->num_pages_onlined);
K. Y. Srinivasanc5e22542013-07-14 22:38:12 -07001167 /*
1168 * If our transaction ID is no longer current, just don't
1169 * send the status. This can happen if we were interrupted
1170 * after we picked our transaction ID.
1171 */
1172 if (status.hdr.trans_id != atomic_read(&trans_id))
1173 return;
1174
K. Y. Srinivasanae339332014-04-23 13:53:39 -07001175 /*
1176 * If the last post time that we sampled has changed,
1177 * we have raced, don't post the status.
1178 */
1179 if (last_post != last_post_time)
1180 return;
1181
1182 last_post_time = jiffies;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001183 vmbus_sendpacket(dm->dev->channel, &status,
1184 sizeof(struct dm_status),
1185 (unsigned long)NULL,
1186 VM_PKT_DATA_INBAND, 0);
1187
1188}
1189
Greg Kroah-Hartman989623c2012-11-21 12:46:40 -08001190static void free_balloon_pages(struct hv_dynmem_device *dm,
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001191 union dm_mem_page_range *range_array)
1192{
1193 int num_pages = range_array->finfo.page_cnt;
1194 __u64 start_frame = range_array->finfo.start_page;
1195 struct page *pg;
1196 int i;
1197
1198 for (i = 0; i < num_pages; i++) {
1199 pg = pfn_to_page(i + start_frame);
David Hildenbrandfae42c42019-03-05 15:42:36 -08001200 __ClearPageOffline(pg);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001201 __free_page(pg);
1202 dm->num_pages_ballooned--;
Vitaly Kuznetsovd1df4582020-12-02 17:12:45 +01001203 adjust_managed_page_count(pg, 1);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001204 }
1205}
1206
1207
1208
Vitaly Kuznetsov797f88c92015-03-31 11:16:41 -07001209static unsigned int alloc_balloon_pages(struct hv_dynmem_device *dm,
1210 unsigned int num_pages,
1211 struct dm_balloon_response *bl_resp,
1212 int alloc_unit)
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001213{
David Hildenbrandfae42c42019-03-05 15:42:36 -08001214 unsigned int i, j;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001215 struct page *pg;
1216
Tianyu Land33c2402020-01-25 16:50:47 -05001217 for (i = 0; i < num_pages / alloc_unit; i++) {
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001218 if (bl_resp->hdr.size + sizeof(union dm_mem_page_range) >
Himadri Pandya2af5e7b2019-08-17 04:08:50 +00001219 HV_HYP_PAGE_SIZE)
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001220 return i * alloc_unit;
1221
1222 /*
1223 * We execute this code in a thread context. Furthermore,
1224 * we don't want the kernel to try too hard.
1225 */
1226 pg = alloc_pages(GFP_HIGHUSER | __GFP_NORETRY |
1227 __GFP_NOMEMALLOC | __GFP_NOWARN,
1228 get_order(alloc_unit << PAGE_SHIFT));
1229
Vitaly Kuznetsov0a1a86a2015-03-27 09:10:13 -07001230 if (!pg)
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001231 return i * alloc_unit;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001232
1233 dm->num_pages_ballooned += alloc_unit;
1234
K. Y. Srinivasanf766dc12013-03-18 13:51:37 -07001235 /*
1236 * If we allocatted 2M pages; split them so we
1237 * can free them in any order we get.
1238 */
1239
1240 if (alloc_unit != 1)
1241 split_page(pg, get_order(alloc_unit << PAGE_SHIFT));
1242
David Hildenbrandfae42c42019-03-05 15:42:36 -08001243 /* mark all pages offline */
Vitaly Kuznetsovd1df4582020-12-02 17:12:45 +01001244 for (j = 0; j < alloc_unit; j++) {
David Hildenbrandfae42c42019-03-05 15:42:36 -08001245 __SetPageOffline(pg + j);
Vitaly Kuznetsovd1df4582020-12-02 17:12:45 +01001246 adjust_managed_page_count(pg + j, -1);
1247 }
David Hildenbrandfae42c42019-03-05 15:42:36 -08001248
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001249 bl_resp->range_count++;
1250 bl_resp->range_array[i].finfo.start_page =
1251 page_to_pfn(pg);
1252 bl_resp->range_array[i].finfo.page_cnt = alloc_unit;
1253 bl_resp->hdr.size += sizeof(union dm_mem_page_range);
1254
1255 }
1256
Tianyu Land33c2402020-01-25 16:50:47 -05001257 return i * alloc_unit;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001258}
1259
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001260static void balloon_up(struct work_struct *dummy)
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001261{
Vitaly Kuznetsov797f88c92015-03-31 11:16:41 -07001262 unsigned int num_pages = dm_device.balloon_wrk.num_pages;
1263 unsigned int num_ballooned = 0;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001264 struct dm_balloon_response *bl_resp;
1265 int alloc_unit;
1266 int ret;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001267 bool done = false;
1268 int i;
Alex Ngb605c2d2016-08-24 16:23:13 -07001269 long avail_pages;
Vitaly Kuznetsov530d15b2015-02-28 11:39:00 -08001270 unsigned long floor;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001271
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001272 /*
K. Y. Srinivasanf766dc12013-03-18 13:51:37 -07001273 * We will attempt 2M allocations. However, if we fail to
Himadri Pandya2af5e7b2019-08-17 04:08:50 +00001274 * allocate 2M chunks, we will go back to PAGE_SIZE allocations.
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001275 */
Himadri Pandya2af5e7b2019-08-17 04:08:50 +00001276 alloc_unit = PAGES_IN_2M;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001277
Alex Ngb605c2d2016-08-24 16:23:13 -07001278 avail_pages = si_mem_available();
Vitaly Kuznetsov530d15b2015-02-28 11:39:00 -08001279 floor = compute_balloon_floor();
1280
Tianyu Land33c2402020-01-25 16:50:47 -05001281 /* Refuse to balloon below the floor. */
Alex Ngb605c2d2016-08-24 16:23:13 -07001282 if (avail_pages < num_pages || avail_pages - num_pages < floor) {
Olaf Hering2c3bd2a2020-10-08 09:12:15 +02001283 pr_info("Balloon request will be partially fulfilled. %s\n",
Alex Ngb3bb97b2016-11-06 13:14:09 -08001284 avail_pages < num_pages ? "Not enough memory." :
1285 "Balloon floor reached.");
1286
Alex Ngb605c2d2016-08-24 16:23:13 -07001287 num_pages = avail_pages > floor ? (avail_pages - floor) : 0;
Vitaly Kuznetsov530d15b2015-02-28 11:39:00 -08001288 }
1289
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001290 while (!done) {
Himadri Pandya2af5e7b2019-08-17 04:08:50 +00001291 memset(balloon_up_send_buffer, 0, HV_HYP_PAGE_SIZE);
Dexuan Cui1fed17d2019-06-14 18:42:17 +00001292 bl_resp = (struct dm_balloon_response *)balloon_up_send_buffer;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001293 bl_resp->hdr.type = DM_BALLOON_RESPONSE;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001294 bl_resp->hdr.size = sizeof(struct dm_balloon_response);
1295 bl_resp->more_pages = 1;
1296
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001297 num_pages -= num_ballooned;
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001298 num_ballooned = alloc_balloon_pages(&dm_device, num_pages,
Vitaly Kuznetsov0a1a86a2015-03-27 09:10:13 -07001299 bl_resp, alloc_unit);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001300
Dexuan Cuif6712232014-11-24 20:32:43 -08001301 if (alloc_unit != 1 && num_ballooned == 0) {
K. Y. Srinivasanf766dc12013-03-18 13:51:37 -07001302 alloc_unit = 1;
1303 continue;
1304 }
1305
Vitaly Kuznetsov0a1a86a2015-03-27 09:10:13 -07001306 if (num_ballooned == 0 || num_ballooned == num_pages) {
Alex Ngb3bb97b2016-11-06 13:14:09 -08001307 pr_debug("Ballooned %u out of %u requested pages.\n",
1308 num_pages, dm_device.balloon_wrk.num_pages);
1309
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001310 bl_resp->more_pages = 0;
1311 done = true;
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001312 dm_device.state = DM_INITIALIZED;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001313 }
1314
1315 /*
1316 * We are pushing a lot of data through the channel;
1317 * deal with transient failures caused because of the
1318 * lack of space in the ring buffer.
1319 */
1320
1321 do {
K. Y. Srinivasan20138d62013-07-17 17:27:27 -07001322 bl_resp->hdr.trans_id = atomic_inc_return(&trans_id);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001323 ret = vmbus_sendpacket(dm_device.dev->channel,
1324 bl_resp,
1325 bl_resp->hdr.size,
1326 (unsigned long)NULL,
1327 VM_PKT_DATA_INBAND, 0);
1328
1329 if (ret == -EAGAIN)
1330 msleep(20);
K. Y. Srinivasanae339332014-04-23 13:53:39 -07001331 post_status(&dm_device);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001332 } while (ret == -EAGAIN);
1333
1334 if (ret) {
1335 /*
1336 * Free up the memory we allocatted.
1337 */
Vitaly Kuznetsov223e1e42018-03-04 22:17:19 -07001338 pr_err("Balloon response failed\n");
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001339
1340 for (i = 0; i < bl_resp->range_count; i++)
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001341 free_balloon_pages(&dm_device,
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001342 &bl_resp->range_array[i]);
1343
1344 done = true;
1345 }
1346 }
1347
1348}
1349
1350static void balloon_down(struct hv_dynmem_device *dm,
1351 struct dm_unballoon_request *req)
1352{
1353 union dm_mem_page_range *range_array = req->range_array;
1354 int range_count = req->range_count;
1355 struct dm_unballoon_response resp;
1356 int i;
Alex Ngb3bb97b2016-11-06 13:14:09 -08001357 unsigned int prev_pages_ballooned = dm->num_pages_ballooned;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001358
K. Y. Srinivasanae339332014-04-23 13:53:39 -07001359 for (i = 0; i < range_count; i++) {
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001360 free_balloon_pages(dm, &range_array[i]);
K. Y. Srinivasanab3de222015-01-09 23:54:31 -08001361 complete(&dm_device.config_event);
K. Y. Srinivasanae339332014-04-23 13:53:39 -07001362 }
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001363
Alex Ngb3bb97b2016-11-06 13:14:09 -08001364 pr_debug("Freed %u ballooned pages.\n",
1365 prev_pages_ballooned - dm->num_pages_ballooned);
1366
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001367 if (req->more_pages == 1)
1368 return;
1369
1370 memset(&resp, 0, sizeof(struct dm_unballoon_response));
1371 resp.hdr.type = DM_UNBALLOON_RESPONSE;
1372 resp.hdr.trans_id = atomic_inc_return(&trans_id);
1373 resp.hdr.size = sizeof(struct dm_unballoon_response);
1374
1375 vmbus_sendpacket(dm_device.dev->channel, &resp,
1376 sizeof(struct dm_unballoon_response),
1377 (unsigned long)NULL,
1378 VM_PKT_DATA_INBAND, 0);
1379
1380 dm->state = DM_INITIALIZED;
1381}
1382
1383static void balloon_onchannelcallback(void *context);
1384
1385static int dm_thread_func(void *dm_dev)
1386{
1387 struct hv_dynmem_device *dm = dm_dev;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001388
1389 while (!kthread_should_stop()) {
K. Y. Srinivasanab3de222015-01-09 23:54:31 -08001390 wait_for_completion_interruptible_timeout(
K. Y. Srinivasan5dba4c52014-02-13 16:24:33 -08001391 &dm_device.config_event, 1*HZ);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001392 /*
1393 * The host expects us to post information on the memory
1394 * pressure every second.
1395 */
K. Y. Srinivasanab3de222015-01-09 23:54:31 -08001396 reinit_completion(&dm_device.config_event);
1397 post_status(dm);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001398 }
1399
1400 return 0;
1401}
1402
1403
1404static void version_resp(struct hv_dynmem_device *dm,
1405 struct dm_version_response *vresp)
1406{
1407 struct dm_version_request version_req;
1408 int ret;
1409
1410 if (vresp->is_accepted) {
1411 /*
1412 * We are done; wakeup the
1413 * context waiting for version
1414 * negotiation.
1415 */
1416 complete(&dm->host_event);
1417 return;
1418 }
1419 /*
1420 * If there are more versions to try, continue
1421 * with negotiations; if not
1422 * shutdown the service since we are not able
1423 * to negotiate a suitable version number
1424 * with the host.
1425 */
1426 if (dm->next_version == 0)
1427 goto version_error;
1428
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001429 memset(&version_req, 0, sizeof(struct dm_version_request));
1430 version_req.hdr.type = DM_VERSION_REQUEST;
1431 version_req.hdr.size = sizeof(struct dm_version_request);
1432 version_req.hdr.trans_id = atomic_inc_return(&trans_id);
Alex Ngb6ddeae2015-08-01 16:08:13 -07001433 version_req.version.version = dm->next_version;
Alex Ngb3bb97b2016-11-06 13:14:09 -08001434 dm->version = version_req.version.version;
Alex Ngb6ddeae2015-08-01 16:08:13 -07001435
1436 /*
1437 * Set the next version to try in case current version fails.
1438 * Win7 protocol ought to be the last one to try.
1439 */
1440 switch (version_req.version.version) {
1441 case DYNMEM_PROTOCOL_VERSION_WIN8:
1442 dm->next_version = DYNMEM_PROTOCOL_VERSION_WIN7;
1443 version_req.is_last_attempt = 0;
1444 break;
1445 default:
1446 dm->next_version = 0;
1447 version_req.is_last_attempt = 1;
1448 }
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001449
1450 ret = vmbus_sendpacket(dm->dev->channel, &version_req,
1451 sizeof(struct dm_version_request),
1452 (unsigned long)NULL,
1453 VM_PKT_DATA_INBAND, 0);
1454
1455 if (ret)
1456 goto version_error;
1457
1458 return;
1459
1460version_error:
1461 dm->state = DM_INIT_ERROR;
1462 complete(&dm->host_event);
1463}
1464
1465static void cap_resp(struct hv_dynmem_device *dm,
1466 struct dm_capabilities_resp_msg *cap_resp)
1467{
1468 if (!cap_resp->is_accepted) {
Vitaly Kuznetsov223e1e42018-03-04 22:17:19 -07001469 pr_err("Capabilities not accepted by host\n");
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001470 dm->state = DM_INIT_ERROR;
1471 }
1472 complete(&dm->host_event);
1473}
1474
1475static void balloon_onchannelcallback(void *context)
1476{
1477 struct hv_device *dev = context;
1478 u32 recvlen;
1479 u64 requestid;
1480 struct dm_message *dm_msg;
1481 struct dm_header *dm_hdr;
1482 struct hv_dynmem_device *dm = hv_get_drvdata(dev);
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001483 struct dm_balloon *bal_msg;
K. Y. Srinivasanc51af822013-03-15 12:25:41 -07001484 struct dm_hot_add *ha_msg;
1485 union dm_mem_page_range *ha_pg_range;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001486 union dm_mem_page_range *ha_region;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001487
1488 memset(recv_buffer, 0, sizeof(recv_buffer));
1489 vmbus_recvpacket(dev->channel, recv_buffer,
Himadri Pandya2af5e7b2019-08-17 04:08:50 +00001490 HV_HYP_PAGE_SIZE, &recvlen, &requestid);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001491
1492 if (recvlen > 0) {
1493 dm_msg = (struct dm_message *)recv_buffer;
1494 dm_hdr = &dm_msg->hdr;
1495
1496 switch (dm_hdr->type) {
1497 case DM_VERSION_RESPONSE:
1498 version_resp(dm,
1499 (struct dm_version_response *)dm_msg);
1500 break;
1501
1502 case DM_CAPABILITIES_RESPONSE:
1503 cap_resp(dm,
1504 (struct dm_capabilities_resp_msg *)dm_msg);
1505 break;
1506
1507 case DM_BALLOON_REQUEST:
Dexuan Cui25bd2b22019-11-19 23:16:05 -08001508 if (allow_hibernation) {
1509 pr_info("Ignore balloon-up request!\n");
1510 break;
1511 }
1512
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001513 if (dm->state == DM_BALLOON_UP)
1514 pr_warn("Currently ballooning\n");
1515 bal_msg = (struct dm_balloon *)recv_buffer;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001516 dm->state = DM_BALLOON_UP;
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001517 dm_device.balloon_wrk.num_pages = bal_msg->num_pages;
1518 schedule_work(&dm_device.balloon_wrk.wrk);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001519 break;
1520
1521 case DM_UNBALLOON_REQUEST:
Dexuan Cui25bd2b22019-11-19 23:16:05 -08001522 if (allow_hibernation) {
1523 pr_info("Ignore balloon-down request!\n");
1524 break;
1525 }
1526
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001527 dm->state = DM_BALLOON_DOWN;
1528 balloon_down(dm,
1529 (struct dm_unballoon_request *)recv_buffer);
1530 break;
1531
1532 case DM_MEM_HOT_ADD_REQUEST:
K. Y. Srinivasanc51af822013-03-15 12:25:41 -07001533 if (dm->state == DM_HOT_ADD)
1534 pr_warn("Currently hot-adding\n");
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001535 dm->state = DM_HOT_ADD;
K. Y. Srinivasanc51af822013-03-15 12:25:41 -07001536 ha_msg = (struct dm_hot_add *)recv_buffer;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001537 if (ha_msg->hdr.size == sizeof(struct dm_hot_add)) {
1538 /*
1539 * This is a normal hot-add request specifying
1540 * hot-add memory.
1541 */
Vitaly Kuznetsovd19a55d2016-04-30 19:21:36 -07001542 dm->host_specified_ha_region = false;
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001543 ha_pg_range = &ha_msg->range;
1544 dm->ha_wrk.ha_page_range = *ha_pg_range;
1545 dm->ha_wrk.ha_region_range.page_range = 0;
1546 } else {
1547 /*
1548 * Host is specifying that we first hot-add
1549 * a region and then partially populate this
1550 * region.
1551 */
1552 dm->host_specified_ha_region = true;
1553 ha_pg_range = &ha_msg->range;
1554 ha_region = &ha_pg_range[1];
1555 dm->ha_wrk.ha_page_range = *ha_pg_range;
1556 dm->ha_wrk.ha_region_range = *ha_region;
1557 }
K. Y. Srinivasanc51af822013-03-15 12:25:41 -07001558 schedule_work(&dm_device.ha_wrk.wrk);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001559 break;
1560
1561 case DM_INFO_MESSAGE:
1562 process_info(dm, (struct dm_info_msg *)dm_msg);
1563 break;
1564
1565 default:
Vitaly Kuznetsov223e1e42018-03-04 22:17:19 -07001566 pr_warn("Unhandled message: type: %d\n", dm_hdr->type);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001567
1568 }
1569 }
1570
1571}
1572
Sunil Muthuswamy6dc2a772021-03-23 18:47:16 +00001573/* Hyper-V only supports reporting 2MB pages or higher */
1574#define HV_MIN_PAGE_REPORTING_ORDER 9
1575#define HV_MIN_PAGE_REPORTING_LEN (HV_HYP_PAGE_SIZE << HV_MIN_PAGE_REPORTING_ORDER)
1576static int hv_free_page_report(struct page_reporting_dev_info *pr_dev_info,
1577 struct scatterlist *sgl, unsigned int nents)
1578{
1579 unsigned long flags;
1580 struct hv_memory_hint *hint;
1581 int i;
1582 u64 status;
1583 struct scatterlist *sg;
1584
1585 WARN_ON_ONCE(nents > HV_MEMORY_HINT_MAX_GPA_PAGE_RANGES);
1586 WARN_ON_ONCE(sgl->length < HV_MIN_PAGE_REPORTING_LEN);
1587 local_irq_save(flags);
1588 hint = *(struct hv_memory_hint **)this_cpu_ptr(hyperv_pcpu_input_arg);
1589 if (!hint) {
1590 local_irq_restore(flags);
1591 return -ENOSPC;
1592 }
1593
1594 hint->type = HV_EXT_MEMORY_HEAT_HINT_TYPE_COLD_DISCARD;
1595 hint->reserved = 0;
1596 for_each_sg(sgl, sg, nents, i) {
1597 union hv_gpa_page_range *range;
1598
1599 range = &hint->ranges[i];
1600 range->address_space = 0;
1601 /* page reporting only reports 2MB pages or higher */
1602 range->page.largepage = 1;
1603 range->page.additional_pages =
1604 (sg->length / HV_MIN_PAGE_REPORTING_LEN) - 1;
1605 range->page_size = HV_GPA_PAGE_RANGE_PAGE_SIZE_2MB;
1606 range->base_large_pfn =
1607 page_to_hvpfn(sg_page(sg)) >> HV_MIN_PAGE_REPORTING_ORDER;
1608 }
1609
1610 status = hv_do_rep_hypercall(HV_EXT_CALL_MEMORY_HEAT_HINT, nents, 0,
1611 hint, NULL);
1612 local_irq_restore(flags);
1613 if ((status & HV_HYPERCALL_RESULT_MASK) != HV_STATUS_SUCCESS) {
1614 pr_err("Cold memory discard hypercall failed with status %llx\n",
1615 status);
1616 return -EINVAL;
1617 }
1618
1619 return 0;
1620}
1621
1622static void enable_page_reporting(void)
1623{
1624 int ret;
1625
1626 /* Essentially, validating 'PAGE_REPORTING_MIN_ORDER' is big enough. */
1627 if (pageblock_order < HV_MIN_PAGE_REPORTING_ORDER) {
1628 pr_debug("Cold memory discard is only supported on 2MB pages and above\n");
1629 return;
1630 }
1631
1632 if (!hv_query_ext_cap(HV_EXT_CAPABILITY_MEMORY_COLD_DISCARD_HINT)) {
1633 pr_debug("Cold memory discard hint not supported by Hyper-V\n");
1634 return;
1635 }
1636
1637 BUILD_BUG_ON(PAGE_REPORTING_CAPACITY > HV_MEMORY_HINT_MAX_GPA_PAGE_RANGES);
1638 dm_device.pr_dev_info.report = hv_free_page_report;
1639 ret = page_reporting_register(&dm_device.pr_dev_info);
1640 if (ret < 0) {
1641 dm_device.pr_dev_info.report = NULL;
1642 pr_err("Failed to enable cold memory discard: %d\n", ret);
1643 } else {
1644 pr_info("Cold memory discard hint enabled\n");
1645 }
1646}
1647
1648static void disable_page_reporting(void)
1649{
1650 if (dm_device.pr_dev_info.report) {
1651 page_reporting_unregister(&dm_device.pr_dev_info);
1652 dm_device.pr_dev_info.report = NULL;
1653 }
1654}
1655
Dexuan Cui221f6df2019-06-14 18:42:30 +00001656static int balloon_connect_vsp(struct hv_device *dev)
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001657{
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001658 struct dm_version_request version_req;
1659 struct dm_capabilities cap_msg;
Dexuan Cui221f6df2019-06-14 18:42:30 +00001660 unsigned long t;
1661 int ret;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001662
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001663 ret = vmbus_open(dev->channel, dm_ring_size, dm_ring_size, NULL, 0,
Dexuan Cui221f6df2019-06-14 18:42:30 +00001664 balloon_onchannelcallback, dev);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001665 if (ret)
Dexuan Cui1fed17d2019-06-14 18:42:17 +00001666 return ret;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001667
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001668 /*
1669 * Initiate the hand shake with the host and negotiate
1670 * a version that the host can support. We start with the
1671 * highest version number and go down if the host cannot
1672 * support it.
1673 */
1674 memset(&version_req, 0, sizeof(struct dm_version_request));
1675 version_req.hdr.type = DM_VERSION_REQUEST;
1676 version_req.hdr.size = sizeof(struct dm_version_request);
1677 version_req.hdr.trans_id = atomic_inc_return(&trans_id);
Alex Ngb6ddeae2015-08-01 16:08:13 -07001678 version_req.version.version = DYNMEM_PROTOCOL_VERSION_WIN10;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001679 version_req.is_last_attempt = 0;
Alex Ngb3bb97b2016-11-06 13:14:09 -08001680 dm_device.version = version_req.version.version;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001681
1682 ret = vmbus_sendpacket(dev->channel, &version_req,
Dexuan Cui221f6df2019-06-14 18:42:30 +00001683 sizeof(struct dm_version_request),
1684 (unsigned long)NULL, VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001685 if (ret)
Dexuan Cui221f6df2019-06-14 18:42:30 +00001686 goto out;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001687
1688 t = wait_for_completion_timeout(&dm_device.host_event, 5*HZ);
1689 if (t == 0) {
1690 ret = -ETIMEDOUT;
Dexuan Cui221f6df2019-06-14 18:42:30 +00001691 goto out;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001692 }
1693
1694 /*
1695 * If we could not negotiate a compatible version with the host
1696 * fail the probe function.
1697 */
1698 if (dm_device.state == DM_INIT_ERROR) {
Dexuan Cui221f6df2019-06-14 18:42:30 +00001699 ret = -EPROTO;
1700 goto out;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001701 }
Alex Ngb3bb97b2016-11-06 13:14:09 -08001702
1703 pr_info("Using Dynamic Memory protocol version %u.%u\n",
1704 DYNMEM_MAJOR_VERSION(dm_device.version),
1705 DYNMEM_MINOR_VERSION(dm_device.version));
1706
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001707 /*
1708 * Now submit our capabilities to the host.
1709 */
1710 memset(&cap_msg, 0, sizeof(struct dm_capabilities));
1711 cap_msg.hdr.type = DM_CAPABILITIES_REPORT;
1712 cap_msg.hdr.size = sizeof(struct dm_capabilities);
1713 cap_msg.hdr.trans_id = atomic_inc_return(&trans_id);
1714
Dexuan Cui25bd2b22019-11-19 23:16:05 -08001715 /*
1716 * When hibernation (i.e. virtual ACPI S4 state) is enabled, the host
1717 * currently still requires the bits to be set, so we have to add code
1718 * to fail the host's hot-add and balloon up/down requests, if any.
1719 */
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001720 cap_msg.caps.cap_bits.balloon = 1;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001721 cap_msg.caps.cap_bits.hot_add = 1;
1722
1723 /*
K. Y. Srinivasan647965a2013-03-29 07:36:11 -07001724 * Specify our alignment requirements as it relates
1725 * memory hot-add. Specify 128MB alignment.
1726 */
1727 cap_msg.caps.cap_bits.hot_add_alignment = 7;
1728
1729 /*
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001730 * Currently the host does not use these
1731 * values and we set them to what is done in the
1732 * Windows driver.
1733 */
1734 cap_msg.min_page_cnt = 0;
1735 cap_msg.max_page_number = -1;
1736
1737 ret = vmbus_sendpacket(dev->channel, &cap_msg,
Dexuan Cui221f6df2019-06-14 18:42:30 +00001738 sizeof(struct dm_capabilities),
1739 (unsigned long)NULL, VM_PKT_DATA_INBAND, 0);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001740 if (ret)
Dexuan Cui221f6df2019-06-14 18:42:30 +00001741 goto out;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001742
1743 t = wait_for_completion_timeout(&dm_device.host_event, 5*HZ);
1744 if (t == 0) {
1745 ret = -ETIMEDOUT;
Dexuan Cui221f6df2019-06-14 18:42:30 +00001746 goto out;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001747 }
1748
1749 /*
1750 * If the host does not like our capabilities,
1751 * fail the probe function.
1752 */
1753 if (dm_device.state == DM_INIT_ERROR) {
Dexuan Cui221f6df2019-06-14 18:42:30 +00001754 ret = -EPROTO;
1755 goto out;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001756 }
1757
Dexuan Cui221f6df2019-06-14 18:42:30 +00001758 return 0;
1759out:
1760 vmbus_close(dev->channel);
1761 return ret;
1762}
1763
1764static int balloon_probe(struct hv_device *dev,
1765 const struct hv_vmbus_device_id *dev_id)
1766{
1767 int ret;
1768
Dexuan Cui25bd2b22019-11-19 23:16:05 -08001769 allow_hibernation = hv_is_hibernation_supported();
1770 if (allow_hibernation)
1771 hot_add = false;
1772
Dexuan Cui221f6df2019-06-14 18:42:30 +00001773#ifdef CONFIG_MEMORY_HOTPLUG
1774 do_hot_add = hot_add;
1775#else
1776 do_hot_add = false;
1777#endif
1778 dm_device.dev = dev;
1779 dm_device.state = DM_INITIALIZING;
1780 dm_device.next_version = DYNMEM_PROTOCOL_VERSION_WIN8;
1781 init_completion(&dm_device.host_event);
1782 init_completion(&dm_device.config_event);
1783 INIT_LIST_HEAD(&dm_device.ha_region_list);
1784 spin_lock_init(&dm_device.ha_lock);
1785 INIT_WORK(&dm_device.balloon_wrk.wrk, balloon_up);
1786 INIT_WORK(&dm_device.ha_wrk.wrk, hot_add_req);
1787 dm_device.host_specified_ha_region = false;
1788
1789#ifdef CONFIG_MEMORY_HOTPLUG
1790 set_online_page_callback(&hv_online_page);
David Hildenbrandbc58ebd2020-04-06 20:07:32 -07001791 init_completion(&dm_device.ol_waitevent);
Dexuan Cui221f6df2019-06-14 18:42:30 +00001792 register_memory_notifier(&hv_memory_nb);
1793#endif
1794
1795 hv_set_drvdata(dev, &dm_device);
1796
1797 ret = balloon_connect_vsp(dev);
1798 if (ret != 0)
1799 return ret;
1800
Sunil Muthuswamy6dc2a772021-03-23 18:47:16 +00001801 enable_page_reporting();
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001802 dm_device.state = DM_INITIALIZED;
Dexuan Cui221f6df2019-06-14 18:42:30 +00001803
1804 dm_device.thread =
1805 kthread_run(dm_thread_func, &dm_device, "hv_balloon");
1806 if (IS_ERR(dm_device.thread)) {
1807 ret = PTR_ERR(dm_device.thread);
1808 goto probe_error;
1809 }
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001810
1811 return 0;
1812
Dexuan Cui221f6df2019-06-14 18:42:30 +00001813probe_error:
Dexuan Cui25bd2b22019-11-19 23:16:05 -08001814 dm_device.state = DM_INIT_ERROR;
1815 dm_device.thread = NULL;
Sunil Muthuswamy6dc2a772021-03-23 18:47:16 +00001816 disable_page_reporting();
Dexuan Cui221f6df2019-06-14 18:42:30 +00001817 vmbus_close(dev->channel);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001818#ifdef CONFIG_MEMORY_HOTPLUG
Dexuan Cui221f6df2019-06-14 18:42:30 +00001819 unregister_memory_notifier(&hv_memory_nb);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001820 restore_online_page_callback(&hv_online_page);
1821#endif
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001822 return ret;
1823}
1824
1825static int balloon_remove(struct hv_device *dev)
1826{
1827 struct hv_dynmem_device *dm = hv_get_drvdata(dev);
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -07001828 struct hv_hotadd_state *has, *tmp;
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -07001829 struct hv_hotadd_gap *gap, *tmp_gap;
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -07001830 unsigned long flags;
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001831
1832 if (dm->num_pages_ballooned != 0)
1833 pr_warn("Ballooned pages: %d\n", dm->num_pages_ballooned);
1834
K. Y. Srinivasan6571b2d2013-03-15 12:25:40 -07001835 cancel_work_sync(&dm->balloon_wrk.wrk);
K. Y. Srinivasanc51af822013-03-15 12:25:41 -07001836 cancel_work_sync(&dm->ha_wrk.wrk);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001837
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001838 kthread_stop(dm->thread);
Sunil Muthuswamy6dc2a772021-03-23 18:47:16 +00001839 disable_page_reporting();
Dexuan Cui221f6df2019-06-14 18:42:30 +00001840 vmbus_close(dev->channel);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001841#ifdef CONFIG_MEMORY_HOTPLUG
K. Y. Srinivasan22f88472015-01-09 23:54:30 -08001842 unregister_memory_notifier(&hv_memory_nb);
Dexuan Cui221f6df2019-06-14 18:42:30 +00001843 restore_online_page_callback(&hv_online_page);
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001844#endif
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -07001845 spin_lock_irqsave(&dm_device.ha_lock, flags);
1846 list_for_each_entry_safe(has, tmp, &dm->ha_region_list, list) {
Vitaly Kuznetsovcb7a5722016-08-24 16:23:10 -07001847 list_for_each_entry_safe(gap, tmp_gap, &has->gap_list, list) {
1848 list_del(&gap->list);
1849 kfree(gap);
1850 }
K. Y. Srinivasan1cac8cd2013-03-15 12:25:43 -07001851 list_del(&has->list);
1852 kfree(has);
1853 }
Vitaly Kuznetsoveece30b2016-08-24 16:23:12 -07001854 spin_unlock_irqrestore(&dm_device.ha_lock, flags);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001855
1856 return 0;
1857}
1858
Dexuan Cui25bd2b22019-11-19 23:16:05 -08001859static int balloon_suspend(struct hv_device *hv_dev)
1860{
1861 struct hv_dynmem_device *dm = hv_get_drvdata(hv_dev);
1862
1863 tasklet_disable(&hv_dev->channel->callback_event);
1864
1865 cancel_work_sync(&dm->balloon_wrk.wrk);
1866 cancel_work_sync(&dm->ha_wrk.wrk);
1867
1868 if (dm->thread) {
1869 kthread_stop(dm->thread);
1870 dm->thread = NULL;
1871 vmbus_close(hv_dev->channel);
1872 }
1873
1874 tasklet_enable(&hv_dev->channel->callback_event);
1875
1876 return 0;
1877
1878}
1879
1880static int balloon_resume(struct hv_device *dev)
1881{
1882 int ret;
1883
1884 dm_device.state = DM_INITIALIZING;
1885
1886 ret = balloon_connect_vsp(dev);
1887
1888 if (ret != 0)
1889 goto out;
1890
1891 dm_device.thread =
1892 kthread_run(dm_thread_func, &dm_device, "hv_balloon");
1893 if (IS_ERR(dm_device.thread)) {
1894 ret = PTR_ERR(dm_device.thread);
1895 dm_device.thread = NULL;
1896 goto close_channel;
1897 }
1898
1899 dm_device.state = DM_INITIALIZED;
1900 return 0;
1901close_channel:
1902 vmbus_close(dev->channel);
1903out:
1904 dm_device.state = DM_INIT_ERROR;
1905#ifdef CONFIG_MEMORY_HOTPLUG
1906 unregister_memory_notifier(&hv_memory_nb);
1907 restore_online_page_callback(&hv_online_page);
1908#endif
1909 return ret;
1910}
1911
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001912static const struct hv_vmbus_device_id id_table[] = {
1913 /* Dynamic Memory Class ID */
1914 /* 525074DC-8985-46e2-8057-A307DC18A502 */
K. Y. Srinivasand13984e2013-01-23 17:42:41 -08001915 { HV_DM_GUID, },
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001916 { },
1917};
1918
1919MODULE_DEVICE_TABLE(vmbus, id_table);
1920
1921static struct hv_driver balloon_drv = {
1922 .name = "hv_balloon",
1923 .id_table = id_table,
1924 .probe = balloon_probe,
1925 .remove = balloon_remove,
Dexuan Cui25bd2b22019-11-19 23:16:05 -08001926 .suspend = balloon_suspend,
1927 .resume = balloon_resume,
Arjan van de Venaf0a5642018-06-05 13:37:49 -07001928 .driver = {
1929 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
1930 },
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001931};
1932
1933static int __init init_balloon_drv(void)
1934{
1935
1936 return vmbus_driver_register(&balloon_drv);
1937}
1938
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001939module_init(init_balloon_drv);
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001940
1941MODULE_DESCRIPTION("Hyper-V Balloon");
K. Y. Srinivasan9aa8b502012-11-14 01:09:02 -08001942MODULE_LICENSE("GPL");