2 * Copyright (c) 2012, Microsoft Corporation.
5 * K. Y. Srinivasan <kys@microsoft.com>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published
9 * by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
14 * NON INFRINGEMENT. See the GNU General Public License for more
19 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
21 #include <linux/kernel.h>
22 #include <linux/mman.h>
23 #include <linux/delay.h>
24 #include <linux/init.h>
25 #include <linux/module.h>
26 #include <linux/slab.h>
27 #include <linux/kthread.h>
28 #include <linux/completion.h>
29 #include <linux/memory_hotplug.h>
30 #include <linux/memory.h>
31 #include <linux/notifier.h>
32 #include <linux/percpu_counter.h>
34 #include <linux/hyperv.h>
37 * We begin with definitions supporting the Dynamic Memory protocol
40 * Begin protocol definitions.
46 * Protocol versions. The low word is the minor version, the high word the major
51 * Changed to 0.1 on 2009/03/25
52 * Changes to 0.2 on 2009/05/14
53 * Changes to 0.3 on 2009/12/03
54 * Changed to 1.0 on 2011/04/05
57 #define DYNMEM_MAKE_VERSION(Major, Minor) ((__u32)(((Major) << 16) | (Minor)))
58 #define DYNMEM_MAJOR_VERSION(Version) ((__u32)(Version) >> 16)
59 #define DYNMEM_MINOR_VERSION(Version) ((__u32)(Version) & 0xff)
62 DYNMEM_PROTOCOL_VERSION_1
= DYNMEM_MAKE_VERSION(0, 3),
63 DYNMEM_PROTOCOL_VERSION_2
= DYNMEM_MAKE_VERSION(1, 0),
65 DYNMEM_PROTOCOL_VERSION_WIN7
= DYNMEM_PROTOCOL_VERSION_1
,
66 DYNMEM_PROTOCOL_VERSION_WIN8
= DYNMEM_PROTOCOL_VERSION_2
,
68 DYNMEM_PROTOCOL_VERSION_CURRENT
= DYNMEM_PROTOCOL_VERSION_WIN8
77 enum dm_message_type
{
82 DM_VERSION_REQUEST
= 1,
83 DM_VERSION_RESPONSE
= 2,
84 DM_CAPABILITIES_REPORT
= 3,
85 DM_CAPABILITIES_RESPONSE
= 4,
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,
103 * Structures defining the dynamic memory management
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.
126 __u64 hot_add_alignment
:4;
132 union dm_mem_page_range
{
135 * The PFN number of the first page in the range.
136 * 40 bits is the architectural limit of a PFN
141 * The number of pages in the range.
151 * The header for all dynamic memory messages:
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.
165 * A generic message format for dynamic memory.
166 * Specific message formats are defined later in the file.
170 struct dm_header hdr
;
171 __u8 data
[]; /* enclosed message */
176 * Specific message types supporting the dynamic memory protocol.
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.
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.
189 struct dm_version_request
{
190 struct dm_header hdr
;
191 union dm_version version
;
192 __u32 is_last_attempt
:1;
197 * Version response message; Host to Guest and indicates
198 * if the host has accepted the version sent by the guest.
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.
204 * reservedz: Reserved field, set to zero.
207 struct dm_version_response
{
208 struct dm_header hdr
;
214 * Message reporting capabilities. This is sent from the guest to the
218 struct dm_capabilities
{
219 struct dm_header hdr
;
222 __u64 max_page_number
;
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
231 * is_accepted: Indicates if the host has accepted guest's capabilities.
232 * reservedz: Must be 0.
235 struct dm_capabilities_resp_msg
{
236 struct dm_header hdr
;
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.
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.
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.
262 struct dm_header hdr
;
265 __u64 page_file_size
;
267 __u32 page_file_writes
;
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.
277 * num_pages: number of pages to allocate.
281 struct dm_header hdr
;
288 * Balloon response message; this message is sent from the guest
289 * to the host in response to the balloon message.
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.
295 * range_count: The number of ranges in the range array.
297 * range_array: An array of page ranges returned to the host.
301 struct dm_balloon_response
{
302 struct dm_header hdr
;
305 __u32 range_count
:31;
306 union dm_mem_page_range range_array
[];
310 * Un-balloon message; this message is sent from the host
311 * to the guest to give guest more memory.
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.
316 * reservedz: Reserved; must be set to zero.
318 * range_count: The number of ranges in the range array.
320 * range_array: An array of page ranges returned to the host.
324 struct dm_unballoon_request
{
325 struct dm_header hdr
;
329 union dm_mem_page_range range_array
[];
333 * Un-balloon response message; this message is sent from the guest
334 * to the host in response to an unballoon request.
338 struct dm_unballoon_response
{
339 struct dm_header hdr
;
344 * Hot add request message. Message sent from the host to the guest.
346 * mem_range: Memory range to hot add.
348 * On Linux we currently don't support this since we cannot hot add
349 * arbitrary granularity of memory.
353 struct dm_header hdr
;
354 union dm_mem_page_range range
;
358 * Hot add response message.
359 * This message is sent by the guest to report the status of a hot add request.
360 * If page_count is less than the requested page count, then the host should
361 * assume all further hot add requests will fail, since this indicates that
362 * the guest has hit an upper physical memory barrier.
364 * Hot adds may also fail due to low resources; in this case, the guest must
365 * not complete this message until the hot add can succeed, and the host must
366 * not send a new hot add request until the response is sent.
367 * If VSC fails to hot add memory DYNMEM_NUMBER_OF_UNSUCCESSFUL_HOTADD_ATTEMPTS
368 * times it fails the request.
371 * page_count: number of pages that were successfully hot added.
373 * result: result of the operation 1: success, 0: failure.
377 struct dm_hot_add_response
{
378 struct dm_header hdr
;
384 * Types of information sent from host to the guest.
388 INFO_TYPE_MAX_PAGE_CNT
= 0,
394 * Header for the information message.
397 struct dm_info_header
{
398 enum dm_info_type type
;
403 * This message is sent from the host to the guest to pass
404 * some relevant information (win8 addition).
407 * info_size: size of the information blob.
408 * info: information blob.
412 struct dm_header hdr
;
419 * End protocol definitions.
423 * State to manage hot adding memory into the guest.
424 * The range start_pfn : end_pfn specifies the range
425 * that the host has asked us to hot add. The range
426 * start_pfn : ha_end_pfn specifies the range that we have
427 * currently hot added. We hot add in multiples of 128M
428 * chunks; it is possible that we may not be able to bring
429 * online all the pages in the region. The range
430 * covered_start_pfn : covered_end_pfn defines the pages that can
434 struct hv_hotadd_state
{
435 struct list_head list
;
436 unsigned long start_pfn
;
437 unsigned long covered_start_pfn
;
438 unsigned long covered_end_pfn
;
439 unsigned long ha_end_pfn
;
440 unsigned long end_pfn
;
443 struct balloon_state
{
445 struct work_struct wrk
;
449 union dm_mem_page_range ha_page_range
;
450 union dm_mem_page_range ha_region_range
;
451 struct work_struct wrk
;
454 static bool hot_add
= true;
455 static bool do_hot_add
;
457 * Delay reporting memory pressure by
458 * the specified number of seconds.
460 static uint pressure_report_delay
= 45;
462 module_param(hot_add
, bool, (S_IRUGO
| S_IWUSR
));
463 MODULE_PARM_DESC(hot_add
, "If set attempt memory hot_add");
465 module_param(pressure_report_delay
, uint
, (S_IRUGO
| S_IWUSR
));
466 MODULE_PARM_DESC(pressure_report_delay
, "Delay in secs in reporting pressure");
467 static atomic_t trans_id
= ATOMIC_INIT(0);
469 static int dm_ring_size
= (5 * PAGE_SIZE
);
472 * Driver specific state.
485 static __u8 recv_buffer
[PAGE_SIZE
];
486 static __u8
*send_buffer
;
487 #define PAGES_IN_2M 512
488 #define HA_CHUNK (32 * 1024)
490 struct hv_dynmem_device
{
491 struct hv_device
*dev
;
492 enum hv_dm_state state
;
493 struct completion host_event
;
494 struct completion config_event
;
497 * Number of pages we have currently ballooned out.
499 unsigned int num_pages_ballooned
;
502 * State to manage the ballooning (up) operation.
504 struct balloon_state balloon_wrk
;
507 * State to execute the "hot-add" operation.
509 struct hot_add_wrk ha_wrk
;
512 * This state tracks if the host has specified a hot-add
515 bool host_specified_ha_region
;
518 * State to synchronize hot-add.
520 struct completion ol_waitevent
;
523 * This thread handles hot-add
524 * requests from the host as well as notifying
525 * the host with regards to memory pressure in
528 struct task_struct
*thread
;
531 * A list of hot-add regions.
533 struct list_head ha_region_list
;
536 * We start with the highest version we can support
537 * and downgrade based on the host; we save here the
538 * next version to try.
543 static struct hv_dynmem_device dm_device
;
545 #ifdef CONFIG_MEMORY_HOTPLUG
547 static void hv_bring_pgs_online(unsigned long start_pfn
, unsigned long size
)
551 for (i
= 0; i
< size
; i
++) {
553 pg
= pfn_to_page(start_pfn
+ i
);
554 __online_page_set_limits(pg
);
555 __online_page_increment_counters(pg
);
556 __online_page_free(pg
);
560 static void hv_mem_hot_add(unsigned long start
, unsigned long size
,
561 unsigned long pfn_count
,
562 struct hv_hotadd_state
*has
)
566 unsigned long start_pfn
;
567 unsigned long processed_pfn
;
568 unsigned long total_pfn
= pfn_count
;
570 for (i
= 0; i
< (size
/HA_CHUNK
); i
++) {
571 start_pfn
= start
+ (i
* HA_CHUNK
);
572 has
->ha_end_pfn
+= HA_CHUNK
;
574 if (total_pfn
> HA_CHUNK
) {
575 processed_pfn
= HA_CHUNK
;
576 total_pfn
-= HA_CHUNK
;
578 processed_pfn
= total_pfn
;
582 has
->covered_end_pfn
+= processed_pfn
;
584 init_completion(&dm_device
.ol_waitevent
);
585 dm_device
.ha_waiting
= true;
587 nid
= memory_add_physaddr_to_nid(PFN_PHYS(start_pfn
));
588 ret
= add_memory(nid
, PFN_PHYS((start_pfn
)),
589 (HA_CHUNK
<< PAGE_SHIFT
));
592 pr_info("hot_add memory failed error is %d\n", ret
);
593 if (ret
== -EEXIST
) {
595 * This error indicates that the error
596 * is not a transient failure. This is the
597 * case where the guest's physical address map
598 * precludes hot adding memory. Stop all further
603 has
->ha_end_pfn
-= HA_CHUNK
;
604 has
->covered_end_pfn
-= processed_pfn
;
609 * Wait for the memory block to be onlined.
610 * Since the hot add has succeeded, it is ok to
611 * proceed even if the pages in the hot added region
612 * have not been "onlined" within the allowed time.
614 wait_for_completion_timeout(&dm_device
.ol_waitevent
, 5*HZ
);
621 static void hv_online_page(struct page
*pg
)
623 struct list_head
*cur
;
624 struct hv_hotadd_state
*has
;
625 unsigned long cur_start_pgp
;
626 unsigned long cur_end_pgp
;
628 if (dm_device
.ha_waiting
) {
629 dm_device
.ha_waiting
= false;
630 complete(&dm_device
.ol_waitevent
);
633 list_for_each(cur
, &dm_device
.ha_region_list
) {
634 has
= list_entry(cur
, struct hv_hotadd_state
, list
);
635 cur_start_pgp
= (unsigned long)
636 pfn_to_page(has
->covered_start_pfn
);
637 cur_end_pgp
= (unsigned long)pfn_to_page(has
->covered_end_pfn
);
639 if (((unsigned long)pg
>= cur_start_pgp
) &&
640 ((unsigned long)pg
< cur_end_pgp
)) {
642 * This frame is currently backed; online the
645 __online_page_set_limits(pg
);
646 __online_page_increment_counters(pg
);
647 __online_page_free(pg
);
648 has
->covered_start_pfn
++;
653 static bool pfn_covered(unsigned long start_pfn
, unsigned long pfn_cnt
)
655 struct list_head
*cur
;
656 struct hv_hotadd_state
*has
;
657 unsigned long residual
, new_inc
;
659 if (list_empty(&dm_device
.ha_region_list
))
662 list_for_each(cur
, &dm_device
.ha_region_list
) {
663 has
= list_entry(cur
, struct hv_hotadd_state
, list
);
666 * If the pfn range we are dealing with is not in the current
667 * "hot add block", move on.
669 if ((start_pfn
>= has
->end_pfn
))
672 * If the current hot add-request extends beyond
673 * our current limit; extend it.
675 if ((start_pfn
+ pfn_cnt
) > has
->end_pfn
) {
676 residual
= (start_pfn
+ pfn_cnt
- has
->end_pfn
);
678 * Extend the region by multiples of HA_CHUNK.
680 new_inc
= (residual
/ HA_CHUNK
) * HA_CHUNK
;
681 if (residual
% HA_CHUNK
)
684 has
->end_pfn
+= new_inc
;
688 * If the current start pfn is not where the covered_end
692 if (has
->covered_end_pfn
!= start_pfn
) {
693 has
->covered_end_pfn
= start_pfn
;
694 has
->covered_start_pfn
= start_pfn
;
703 static unsigned long handle_pg_range(unsigned long pg_start
,
704 unsigned long pg_count
)
706 unsigned long start_pfn
= pg_start
;
707 unsigned long pfn_cnt
= pg_count
;
709 struct list_head
*cur
;
710 struct hv_hotadd_state
*has
;
711 unsigned long pgs_ol
= 0;
712 unsigned long old_covered_state
;
714 if (list_empty(&dm_device
.ha_region_list
))
717 list_for_each(cur
, &dm_device
.ha_region_list
) {
718 has
= list_entry(cur
, struct hv_hotadd_state
, list
);
721 * If the pfn range we are dealing with is not in the current
722 * "hot add block", move on.
724 if ((start_pfn
>= has
->end_pfn
))
727 old_covered_state
= has
->covered_end_pfn
;
729 if (start_pfn
< has
->ha_end_pfn
) {
731 * This is the case where we are backing pages
732 * in an already hot added region. Bring
733 * these pages online first.
735 pgs_ol
= has
->ha_end_pfn
- start_pfn
;
736 if (pgs_ol
> pfn_cnt
)
738 hv_bring_pgs_online(start_pfn
, pgs_ol
);
739 has
->covered_end_pfn
+= pgs_ol
;
740 has
->covered_start_pfn
+= pgs_ol
;
744 if ((has
->ha_end_pfn
< has
->end_pfn
) && (pfn_cnt
> 0)) {
746 * We have some residual hot add range
747 * that needs to be hot added; hot add
748 * it now. Hot add a multiple of
749 * of HA_CHUNK that fully covers the pages
752 size
= (has
->end_pfn
- has
->ha_end_pfn
);
753 if (pfn_cnt
<= size
) {
754 size
= ((pfn_cnt
/ HA_CHUNK
) * HA_CHUNK
);
755 if (pfn_cnt
% HA_CHUNK
)
760 hv_mem_hot_add(has
->ha_end_pfn
, size
, pfn_cnt
, has
);
763 * If we managed to online any pages that were given to us,
764 * we declare success.
766 return has
->covered_end_pfn
- old_covered_state
;
773 static unsigned long process_hot_add(unsigned long pg_start
,
774 unsigned long pfn_cnt
,
775 unsigned long rg_start
,
776 unsigned long rg_size
)
778 struct hv_hotadd_state
*ha_region
= NULL
;
783 if (!dm_device
.host_specified_ha_region
)
784 if (pfn_covered(pg_start
, pfn_cnt
))
788 * If the host has specified a hot-add range; deal with it first.
792 ha_region
= kzalloc(sizeof(struct hv_hotadd_state
), GFP_KERNEL
);
796 INIT_LIST_HEAD(&ha_region
->list
);
798 list_add_tail(&ha_region
->list
, &dm_device
.ha_region_list
);
799 ha_region
->start_pfn
= rg_start
;
800 ha_region
->ha_end_pfn
= rg_start
;
801 ha_region
->covered_start_pfn
= pg_start
;
802 ha_region
->covered_end_pfn
= pg_start
;
803 ha_region
->end_pfn
= rg_start
+ rg_size
;
808 * Process the page range specified; bringing them
809 * online if possible.
811 return handle_pg_range(pg_start
, pfn_cnt
);
816 static void hot_add_req(struct work_struct
*dummy
)
818 struct dm_hot_add_response resp
;
819 #ifdef CONFIG_MEMORY_HOTPLUG
820 unsigned long pg_start
, pfn_cnt
;
821 unsigned long rg_start
, rg_sz
;
823 struct hv_dynmem_device
*dm
= &dm_device
;
825 memset(&resp
, 0, sizeof(struct dm_hot_add_response
));
826 resp
.hdr
.type
= DM_MEM_HOT_ADD_RESPONSE
;
827 resp
.hdr
.size
= sizeof(struct dm_hot_add_response
);
829 #ifdef CONFIG_MEMORY_HOTPLUG
830 pg_start
= dm
->ha_wrk
.ha_page_range
.finfo
.start_page
;
831 pfn_cnt
= dm
->ha_wrk
.ha_page_range
.finfo
.page_cnt
;
833 rg_start
= dm
->ha_wrk
.ha_region_range
.finfo
.start_page
;
834 rg_sz
= dm
->ha_wrk
.ha_region_range
.finfo
.page_cnt
;
836 if ((rg_start
== 0) && (!dm
->host_specified_ha_region
)) {
837 unsigned long region_size
;
838 unsigned long region_start
;
841 * The host has not specified the hot-add region.
842 * Based on the hot-add page range being specified,
843 * compute a hot-add region that can cover the pages
844 * that need to be hot-added while ensuring the alignment
845 * and size requirements of Linux as it relates to hot-add.
847 region_start
= pg_start
;
848 region_size
= (pfn_cnt
/ HA_CHUNK
) * HA_CHUNK
;
849 if (pfn_cnt
% HA_CHUNK
)
850 region_size
+= HA_CHUNK
;
852 region_start
= (pg_start
/ HA_CHUNK
) * HA_CHUNK
;
854 rg_start
= region_start
;
859 resp
.page_count
= process_hot_add(pg_start
, pfn_cnt
,
863 * The result field of the response structure has the
864 * following semantics:
866 * 1. If all or some pages hot-added: Guest should return success.
868 * 2. If no pages could be hot-added:
870 * If the guest returns success, then the host
871 * will not attempt any further hot-add operations. This
872 * signifies a permanent failure.
874 * If the guest returns failure, then this failure will be
875 * treated as a transient failure and the host may retry the
876 * hot-add operation after some delay.
878 if (resp
.page_count
> 0)
880 else if (!do_hot_add
)
885 if (!do_hot_add
|| (resp
.page_count
== 0))
886 pr_info("Memory hot add failed\n");
888 dm
->state
= DM_INITIALIZED
;
889 resp
.hdr
.trans_id
= atomic_inc_return(&trans_id
);
890 vmbus_sendpacket(dm
->dev
->channel
, &resp
,
891 sizeof(struct dm_hot_add_response
),
893 VM_PKT_DATA_INBAND
, 0);
896 static void process_info(struct hv_dynmem_device
*dm
, struct dm_info_msg
*msg
)
898 struct dm_info_header
*info_hdr
;
900 info_hdr
= (struct dm_info_header
*)msg
->info
;
902 switch (info_hdr
->type
) {
903 case INFO_TYPE_MAX_PAGE_CNT
:
904 pr_info("Received INFO_TYPE_MAX_PAGE_CNT\n");
905 pr_info("Data Size is %d\n", info_hdr
->data_size
);
908 pr_info("Received Unknown type: %d\n", info_hdr
->type
);
912 static unsigned long compute_balloon_floor(void)
914 unsigned long min_pages
;
915 #define MB2PAGES(mb) ((mb) << (20 - PAGE_SHIFT))
916 /* Simple continuous piecewiese linear function:
917 * max MiB -> min MiB gradient
928 if (totalram_pages
< MB2PAGES(128))
929 min_pages
= MB2PAGES(8) + (totalram_pages
>> 1);
930 else if (totalram_pages
< MB2PAGES(512))
931 min_pages
= MB2PAGES(40) + (totalram_pages
>> 2);
932 else if (totalram_pages
< MB2PAGES(2048))
933 min_pages
= MB2PAGES(104) + (totalram_pages
>> 3);
935 min_pages
= MB2PAGES(296) + (totalram_pages
>> 5);
941 * Post our status as it relates memory pressure to the
942 * host. Host expects the guests to post this status
943 * periodically at 1 second intervals.
945 * The metrics specified in this protocol are very Windows
946 * specific and so we cook up numbers here to convey our memory
950 static void post_status(struct hv_dynmem_device
*dm
)
952 struct dm_status status
;
955 if (pressure_report_delay
> 0) {
956 --pressure_report_delay
;
960 memset(&status
, 0, sizeof(struct dm_status
));
961 status
.hdr
.type
= DM_STATUS_REPORT
;
962 status
.hdr
.size
= sizeof(struct dm_status
);
963 status
.hdr
.trans_id
= atomic_inc_return(&trans_id
);
966 * The host expects the guest to report free memory.
967 * Further, the host expects the pressure information to
968 * include the ballooned out pages.
969 * For a given amount of memory that we are managing, we
970 * need to compute a floor below which we should not balloon.
971 * Compute this and add it to the pressure report.
973 status
.num_avail
= val
.freeram
;
974 status
.num_committed
= vm_memory_committed() +
975 dm
->num_pages_ballooned
+
976 compute_balloon_floor();
979 * If our transaction ID is no longer current, just don't
980 * send the status. This can happen if we were interrupted
981 * after we picked our transaction ID.
983 if (status
.hdr
.trans_id
!= atomic_read(&trans_id
))
986 vmbus_sendpacket(dm
->dev
->channel
, &status
,
987 sizeof(struct dm_status
),
989 VM_PKT_DATA_INBAND
, 0);
993 static void free_balloon_pages(struct hv_dynmem_device
*dm
,
994 union dm_mem_page_range
*range_array
)
996 int num_pages
= range_array
->finfo
.page_cnt
;
997 __u64 start_frame
= range_array
->finfo
.start_page
;
1001 for (i
= 0; i
< num_pages
; i
++) {
1002 pg
= pfn_to_page(i
+ start_frame
);
1004 dm
->num_pages_ballooned
--;
1010 static int alloc_balloon_pages(struct hv_dynmem_device
*dm
, int num_pages
,
1011 struct dm_balloon_response
*bl_resp
, int alloc_unit
,
1017 if (num_pages
< alloc_unit
)
1020 for (i
= 0; (i
* alloc_unit
) < num_pages
; i
++) {
1021 if (bl_resp
->hdr
.size
+ sizeof(union dm_mem_page_range
) >
1023 return i
* alloc_unit
;
1026 * We execute this code in a thread context. Furthermore,
1027 * we don't want the kernel to try too hard.
1029 pg
= alloc_pages(GFP_HIGHUSER
| __GFP_NORETRY
|
1030 __GFP_NOMEMALLOC
| __GFP_NOWARN
,
1031 get_order(alloc_unit
<< PAGE_SHIFT
));
1034 *alloc_error
= true;
1035 return i
* alloc_unit
;
1039 dm
->num_pages_ballooned
+= alloc_unit
;
1042 * If we allocatted 2M pages; split them so we
1043 * can free them in any order we get.
1046 if (alloc_unit
!= 1)
1047 split_page(pg
, get_order(alloc_unit
<< PAGE_SHIFT
));
1049 bl_resp
->range_count
++;
1050 bl_resp
->range_array
[i
].finfo
.start_page
=
1052 bl_resp
->range_array
[i
].finfo
.page_cnt
= alloc_unit
;
1053 bl_resp
->hdr
.size
+= sizeof(union dm_mem_page_range
);
1062 static void balloon_up(struct work_struct
*dummy
)
1064 int num_pages
= dm_device
.balloon_wrk
.num_pages
;
1065 int num_ballooned
= 0;
1066 struct dm_balloon_response
*bl_resp
;
1069 bool alloc_error
= false;
1075 * We will attempt 2M allocations. However, if we fail to
1076 * allocate 2M chunks, we will go back to 4k allocations.
1081 bl_resp
= (struct dm_balloon_response
*)send_buffer
;
1082 memset(send_buffer
, 0, PAGE_SIZE
);
1083 bl_resp
->hdr
.type
= DM_BALLOON_RESPONSE
;
1084 bl_resp
->hdr
.size
= sizeof(struct dm_balloon_response
);
1085 bl_resp
->more_pages
= 1;
1088 num_pages
-= num_ballooned
;
1089 num_ballooned
= alloc_balloon_pages(&dm_device
, num_pages
,
1090 bl_resp
, alloc_unit
,
1093 if ((alloc_error
) && (alloc_unit
!= 1)) {
1098 if ((alloc_error
) || (num_ballooned
== num_pages
)) {
1099 bl_resp
->more_pages
= 0;
1101 dm_device
.state
= DM_INITIALIZED
;
1105 * We are pushing a lot of data through the channel;
1106 * deal with transient failures caused because of the
1107 * lack of space in the ring buffer.
1111 bl_resp
->hdr
.trans_id
= atomic_inc_return(&trans_id
);
1112 ret
= vmbus_sendpacket(dm_device
.dev
->channel
,
1115 (unsigned long)NULL
,
1116 VM_PKT_DATA_INBAND
, 0);
1121 } while (ret
== -EAGAIN
);
1125 * Free up the memory we allocatted.
1127 pr_info("Balloon response failed\n");
1129 for (i
= 0; i
< bl_resp
->range_count
; i
++)
1130 free_balloon_pages(&dm_device
,
1131 &bl_resp
->range_array
[i
]);
1139 static void balloon_down(struct hv_dynmem_device
*dm
,
1140 struct dm_unballoon_request
*req
)
1142 union dm_mem_page_range
*range_array
= req
->range_array
;
1143 int range_count
= req
->range_count
;
1144 struct dm_unballoon_response resp
;
1147 for (i
= 0; i
< range_count
; i
++)
1148 free_balloon_pages(dm
, &range_array
[i
]);
1150 if (req
->more_pages
== 1)
1153 memset(&resp
, 0, sizeof(struct dm_unballoon_response
));
1154 resp
.hdr
.type
= DM_UNBALLOON_RESPONSE
;
1155 resp
.hdr
.trans_id
= atomic_inc_return(&trans_id
);
1156 resp
.hdr
.size
= sizeof(struct dm_unballoon_response
);
1158 vmbus_sendpacket(dm_device
.dev
->channel
, &resp
,
1159 sizeof(struct dm_unballoon_response
),
1160 (unsigned long)NULL
,
1161 VM_PKT_DATA_INBAND
, 0);
1163 dm
->state
= DM_INITIALIZED
;
1166 static void balloon_onchannelcallback(void *context
);
1168 static int dm_thread_func(void *dm_dev
)
1170 struct hv_dynmem_device
*dm
= dm_dev
;
1173 while (!kthread_should_stop()) {
1174 t
= wait_for_completion_timeout(&dm_device
.config_event
, 1*HZ
);
1176 * The host expects us to post information on the memory
1177 * pressure every second.
1189 static void version_resp(struct hv_dynmem_device
*dm
,
1190 struct dm_version_response
*vresp
)
1192 struct dm_version_request version_req
;
1195 if (vresp
->is_accepted
) {
1197 * We are done; wakeup the
1198 * context waiting for version
1201 complete(&dm
->host_event
);
1205 * If there are more versions to try, continue
1206 * with negotiations; if not
1207 * shutdown the service since we are not able
1208 * to negotiate a suitable version number
1211 if (dm
->next_version
== 0)
1214 dm
->next_version
= 0;
1215 memset(&version_req
, 0, sizeof(struct dm_version_request
));
1216 version_req
.hdr
.type
= DM_VERSION_REQUEST
;
1217 version_req
.hdr
.size
= sizeof(struct dm_version_request
);
1218 version_req
.hdr
.trans_id
= atomic_inc_return(&trans_id
);
1219 version_req
.version
.version
= DYNMEM_PROTOCOL_VERSION_WIN7
;
1220 version_req
.is_last_attempt
= 1;
1222 ret
= vmbus_sendpacket(dm
->dev
->channel
, &version_req
,
1223 sizeof(struct dm_version_request
),
1224 (unsigned long)NULL
,
1225 VM_PKT_DATA_INBAND
, 0);
1233 dm
->state
= DM_INIT_ERROR
;
1234 complete(&dm
->host_event
);
1237 static void cap_resp(struct hv_dynmem_device
*dm
,
1238 struct dm_capabilities_resp_msg
*cap_resp
)
1240 if (!cap_resp
->is_accepted
) {
1241 pr_info("Capabilities not accepted by host\n");
1242 dm
->state
= DM_INIT_ERROR
;
1244 complete(&dm
->host_event
);
1247 static void balloon_onchannelcallback(void *context
)
1249 struct hv_device
*dev
= context
;
1252 struct dm_message
*dm_msg
;
1253 struct dm_header
*dm_hdr
;
1254 struct hv_dynmem_device
*dm
= hv_get_drvdata(dev
);
1255 struct dm_balloon
*bal_msg
;
1256 struct dm_hot_add
*ha_msg
;
1257 union dm_mem_page_range
*ha_pg_range
;
1258 union dm_mem_page_range
*ha_region
;
1260 memset(recv_buffer
, 0, sizeof(recv_buffer
));
1261 vmbus_recvpacket(dev
->channel
, recv_buffer
,
1262 PAGE_SIZE
, &recvlen
, &requestid
);
1265 dm_msg
= (struct dm_message
*)recv_buffer
;
1266 dm_hdr
= &dm_msg
->hdr
;
1268 switch (dm_hdr
->type
) {
1269 case DM_VERSION_RESPONSE
:
1271 (struct dm_version_response
*)dm_msg
);
1274 case DM_CAPABILITIES_RESPONSE
:
1276 (struct dm_capabilities_resp_msg
*)dm_msg
);
1279 case DM_BALLOON_REQUEST
:
1280 if (dm
->state
== DM_BALLOON_UP
)
1281 pr_warn("Currently ballooning\n");
1282 bal_msg
= (struct dm_balloon
*)recv_buffer
;
1283 dm
->state
= DM_BALLOON_UP
;
1284 dm_device
.balloon_wrk
.num_pages
= bal_msg
->num_pages
;
1285 schedule_work(&dm_device
.balloon_wrk
.wrk
);
1288 case DM_UNBALLOON_REQUEST
:
1289 dm
->state
= DM_BALLOON_DOWN
;
1291 (struct dm_unballoon_request
*)recv_buffer
);
1294 case DM_MEM_HOT_ADD_REQUEST
:
1295 if (dm
->state
== DM_HOT_ADD
)
1296 pr_warn("Currently hot-adding\n");
1297 dm
->state
= DM_HOT_ADD
;
1298 ha_msg
= (struct dm_hot_add
*)recv_buffer
;
1299 if (ha_msg
->hdr
.size
== sizeof(struct dm_hot_add
)) {
1301 * This is a normal hot-add request specifying
1304 ha_pg_range
= &ha_msg
->range
;
1305 dm
->ha_wrk
.ha_page_range
= *ha_pg_range
;
1306 dm
->ha_wrk
.ha_region_range
.page_range
= 0;
1309 * Host is specifying that we first hot-add
1310 * a region and then partially populate this
1313 dm
->host_specified_ha_region
= true;
1314 ha_pg_range
= &ha_msg
->range
;
1315 ha_region
= &ha_pg_range
[1];
1316 dm
->ha_wrk
.ha_page_range
= *ha_pg_range
;
1317 dm
->ha_wrk
.ha_region_range
= *ha_region
;
1319 schedule_work(&dm_device
.ha_wrk
.wrk
);
1322 case DM_INFO_MESSAGE
:
1323 process_info(dm
, (struct dm_info_msg
*)dm_msg
);
1327 pr_err("Unhandled message: type: %d\n", dm_hdr
->type
);
1334 static int balloon_probe(struct hv_device
*dev
,
1335 const struct hv_vmbus_device_id
*dev_id
)
1338 struct dm_version_request version_req
;
1339 struct dm_capabilities cap_msg
;
1341 do_hot_add
= hot_add
;
1344 * First allocate a send buffer.
1347 send_buffer
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
1351 ret
= vmbus_open(dev
->channel
, dm_ring_size
, dm_ring_size
, NULL
, 0,
1352 balloon_onchannelcallback
, dev
);
1357 dm_device
.dev
= dev
;
1358 dm_device
.state
= DM_INITIALIZING
;
1359 dm_device
.next_version
= DYNMEM_PROTOCOL_VERSION_WIN7
;
1360 init_completion(&dm_device
.host_event
);
1361 init_completion(&dm_device
.config_event
);
1362 INIT_LIST_HEAD(&dm_device
.ha_region_list
);
1363 INIT_WORK(&dm_device
.balloon_wrk
.wrk
, balloon_up
);
1364 INIT_WORK(&dm_device
.ha_wrk
.wrk
, hot_add_req
);
1365 dm_device
.host_specified_ha_region
= false;
1368 kthread_run(dm_thread_func
, &dm_device
, "hv_balloon");
1369 if (IS_ERR(dm_device
.thread
)) {
1370 ret
= PTR_ERR(dm_device
.thread
);
1374 #ifdef CONFIG_MEMORY_HOTPLUG
1375 set_online_page_callback(&hv_online_page
);
1378 hv_set_drvdata(dev
, &dm_device
);
1380 * Initiate the hand shake with the host and negotiate
1381 * a version that the host can support. We start with the
1382 * highest version number and go down if the host cannot
1385 memset(&version_req
, 0, sizeof(struct dm_version_request
));
1386 version_req
.hdr
.type
= DM_VERSION_REQUEST
;
1387 version_req
.hdr
.size
= sizeof(struct dm_version_request
);
1388 version_req
.hdr
.trans_id
= atomic_inc_return(&trans_id
);
1389 version_req
.version
.version
= DYNMEM_PROTOCOL_VERSION_WIN8
;
1390 version_req
.is_last_attempt
= 0;
1392 ret
= vmbus_sendpacket(dev
->channel
, &version_req
,
1393 sizeof(struct dm_version_request
),
1394 (unsigned long)NULL
,
1395 VM_PKT_DATA_INBAND
, 0);
1399 t
= wait_for_completion_timeout(&dm_device
.host_event
, 5*HZ
);
1406 * If we could not negotiate a compatible version with the host
1407 * fail the probe function.
1409 if (dm_device
.state
== DM_INIT_ERROR
) {
1414 * Now submit our capabilities to the host.
1416 memset(&cap_msg
, 0, sizeof(struct dm_capabilities
));
1417 cap_msg
.hdr
.type
= DM_CAPABILITIES_REPORT
;
1418 cap_msg
.hdr
.size
= sizeof(struct dm_capabilities
);
1419 cap_msg
.hdr
.trans_id
= atomic_inc_return(&trans_id
);
1421 cap_msg
.caps
.cap_bits
.balloon
= 1;
1422 cap_msg
.caps
.cap_bits
.hot_add
= 1;
1425 * Specify our alignment requirements as it relates
1426 * memory hot-add. Specify 128MB alignment.
1428 cap_msg
.caps
.cap_bits
.hot_add_alignment
= 7;
1431 * Currently the host does not use these
1432 * values and we set them to what is done in the
1435 cap_msg
.min_page_cnt
= 0;
1436 cap_msg
.max_page_number
= -1;
1438 ret
= vmbus_sendpacket(dev
->channel
, &cap_msg
,
1439 sizeof(struct dm_capabilities
),
1440 (unsigned long)NULL
,
1441 VM_PKT_DATA_INBAND
, 0);
1445 t
= wait_for_completion_timeout(&dm_device
.host_event
, 5*HZ
);
1452 * If the host does not like our capabilities,
1453 * fail the probe function.
1455 if (dm_device
.state
== DM_INIT_ERROR
) {
1460 dm_device
.state
= DM_INITIALIZED
;
1465 #ifdef CONFIG_MEMORY_HOTPLUG
1466 restore_online_page_callback(&hv_online_page
);
1468 kthread_stop(dm_device
.thread
);
1471 vmbus_close(dev
->channel
);
1477 static int balloon_remove(struct hv_device
*dev
)
1479 struct hv_dynmem_device
*dm
= hv_get_drvdata(dev
);
1480 struct list_head
*cur
, *tmp
;
1481 struct hv_hotadd_state
*has
;
1483 if (dm
->num_pages_ballooned
!= 0)
1484 pr_warn("Ballooned pages: %d\n", dm
->num_pages_ballooned
);
1486 cancel_work_sync(&dm
->balloon_wrk
.wrk
);
1487 cancel_work_sync(&dm
->ha_wrk
.wrk
);
1489 vmbus_close(dev
->channel
);
1490 kthread_stop(dm
->thread
);
1492 #ifdef CONFIG_MEMORY_HOTPLUG
1493 restore_online_page_callback(&hv_online_page
);
1495 list_for_each_safe(cur
, tmp
, &dm
->ha_region_list
) {
1496 has
= list_entry(cur
, struct hv_hotadd_state
, list
);
1497 list_del(&has
->list
);
1504 static const struct hv_vmbus_device_id id_table
[] = {
1505 /* Dynamic Memory Class ID */
1506 /* 525074DC-8985-46e2-8057-A307DC18A502 */
1511 MODULE_DEVICE_TABLE(vmbus
, id_table
);
1513 static struct hv_driver balloon_drv
= {
1514 .name
= "hv_balloon",
1515 .id_table
= id_table
,
1516 .probe
= balloon_probe
,
1517 .remove
= balloon_remove
,
1520 static int __init
init_balloon_drv(void)
1523 return vmbus_driver_register(&balloon_drv
);
1526 module_init(init_balloon_drv
);
1528 MODULE_DESCRIPTION("Hyper-V Balloon");
1529 MODULE_LICENSE("GPL");