4 * Copyright (C) 2020 Red Hat, Inc.
7 * David Hildenbrand <david@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2.
10 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
15 #include "qemu/cutils.h"
16 #include "qemu/error-report.h"
17 #include "qemu/units.h"
18 #include "sysemu/numa.h"
19 #include "sysemu/sysemu.h"
20 #include "sysemu/reset.h"
21 #include "hw/virtio/virtio.h"
22 #include "hw/virtio/virtio-bus.h"
23 #include "hw/virtio/virtio-access.h"
24 #include "hw/virtio/virtio-mem.h"
25 #include "qapi/error.h"
26 #include "qapi/visitor.h"
27 #include "exec/ram_addr.h"
28 #include "migration/misc.h"
29 #include "hw/boards.h"
30 #include "hw/qdev-properties.h"
31 #include CONFIG_DEVICES
35 * We only had legacy x86 guests that did not support
36 * VIRTIO_MEM_F_UNPLUGGED_INACCESSIBLE. Other targets don't have legacy guests.
38 #if defined(TARGET_X86_64) || defined(TARGET_I386)
39 #define VIRTIO_MEM_HAS_LEGACY_GUESTS
43 * Let's not allow blocks smaller than 1 MiB, for example, to keep the tracking
46 #define VIRTIO_MEM_MIN_BLOCK_SIZE ((uint32_t)(1 * MiB))
48 static uint32_t virtio_mem_default_thp_size(void)
50 uint32_t default_thp_size
= VIRTIO_MEM_MIN_BLOCK_SIZE
;
52 #if defined(__x86_64__) || defined(__arm__) || defined(__powerpc64__)
53 default_thp_size
= 2 * MiB
;
54 #elif defined(__aarch64__)
55 if (qemu_real_host_page_size() == 4 * KiB
) {
56 default_thp_size
= 2 * MiB
;
57 } else if (qemu_real_host_page_size() == 16 * KiB
) {
58 default_thp_size
= 32 * MiB
;
59 } else if (qemu_real_host_page_size() == 64 * KiB
) {
60 default_thp_size
= 512 * MiB
;
64 return default_thp_size
;
68 * We want to have a reasonable default block size such that
69 * 1. We avoid splitting THPs when unplugging memory, which degrades
71 * 2. We avoid placing THPs for plugged blocks that also cover unplugged
74 * The actual THP size might differ between Linux kernels, so we try to probe
75 * it. In the future (if we ever run into issues regarding 2.), we might want
76 * to disable THP in case we fail to properly probe the THP size, or if the
77 * block size is configured smaller than the THP size.
79 static uint32_t thp_size
;
81 #define HPAGE_PMD_SIZE_PATH "/sys/kernel/mm/transparent_hugepage/hpage_pmd_size"
82 static uint32_t virtio_mem_thp_size(void)
84 gchar
*content
= NULL
;
93 * Try to probe the actual THP size, fallback to (sane but eventually
94 * incorrect) default sizes.
96 if (g_file_get_contents(HPAGE_PMD_SIZE_PATH
, &content
, NULL
, NULL
) &&
97 !qemu_strtou64(content
, &endptr
, 0, &tmp
) &&
98 (!endptr
|| *endptr
== '\n')) {
99 /* Sanity-check the value and fallback to something reasonable. */
100 if (!tmp
|| !is_power_of_2(tmp
)) {
101 warn_report("Read unsupported THP size: %" PRIx64
, tmp
);
108 thp_size
= virtio_mem_default_thp_size();
109 warn_report("Could not detect THP size, falling back to %" PRIx64
110 " MiB.", thp_size
/ MiB
);
117 static uint64_t virtio_mem_default_block_size(RAMBlock
*rb
)
119 const uint64_t page_size
= qemu_ram_pagesize(rb
);
121 /* We can have hugetlbfs with a page size smaller than the THP size. */
122 if (page_size
== qemu_real_host_page_size()) {
123 return MAX(page_size
, virtio_mem_thp_size());
125 return MAX(page_size
, VIRTIO_MEM_MIN_BLOCK_SIZE
);
128 #if defined(VIRTIO_MEM_HAS_LEGACY_GUESTS)
129 static bool virtio_mem_has_shared_zeropage(RAMBlock
*rb
)
132 * We only have a guaranteed shared zeropage on ordinary MAP_PRIVATE
133 * anonymous RAM. In any other case, reading unplugged *can* populate a
134 * fresh page, consuming actual memory.
136 return !qemu_ram_is_shared(rb
) && rb
->fd
< 0 &&
137 qemu_ram_pagesize(rb
) == qemu_real_host_page_size();
139 #endif /* VIRTIO_MEM_HAS_LEGACY_GUESTS */
142 * Size the usable region bigger than the requested size if possible. Esp.
143 * Linux guests will only add (aligned) memory blocks in case they fully
144 * fit into the usable region, but plug+online only a subset of the pages.
145 * The memory block size corresponds mostly to the section size.
147 * This allows e.g., to add 20MB with a section size of 128MB on x86_64, and
148 * a section size of 512MB on arm64 (as long as the start address is properly
149 * aligned, similar to ordinary DIMMs).
151 * We can change this at any time and maybe even make it configurable if
152 * necessary (as the section size can change). But it's more likely that the
153 * section size will rather get smaller and not bigger over time.
155 #if defined(TARGET_X86_64) || defined(TARGET_I386)
156 #define VIRTIO_MEM_USABLE_EXTENT (2 * (128 * MiB))
157 #elif defined(TARGET_ARM)
158 #define VIRTIO_MEM_USABLE_EXTENT (2 * (512 * MiB))
160 #error VIRTIO_MEM_USABLE_EXTENT not defined
163 static bool virtio_mem_is_busy(void)
166 * Postcopy cannot handle concurrent discards and we don't want to migrate
167 * pages on-demand with stale content when plugging new blocks.
169 * For precopy, we don't want unplugged blocks in our migration stream, and
170 * when plugging new blocks, the page content might differ between source
171 * and destination (observable by the guest when not initializing pages
172 * after plugging them) until we're running on the destination (as we didn't
173 * migrate these blocks when they were unplugged).
175 return migration_in_incoming_postcopy() || !migration_is_idle();
178 typedef int (*virtio_mem_range_cb
)(const VirtIOMEM
*vmem
, void *arg
,
179 uint64_t offset
, uint64_t size
);
181 static int virtio_mem_for_each_unplugged_range(const VirtIOMEM
*vmem
, void *arg
,
182 virtio_mem_range_cb cb
)
184 unsigned long first_zero_bit
, last_zero_bit
;
185 uint64_t offset
, size
;
188 first_zero_bit
= find_first_zero_bit(vmem
->bitmap
, vmem
->bitmap_size
);
189 while (first_zero_bit
< vmem
->bitmap_size
) {
190 offset
= first_zero_bit
* vmem
->block_size
;
191 last_zero_bit
= find_next_bit(vmem
->bitmap
, vmem
->bitmap_size
,
192 first_zero_bit
+ 1) - 1;
193 size
= (last_zero_bit
- first_zero_bit
+ 1) * vmem
->block_size
;
195 ret
= cb(vmem
, arg
, offset
, size
);
199 first_zero_bit
= find_next_zero_bit(vmem
->bitmap
, vmem
->bitmap_size
,
206 * Adjust the memory section to cover the intersection with the given range.
208 * Returns false if the intersection is empty, otherwise returns true.
210 static bool virito_mem_intersect_memory_section(MemoryRegionSection
*s
,
211 uint64_t offset
, uint64_t size
)
213 uint64_t start
= MAX(s
->offset_within_region
, offset
);
214 uint64_t end
= MIN(s
->offset_within_region
+ int128_get64(s
->size
),
221 s
->offset_within_address_space
+= start
- s
->offset_within_region
;
222 s
->offset_within_region
= start
;
223 s
->size
= int128_make64(end
- start
);
227 typedef int (*virtio_mem_section_cb
)(MemoryRegionSection
*s
, void *arg
);
229 static int virtio_mem_for_each_plugged_section(const VirtIOMEM
*vmem
,
230 MemoryRegionSection
*s
,
232 virtio_mem_section_cb cb
)
234 unsigned long first_bit
, last_bit
;
235 uint64_t offset
, size
;
238 first_bit
= s
->offset_within_region
/ vmem
->bitmap_size
;
239 first_bit
= find_next_bit(vmem
->bitmap
, vmem
->bitmap_size
, first_bit
);
240 while (first_bit
< vmem
->bitmap_size
) {
241 MemoryRegionSection tmp
= *s
;
243 offset
= first_bit
* vmem
->block_size
;
244 last_bit
= find_next_zero_bit(vmem
->bitmap
, vmem
->bitmap_size
,
246 size
= (last_bit
- first_bit
+ 1) * vmem
->block_size
;
248 if (!virito_mem_intersect_memory_section(&tmp
, offset
, size
)) {
255 first_bit
= find_next_bit(vmem
->bitmap
, vmem
->bitmap_size
,
261 static int virtio_mem_for_each_unplugged_section(const VirtIOMEM
*vmem
,
262 MemoryRegionSection
*s
,
264 virtio_mem_section_cb cb
)
266 unsigned long first_bit
, last_bit
;
267 uint64_t offset
, size
;
270 first_bit
= s
->offset_within_region
/ vmem
->bitmap_size
;
271 first_bit
= find_next_zero_bit(vmem
->bitmap
, vmem
->bitmap_size
, first_bit
);
272 while (first_bit
< vmem
->bitmap_size
) {
273 MemoryRegionSection tmp
= *s
;
275 offset
= first_bit
* vmem
->block_size
;
276 last_bit
= find_next_bit(vmem
->bitmap
, vmem
->bitmap_size
,
278 size
= (last_bit
- first_bit
+ 1) * vmem
->block_size
;
280 if (!virito_mem_intersect_memory_section(&tmp
, offset
, size
)) {
287 first_bit
= find_next_zero_bit(vmem
->bitmap
, vmem
->bitmap_size
,
293 static int virtio_mem_notify_populate_cb(MemoryRegionSection
*s
, void *arg
)
295 RamDiscardListener
*rdl
= arg
;
297 return rdl
->notify_populate(rdl
, s
);
300 static int virtio_mem_notify_discard_cb(MemoryRegionSection
*s
, void *arg
)
302 RamDiscardListener
*rdl
= arg
;
304 rdl
->notify_discard(rdl
, s
);
308 static void virtio_mem_notify_unplug(VirtIOMEM
*vmem
, uint64_t offset
,
311 RamDiscardListener
*rdl
;
313 QLIST_FOREACH(rdl
, &vmem
->rdl_list
, next
) {
314 MemoryRegionSection tmp
= *rdl
->section
;
316 if (!virito_mem_intersect_memory_section(&tmp
, offset
, size
)) {
319 rdl
->notify_discard(rdl
, &tmp
);
323 static int virtio_mem_notify_plug(VirtIOMEM
*vmem
, uint64_t offset
,
326 RamDiscardListener
*rdl
, *rdl2
;
329 QLIST_FOREACH(rdl
, &vmem
->rdl_list
, next
) {
330 MemoryRegionSection tmp
= *rdl
->section
;
332 if (!virito_mem_intersect_memory_section(&tmp
, offset
, size
)) {
335 ret
= rdl
->notify_populate(rdl
, &tmp
);
342 /* Notify all already-notified listeners. */
343 QLIST_FOREACH(rdl2
, &vmem
->rdl_list
, next
) {
344 MemoryRegionSection tmp
= *rdl
->section
;
349 if (!virito_mem_intersect_memory_section(&tmp
, offset
, size
)) {
352 rdl2
->notify_discard(rdl2
, &tmp
);
358 static void virtio_mem_notify_unplug_all(VirtIOMEM
*vmem
)
360 RamDiscardListener
*rdl
;
366 QLIST_FOREACH(rdl
, &vmem
->rdl_list
, next
) {
367 if (rdl
->double_discard_supported
) {
368 rdl
->notify_discard(rdl
, rdl
->section
);
370 virtio_mem_for_each_plugged_section(vmem
, rdl
->section
, rdl
,
371 virtio_mem_notify_discard_cb
);
376 static bool virtio_mem_test_bitmap(const VirtIOMEM
*vmem
, uint64_t start_gpa
,
377 uint64_t size
, bool plugged
)
379 const unsigned long first_bit
= (start_gpa
- vmem
->addr
) / vmem
->block_size
;
380 const unsigned long last_bit
= first_bit
+ (size
/ vmem
->block_size
) - 1;
381 unsigned long found_bit
;
383 /* We fake a shorter bitmap to avoid searching too far. */
385 found_bit
= find_next_zero_bit(vmem
->bitmap
, last_bit
+ 1, first_bit
);
387 found_bit
= find_next_bit(vmem
->bitmap
, last_bit
+ 1, first_bit
);
389 return found_bit
> last_bit
;
392 static void virtio_mem_set_bitmap(VirtIOMEM
*vmem
, uint64_t start_gpa
,
393 uint64_t size
, bool plugged
)
395 const unsigned long bit
= (start_gpa
- vmem
->addr
) / vmem
->block_size
;
396 const unsigned long nbits
= size
/ vmem
->block_size
;
399 bitmap_set(vmem
->bitmap
, bit
, nbits
);
401 bitmap_clear(vmem
->bitmap
, bit
, nbits
);
405 static void virtio_mem_send_response(VirtIOMEM
*vmem
, VirtQueueElement
*elem
,
406 struct virtio_mem_resp
*resp
)
408 VirtIODevice
*vdev
= VIRTIO_DEVICE(vmem
);
409 VirtQueue
*vq
= vmem
->vq
;
411 trace_virtio_mem_send_response(le16_to_cpu(resp
->type
));
412 iov_from_buf(elem
->in_sg
, elem
->in_num
, 0, resp
, sizeof(*resp
));
414 virtqueue_push(vq
, elem
, sizeof(*resp
));
415 virtio_notify(vdev
, vq
);
418 static void virtio_mem_send_response_simple(VirtIOMEM
*vmem
,
419 VirtQueueElement
*elem
,
422 struct virtio_mem_resp resp
= {
423 .type
= cpu_to_le16(type
),
426 virtio_mem_send_response(vmem
, elem
, &resp
);
429 static bool virtio_mem_valid_range(const VirtIOMEM
*vmem
, uint64_t gpa
,
432 if (!QEMU_IS_ALIGNED(gpa
, vmem
->block_size
)) {
435 if (gpa
+ size
< gpa
|| !size
) {
438 if (gpa
< vmem
->addr
|| gpa
>= vmem
->addr
+ vmem
->usable_region_size
) {
441 if (gpa
+ size
> vmem
->addr
+ vmem
->usable_region_size
) {
447 static int virtio_mem_set_block_state(VirtIOMEM
*vmem
, uint64_t start_gpa
,
448 uint64_t size
, bool plug
)
450 const uint64_t offset
= start_gpa
- vmem
->addr
;
451 RAMBlock
*rb
= vmem
->memdev
->mr
.ram_block
;
453 if (virtio_mem_is_busy()) {
458 if (ram_block_discard_range(rb
, offset
, size
)) {
461 virtio_mem_notify_unplug(vmem
, offset
, size
);
465 if (vmem
->prealloc
) {
466 void *area
= memory_region_get_ram_ptr(&vmem
->memdev
->mr
) + offset
;
467 int fd
= memory_region_get_fd(&vmem
->memdev
->mr
);
468 Error
*local_err
= NULL
;
470 os_mem_prealloc(fd
, area
, size
, 1, &local_err
);
475 * Warn only once, we don't want to fill the log with these
479 warn_report_err(local_err
);
482 error_free(local_err
);
488 ret
= virtio_mem_notify_plug(vmem
, offset
, size
);
492 /* Could be preallocation or a notifier populated memory. */
493 ram_block_discard_range(vmem
->memdev
->mr
.ram_block
, offset
, size
);
497 virtio_mem_set_bitmap(vmem
, start_gpa
, size
, plug
);
501 static int virtio_mem_state_change_request(VirtIOMEM
*vmem
, uint64_t gpa
,
502 uint16_t nb_blocks
, bool plug
)
504 const uint64_t size
= nb_blocks
* vmem
->block_size
;
507 if (!virtio_mem_valid_range(vmem
, gpa
, size
)) {
508 return VIRTIO_MEM_RESP_ERROR
;
511 if (plug
&& (vmem
->size
+ size
> vmem
->requested_size
)) {
512 return VIRTIO_MEM_RESP_NACK
;
515 /* test if really all blocks are in the opposite state */
516 if (!virtio_mem_test_bitmap(vmem
, gpa
, size
, !plug
)) {
517 return VIRTIO_MEM_RESP_ERROR
;
520 ret
= virtio_mem_set_block_state(vmem
, gpa
, size
, plug
);
522 return VIRTIO_MEM_RESP_BUSY
;
529 notifier_list_notify(&vmem
->size_change_notifiers
, &vmem
->size
);
530 return VIRTIO_MEM_RESP_ACK
;
533 static void virtio_mem_plug_request(VirtIOMEM
*vmem
, VirtQueueElement
*elem
,
534 struct virtio_mem_req
*req
)
536 const uint64_t gpa
= le64_to_cpu(req
->u
.plug
.addr
);
537 const uint16_t nb_blocks
= le16_to_cpu(req
->u
.plug
.nb_blocks
);
540 trace_virtio_mem_plug_request(gpa
, nb_blocks
);
541 type
= virtio_mem_state_change_request(vmem
, gpa
, nb_blocks
, true);
542 virtio_mem_send_response_simple(vmem
, elem
, type
);
545 static void virtio_mem_unplug_request(VirtIOMEM
*vmem
, VirtQueueElement
*elem
,
546 struct virtio_mem_req
*req
)
548 const uint64_t gpa
= le64_to_cpu(req
->u
.unplug
.addr
);
549 const uint16_t nb_blocks
= le16_to_cpu(req
->u
.unplug
.nb_blocks
);
552 trace_virtio_mem_unplug_request(gpa
, nb_blocks
);
553 type
= virtio_mem_state_change_request(vmem
, gpa
, nb_blocks
, false);
554 virtio_mem_send_response_simple(vmem
, elem
, type
);
557 static void virtio_mem_resize_usable_region(VirtIOMEM
*vmem
,
558 uint64_t requested_size
,
561 uint64_t newsize
= MIN(memory_region_size(&vmem
->memdev
->mr
),
562 requested_size
+ VIRTIO_MEM_USABLE_EXTENT
);
564 /* The usable region size always has to be multiples of the block size. */
565 newsize
= QEMU_ALIGN_UP(newsize
, vmem
->block_size
);
567 if (!requested_size
) {
571 if (newsize
< vmem
->usable_region_size
&& !can_shrink
) {
575 trace_virtio_mem_resized_usable_region(vmem
->usable_region_size
, newsize
);
576 vmem
->usable_region_size
= newsize
;
579 static int virtio_mem_unplug_all(VirtIOMEM
*vmem
)
581 RAMBlock
*rb
= vmem
->memdev
->mr
.ram_block
;
583 if (virtio_mem_is_busy()) {
587 if (ram_block_discard_range(rb
, 0, qemu_ram_get_used_length(rb
))) {
590 virtio_mem_notify_unplug_all(vmem
);
592 bitmap_clear(vmem
->bitmap
, 0, vmem
->bitmap_size
);
595 notifier_list_notify(&vmem
->size_change_notifiers
, &vmem
->size
);
597 trace_virtio_mem_unplugged_all();
598 virtio_mem_resize_usable_region(vmem
, vmem
->requested_size
, true);
602 static void virtio_mem_unplug_all_request(VirtIOMEM
*vmem
,
603 VirtQueueElement
*elem
)
605 trace_virtio_mem_unplug_all_request();
606 if (virtio_mem_unplug_all(vmem
)) {
607 virtio_mem_send_response_simple(vmem
, elem
, VIRTIO_MEM_RESP_BUSY
);
609 virtio_mem_send_response_simple(vmem
, elem
, VIRTIO_MEM_RESP_ACK
);
613 static void virtio_mem_state_request(VirtIOMEM
*vmem
, VirtQueueElement
*elem
,
614 struct virtio_mem_req
*req
)
616 const uint16_t nb_blocks
= le16_to_cpu(req
->u
.state
.nb_blocks
);
617 const uint64_t gpa
= le64_to_cpu(req
->u
.state
.addr
);
618 const uint64_t size
= nb_blocks
* vmem
->block_size
;
619 struct virtio_mem_resp resp
= {
620 .type
= cpu_to_le16(VIRTIO_MEM_RESP_ACK
),
623 trace_virtio_mem_state_request(gpa
, nb_blocks
);
624 if (!virtio_mem_valid_range(vmem
, gpa
, size
)) {
625 virtio_mem_send_response_simple(vmem
, elem
, VIRTIO_MEM_RESP_ERROR
);
629 if (virtio_mem_test_bitmap(vmem
, gpa
, size
, true)) {
630 resp
.u
.state
.state
= cpu_to_le16(VIRTIO_MEM_STATE_PLUGGED
);
631 } else if (virtio_mem_test_bitmap(vmem
, gpa
, size
, false)) {
632 resp
.u
.state
.state
= cpu_to_le16(VIRTIO_MEM_STATE_UNPLUGGED
);
634 resp
.u
.state
.state
= cpu_to_le16(VIRTIO_MEM_STATE_MIXED
);
636 trace_virtio_mem_state_response(le16_to_cpu(resp
.u
.state
.state
));
637 virtio_mem_send_response(vmem
, elem
, &resp
);
640 static void virtio_mem_handle_request(VirtIODevice
*vdev
, VirtQueue
*vq
)
642 const int len
= sizeof(struct virtio_mem_req
);
643 VirtIOMEM
*vmem
= VIRTIO_MEM(vdev
);
644 VirtQueueElement
*elem
;
645 struct virtio_mem_req req
;
649 elem
= virtqueue_pop(vq
, sizeof(VirtQueueElement
));
654 if (iov_to_buf(elem
->out_sg
, elem
->out_num
, 0, &req
, len
) < len
) {
655 virtio_error(vdev
, "virtio-mem protocol violation: invalid request"
657 virtqueue_detach_element(vq
, elem
, 0);
662 if (iov_size(elem
->in_sg
, elem
->in_num
) <
663 sizeof(struct virtio_mem_resp
)) {
664 virtio_error(vdev
, "virtio-mem protocol violation: not enough space"
665 " for response: %zu",
666 iov_size(elem
->in_sg
, elem
->in_num
));
667 virtqueue_detach_element(vq
, elem
, 0);
672 type
= le16_to_cpu(req
.type
);
674 case VIRTIO_MEM_REQ_PLUG
:
675 virtio_mem_plug_request(vmem
, elem
, &req
);
677 case VIRTIO_MEM_REQ_UNPLUG
:
678 virtio_mem_unplug_request(vmem
, elem
, &req
);
680 case VIRTIO_MEM_REQ_UNPLUG_ALL
:
681 virtio_mem_unplug_all_request(vmem
, elem
);
683 case VIRTIO_MEM_REQ_STATE
:
684 virtio_mem_state_request(vmem
, elem
, &req
);
687 virtio_error(vdev
, "virtio-mem protocol violation: unknown request"
689 virtqueue_detach_element(vq
, elem
, 0);
698 static void virtio_mem_get_config(VirtIODevice
*vdev
, uint8_t *config_data
)
700 VirtIOMEM
*vmem
= VIRTIO_MEM(vdev
);
701 struct virtio_mem_config
*config
= (void *) config_data
;
703 config
->block_size
= cpu_to_le64(vmem
->block_size
);
704 config
->node_id
= cpu_to_le16(vmem
->node
);
705 config
->requested_size
= cpu_to_le64(vmem
->requested_size
);
706 config
->plugged_size
= cpu_to_le64(vmem
->size
);
707 config
->addr
= cpu_to_le64(vmem
->addr
);
708 config
->region_size
= cpu_to_le64(memory_region_size(&vmem
->memdev
->mr
));
709 config
->usable_region_size
= cpu_to_le64(vmem
->usable_region_size
);
712 static uint64_t virtio_mem_get_features(VirtIODevice
*vdev
, uint64_t features
,
715 MachineState
*ms
= MACHINE(qdev_get_machine());
716 VirtIOMEM
*vmem
= VIRTIO_MEM(vdev
);
718 if (ms
->numa_state
) {
719 #if defined(CONFIG_ACPI)
720 virtio_add_feature(&features
, VIRTIO_MEM_F_ACPI_PXM
);
723 assert(vmem
->unplugged_inaccessible
!= ON_OFF_AUTO_AUTO
);
724 if (vmem
->unplugged_inaccessible
== ON_OFF_AUTO_ON
) {
725 virtio_add_feature(&features
, VIRTIO_MEM_F_UNPLUGGED_INACCESSIBLE
);
730 static int virtio_mem_validate_features(VirtIODevice
*vdev
)
732 if (virtio_host_has_feature(vdev
, VIRTIO_MEM_F_UNPLUGGED_INACCESSIBLE
) &&
733 !virtio_vdev_has_feature(vdev
, VIRTIO_MEM_F_UNPLUGGED_INACCESSIBLE
)) {
739 static void virtio_mem_system_reset(void *opaque
)
741 VirtIOMEM
*vmem
= VIRTIO_MEM(opaque
);
744 * During usual resets, we will unplug all memory and shrink the usable
745 * region size. This is, however, not possible in all scenarios. Then,
746 * the guest has to deal with this manually (VIRTIO_MEM_REQ_UNPLUG_ALL).
748 virtio_mem_unplug_all(vmem
);
751 static void virtio_mem_device_realize(DeviceState
*dev
, Error
**errp
)
753 MachineState
*ms
= MACHINE(qdev_get_machine());
754 int nb_numa_nodes
= ms
->numa_state
? ms
->numa_state
->num_nodes
: 0;
755 VirtIODevice
*vdev
= VIRTIO_DEVICE(dev
);
756 VirtIOMEM
*vmem
= VIRTIO_MEM(dev
);
762 error_setg(errp
, "'%s' property is not set", VIRTIO_MEM_MEMDEV_PROP
);
764 } else if (host_memory_backend_is_mapped(vmem
->memdev
)) {
765 error_setg(errp
, "'%s' property specifies a busy memdev: %s",
766 VIRTIO_MEM_MEMDEV_PROP
,
767 object_get_canonical_path_component(OBJECT(vmem
->memdev
)));
769 } else if (!memory_region_is_ram(&vmem
->memdev
->mr
) ||
770 memory_region_is_rom(&vmem
->memdev
->mr
) ||
771 !vmem
->memdev
->mr
.ram_block
) {
772 error_setg(errp
, "'%s' property specifies an unsupported memdev",
773 VIRTIO_MEM_MEMDEV_PROP
);
777 if ((nb_numa_nodes
&& vmem
->node
>= nb_numa_nodes
) ||
778 (!nb_numa_nodes
&& vmem
->node
)) {
779 error_setg(errp
, "'%s' property has value '%" PRIu32
"', which exceeds"
780 "the number of numa nodes: %d", VIRTIO_MEM_NODE_PROP
,
781 vmem
->node
, nb_numa_nodes
? nb_numa_nodes
: 1);
786 error_setg(errp
, "Incompatible with mlock");
790 rb
= vmem
->memdev
->mr
.ram_block
;
791 page_size
= qemu_ram_pagesize(rb
);
793 #if defined(VIRTIO_MEM_HAS_LEGACY_GUESTS)
794 switch (vmem
->unplugged_inaccessible
) {
795 case ON_OFF_AUTO_AUTO
:
796 if (virtio_mem_has_shared_zeropage(rb
)) {
797 vmem
->unplugged_inaccessible
= ON_OFF_AUTO_OFF
;
799 vmem
->unplugged_inaccessible
= ON_OFF_AUTO_ON
;
802 case ON_OFF_AUTO_OFF
:
803 if (!virtio_mem_has_shared_zeropage(rb
)) {
804 warn_report("'%s' property set to 'off' with a memdev that does"
805 " not support the shared zeropage.",
806 VIRTIO_MEM_UNPLUGGED_INACCESSIBLE_PROP
);
812 #else /* VIRTIO_MEM_HAS_LEGACY_GUESTS */
813 vmem
->unplugged_inaccessible
= ON_OFF_AUTO_ON
;
814 #endif /* VIRTIO_MEM_HAS_LEGACY_GUESTS */
817 * If the block size wasn't configured by the user, use a sane default. This
818 * allows using hugetlbfs backends of any page size without manual
821 if (!vmem
->block_size
) {
822 vmem
->block_size
= virtio_mem_default_block_size(rb
);
825 if (vmem
->block_size
< page_size
) {
826 error_setg(errp
, "'%s' property has to be at least the page size (0x%"
827 PRIx64
")", VIRTIO_MEM_BLOCK_SIZE_PROP
, page_size
);
829 } else if (vmem
->block_size
< virtio_mem_default_block_size(rb
)) {
830 warn_report("'%s' property is smaller than the default block size (%"
831 PRIx64
" MiB)", VIRTIO_MEM_BLOCK_SIZE_PROP
,
832 virtio_mem_default_block_size(rb
) / MiB
);
834 if (!QEMU_IS_ALIGNED(vmem
->requested_size
, vmem
->block_size
)) {
835 error_setg(errp
, "'%s' property has to be multiples of '%s' (0x%" PRIx64
836 ")", VIRTIO_MEM_REQUESTED_SIZE_PROP
,
837 VIRTIO_MEM_BLOCK_SIZE_PROP
, vmem
->block_size
);
839 } else if (!QEMU_IS_ALIGNED(vmem
->addr
, vmem
->block_size
)) {
840 error_setg(errp
, "'%s' property has to be multiples of '%s' (0x%" PRIx64
841 ")", VIRTIO_MEM_ADDR_PROP
, VIRTIO_MEM_BLOCK_SIZE_PROP
,
844 } else if (!QEMU_IS_ALIGNED(memory_region_size(&vmem
->memdev
->mr
),
846 error_setg(errp
, "'%s' property memdev size has to be multiples of"
847 "'%s' (0x%" PRIx64
")", VIRTIO_MEM_MEMDEV_PROP
,
848 VIRTIO_MEM_BLOCK_SIZE_PROP
, vmem
->block_size
);
852 if (ram_block_coordinated_discard_require(true)) {
853 error_setg(errp
, "Discarding RAM is disabled");
857 ret
= ram_block_discard_range(rb
, 0, qemu_ram_get_used_length(rb
));
859 error_setg_errno(errp
, -ret
, "Unexpected error discarding RAM");
860 ram_block_coordinated_discard_require(false);
864 virtio_mem_resize_usable_region(vmem
, vmem
->requested_size
, true);
866 vmem
->bitmap_size
= memory_region_size(&vmem
->memdev
->mr
) /
868 vmem
->bitmap
= bitmap_new(vmem
->bitmap_size
);
870 virtio_init(vdev
, VIRTIO_ID_MEM
, sizeof(struct virtio_mem_config
));
871 vmem
->vq
= virtio_add_queue(vdev
, 128, virtio_mem_handle_request
);
873 host_memory_backend_set_mapped(vmem
->memdev
, true);
874 vmstate_register_ram(&vmem
->memdev
->mr
, DEVICE(vmem
));
875 qemu_register_reset(virtio_mem_system_reset
, vmem
);
878 * Set ourselves as RamDiscardManager before the plug handler maps the
879 * memory region and exposes it via an address space.
881 memory_region_set_ram_discard_manager(&vmem
->memdev
->mr
,
882 RAM_DISCARD_MANAGER(vmem
));
885 static void virtio_mem_device_unrealize(DeviceState
*dev
)
887 VirtIODevice
*vdev
= VIRTIO_DEVICE(dev
);
888 VirtIOMEM
*vmem
= VIRTIO_MEM(dev
);
891 * The unplug handler unmapped the memory region, it cannot be
892 * found via an address space anymore. Unset ourselves.
894 memory_region_set_ram_discard_manager(&vmem
->memdev
->mr
, NULL
);
895 qemu_unregister_reset(virtio_mem_system_reset
, vmem
);
896 vmstate_unregister_ram(&vmem
->memdev
->mr
, DEVICE(vmem
));
897 host_memory_backend_set_mapped(vmem
->memdev
, false);
898 virtio_del_queue(vdev
, 0);
899 virtio_cleanup(vdev
);
900 g_free(vmem
->bitmap
);
901 ram_block_coordinated_discard_require(false);
904 static int virtio_mem_discard_range_cb(const VirtIOMEM
*vmem
, void *arg
,
905 uint64_t offset
, uint64_t size
)
907 RAMBlock
*rb
= vmem
->memdev
->mr
.ram_block
;
909 return ram_block_discard_range(rb
, offset
, size
) ? -EINVAL
: 0;
912 static int virtio_mem_restore_unplugged(VirtIOMEM
*vmem
)
914 /* Make sure all memory is really discarded after migration. */
915 return virtio_mem_for_each_unplugged_range(vmem
, NULL
,
916 virtio_mem_discard_range_cb
);
919 static int virtio_mem_post_load(void *opaque
, int version_id
)
921 VirtIOMEM
*vmem
= VIRTIO_MEM(opaque
);
922 RamDiscardListener
*rdl
;
926 * We started out with all memory discarded and our memory region is mapped
927 * into an address space. Replay, now that we updated the bitmap.
929 QLIST_FOREACH(rdl
, &vmem
->rdl_list
, next
) {
930 ret
= virtio_mem_for_each_plugged_section(vmem
, rdl
->section
, rdl
,
931 virtio_mem_notify_populate_cb
);
937 if (migration_in_incoming_postcopy()) {
941 return virtio_mem_restore_unplugged(vmem
);
944 typedef struct VirtIOMEMMigSanityChecks
{
947 uint64_t region_size
;
950 } VirtIOMEMMigSanityChecks
;
952 static int virtio_mem_mig_sanity_checks_pre_save(void *opaque
)
954 VirtIOMEMMigSanityChecks
*tmp
= opaque
;
955 VirtIOMEM
*vmem
= tmp
->parent
;
957 tmp
->addr
= vmem
->addr
;
958 tmp
->region_size
= memory_region_size(&vmem
->memdev
->mr
);
959 tmp
->block_size
= vmem
->block_size
;
960 tmp
->node
= vmem
->node
;
964 static int virtio_mem_mig_sanity_checks_post_load(void *opaque
, int version_id
)
966 VirtIOMEMMigSanityChecks
*tmp
= opaque
;
967 VirtIOMEM
*vmem
= tmp
->parent
;
968 const uint64_t new_region_size
= memory_region_size(&vmem
->memdev
->mr
);
970 if (tmp
->addr
!= vmem
->addr
) {
971 error_report("Property '%s' changed from 0x%" PRIx64
" to 0x%" PRIx64
,
972 VIRTIO_MEM_ADDR_PROP
, tmp
->addr
, vmem
->addr
);
976 * Note: Preparation for resizeable memory regions. The maximum size
977 * of the memory region must not change during migration.
979 if (tmp
->region_size
!= new_region_size
) {
980 error_report("Property '%s' size changed from 0x%" PRIx64
" to 0x%"
981 PRIx64
, VIRTIO_MEM_MEMDEV_PROP
, tmp
->region_size
,
985 if (tmp
->block_size
!= vmem
->block_size
) {
986 error_report("Property '%s' changed from 0x%" PRIx64
" to 0x%" PRIx64
,
987 VIRTIO_MEM_BLOCK_SIZE_PROP
, tmp
->block_size
,
991 if (tmp
->node
!= vmem
->node
) {
992 error_report("Property '%s' changed from %" PRIu32
" to %" PRIu32
,
993 VIRTIO_MEM_NODE_PROP
, tmp
->node
, vmem
->node
);
999 static const VMStateDescription vmstate_virtio_mem_sanity_checks
= {
1000 .name
= "virtio-mem-device/sanity-checks",
1001 .pre_save
= virtio_mem_mig_sanity_checks_pre_save
,
1002 .post_load
= virtio_mem_mig_sanity_checks_post_load
,
1003 .fields
= (VMStateField
[]) {
1004 VMSTATE_UINT64(addr
, VirtIOMEMMigSanityChecks
),
1005 VMSTATE_UINT64(region_size
, VirtIOMEMMigSanityChecks
),
1006 VMSTATE_UINT64(block_size
, VirtIOMEMMigSanityChecks
),
1007 VMSTATE_UINT32(node
, VirtIOMEMMigSanityChecks
),
1008 VMSTATE_END_OF_LIST(),
1012 static const VMStateDescription vmstate_virtio_mem_device
= {
1013 .name
= "virtio-mem-device",
1014 .minimum_version_id
= 1,
1016 .priority
= MIG_PRI_VIRTIO_MEM
,
1017 .post_load
= virtio_mem_post_load
,
1018 .fields
= (VMStateField
[]) {
1019 VMSTATE_WITH_TMP(VirtIOMEM
, VirtIOMEMMigSanityChecks
,
1020 vmstate_virtio_mem_sanity_checks
),
1021 VMSTATE_UINT64(usable_region_size
, VirtIOMEM
),
1022 VMSTATE_UINT64(size
, VirtIOMEM
),
1023 VMSTATE_UINT64(requested_size
, VirtIOMEM
),
1024 VMSTATE_BITMAP(bitmap
, VirtIOMEM
, 0, bitmap_size
),
1025 VMSTATE_END_OF_LIST()
1029 static const VMStateDescription vmstate_virtio_mem
= {
1030 .name
= "virtio-mem",
1031 .minimum_version_id
= 1,
1033 .fields
= (VMStateField
[]) {
1034 VMSTATE_VIRTIO_DEVICE
,
1035 VMSTATE_END_OF_LIST()
1039 static void virtio_mem_fill_device_info(const VirtIOMEM
*vmem
,
1040 VirtioMEMDeviceInfo
*vi
)
1042 vi
->memaddr
= vmem
->addr
;
1043 vi
->node
= vmem
->node
;
1044 vi
->requested_size
= vmem
->requested_size
;
1045 vi
->size
= vmem
->size
;
1046 vi
->max_size
= memory_region_size(&vmem
->memdev
->mr
);
1047 vi
->block_size
= vmem
->block_size
;
1048 vi
->memdev
= object_get_canonical_path(OBJECT(vmem
->memdev
));
1051 static MemoryRegion
*virtio_mem_get_memory_region(VirtIOMEM
*vmem
, Error
**errp
)
1053 if (!vmem
->memdev
) {
1054 error_setg(errp
, "'%s' property must be set", VIRTIO_MEM_MEMDEV_PROP
);
1058 return &vmem
->memdev
->mr
;
1061 static void virtio_mem_add_size_change_notifier(VirtIOMEM
*vmem
,
1064 notifier_list_add(&vmem
->size_change_notifiers
, notifier
);
1067 static void virtio_mem_remove_size_change_notifier(VirtIOMEM
*vmem
,
1070 notifier_remove(notifier
);
1073 static void virtio_mem_get_size(Object
*obj
, Visitor
*v
, const char *name
,
1074 void *opaque
, Error
**errp
)
1076 const VirtIOMEM
*vmem
= VIRTIO_MEM(obj
);
1077 uint64_t value
= vmem
->size
;
1079 visit_type_size(v
, name
, &value
, errp
);
1082 static void virtio_mem_get_requested_size(Object
*obj
, Visitor
*v
,
1083 const char *name
, void *opaque
,
1086 const VirtIOMEM
*vmem
= VIRTIO_MEM(obj
);
1087 uint64_t value
= vmem
->requested_size
;
1089 visit_type_size(v
, name
, &value
, errp
);
1092 static void virtio_mem_set_requested_size(Object
*obj
, Visitor
*v
,
1093 const char *name
, void *opaque
,
1096 VirtIOMEM
*vmem
= VIRTIO_MEM(obj
);
1100 visit_type_size(v
, name
, &value
, &err
);
1102 error_propagate(errp
, err
);
1107 * The block size and memory backend are not fixed until the device was
1108 * realized. realize() will verify these properties then.
1110 if (DEVICE(obj
)->realized
) {
1111 if (!QEMU_IS_ALIGNED(value
, vmem
->block_size
)) {
1112 error_setg(errp
, "'%s' has to be multiples of '%s' (0x%" PRIx64
1113 ")", name
, VIRTIO_MEM_BLOCK_SIZE_PROP
,
1116 } else if (value
> memory_region_size(&vmem
->memdev
->mr
)) {
1117 error_setg(errp
, "'%s' cannot exceed the memory backend size"
1118 "(0x%" PRIx64
")", name
,
1119 memory_region_size(&vmem
->memdev
->mr
));
1123 if (value
!= vmem
->requested_size
) {
1124 virtio_mem_resize_usable_region(vmem
, value
, false);
1125 vmem
->requested_size
= value
;
1128 * Trigger a config update so the guest gets notified. We trigger
1129 * even if the size didn't change (especially helpful for debugging).
1131 virtio_notify_config(VIRTIO_DEVICE(vmem
));
1133 vmem
->requested_size
= value
;
1137 static void virtio_mem_get_block_size(Object
*obj
, Visitor
*v
, const char *name
,
1138 void *opaque
, Error
**errp
)
1140 const VirtIOMEM
*vmem
= VIRTIO_MEM(obj
);
1141 uint64_t value
= vmem
->block_size
;
1144 * If not configured by the user (and we're not realized yet), use the
1145 * default block size we would use with the current memory backend.
1148 if (vmem
->memdev
&& memory_region_is_ram(&vmem
->memdev
->mr
)) {
1149 value
= virtio_mem_default_block_size(vmem
->memdev
->mr
.ram_block
);
1151 value
= virtio_mem_thp_size();
1155 visit_type_size(v
, name
, &value
, errp
);
1158 static void virtio_mem_set_block_size(Object
*obj
, Visitor
*v
, const char *name
,
1159 void *opaque
, Error
**errp
)
1161 VirtIOMEM
*vmem
= VIRTIO_MEM(obj
);
1165 if (DEVICE(obj
)->realized
) {
1166 error_setg(errp
, "'%s' cannot be changed", name
);
1170 visit_type_size(v
, name
, &value
, &err
);
1172 error_propagate(errp
, err
);
1176 if (value
< VIRTIO_MEM_MIN_BLOCK_SIZE
) {
1177 error_setg(errp
, "'%s' property has to be at least 0x%" PRIx32
, name
,
1178 VIRTIO_MEM_MIN_BLOCK_SIZE
);
1180 } else if (!is_power_of_2(value
)) {
1181 error_setg(errp
, "'%s' property has to be a power of two", name
);
1184 vmem
->block_size
= value
;
1187 static void virtio_mem_instance_init(Object
*obj
)
1189 VirtIOMEM
*vmem
= VIRTIO_MEM(obj
);
1191 notifier_list_init(&vmem
->size_change_notifiers
);
1192 QLIST_INIT(&vmem
->rdl_list
);
1194 object_property_add(obj
, VIRTIO_MEM_SIZE_PROP
, "size", virtio_mem_get_size
,
1196 object_property_add(obj
, VIRTIO_MEM_REQUESTED_SIZE_PROP
, "size",
1197 virtio_mem_get_requested_size
,
1198 virtio_mem_set_requested_size
, NULL
, NULL
);
1199 object_property_add(obj
, VIRTIO_MEM_BLOCK_SIZE_PROP
, "size",
1200 virtio_mem_get_block_size
, virtio_mem_set_block_size
,
1204 static Property virtio_mem_properties
[] = {
1205 DEFINE_PROP_UINT64(VIRTIO_MEM_ADDR_PROP
, VirtIOMEM
, addr
, 0),
1206 DEFINE_PROP_UINT32(VIRTIO_MEM_NODE_PROP
, VirtIOMEM
, node
, 0),
1207 DEFINE_PROP_BOOL(VIRTIO_MEM_PREALLOC_PROP
, VirtIOMEM
, prealloc
, false),
1208 DEFINE_PROP_LINK(VIRTIO_MEM_MEMDEV_PROP
, VirtIOMEM
, memdev
,
1209 TYPE_MEMORY_BACKEND
, HostMemoryBackend
*),
1210 #if defined(VIRTIO_MEM_HAS_LEGACY_GUESTS)
1211 DEFINE_PROP_ON_OFF_AUTO(VIRTIO_MEM_UNPLUGGED_INACCESSIBLE_PROP
, VirtIOMEM
,
1212 unplugged_inaccessible
, ON_OFF_AUTO_AUTO
),
1214 DEFINE_PROP_END_OF_LIST(),
1217 static uint64_t virtio_mem_rdm_get_min_granularity(const RamDiscardManager
*rdm
,
1218 const MemoryRegion
*mr
)
1220 const VirtIOMEM
*vmem
= VIRTIO_MEM(rdm
);
1222 g_assert(mr
== &vmem
->memdev
->mr
);
1223 return vmem
->block_size
;
1226 static bool virtio_mem_rdm_is_populated(const RamDiscardManager
*rdm
,
1227 const MemoryRegionSection
*s
)
1229 const VirtIOMEM
*vmem
= VIRTIO_MEM(rdm
);
1230 uint64_t start_gpa
= vmem
->addr
+ s
->offset_within_region
;
1231 uint64_t end_gpa
= start_gpa
+ int128_get64(s
->size
);
1233 g_assert(s
->mr
== &vmem
->memdev
->mr
);
1235 start_gpa
= QEMU_ALIGN_DOWN(start_gpa
, vmem
->block_size
);
1236 end_gpa
= QEMU_ALIGN_UP(end_gpa
, vmem
->block_size
);
1238 if (!virtio_mem_valid_range(vmem
, start_gpa
, end_gpa
- start_gpa
)) {
1242 return virtio_mem_test_bitmap(vmem
, start_gpa
, end_gpa
- start_gpa
, true);
1245 struct VirtIOMEMReplayData
{
1250 static int virtio_mem_rdm_replay_populated_cb(MemoryRegionSection
*s
, void *arg
)
1252 struct VirtIOMEMReplayData
*data
= arg
;
1254 return ((ReplayRamPopulate
)data
->fn
)(s
, data
->opaque
);
1257 static int virtio_mem_rdm_replay_populated(const RamDiscardManager
*rdm
,
1258 MemoryRegionSection
*s
,
1259 ReplayRamPopulate replay_fn
,
1262 const VirtIOMEM
*vmem
= VIRTIO_MEM(rdm
);
1263 struct VirtIOMEMReplayData data
= {
1268 g_assert(s
->mr
== &vmem
->memdev
->mr
);
1269 return virtio_mem_for_each_plugged_section(vmem
, s
, &data
,
1270 virtio_mem_rdm_replay_populated_cb
);
1273 static int virtio_mem_rdm_replay_discarded_cb(MemoryRegionSection
*s
,
1276 struct VirtIOMEMReplayData
*data
= arg
;
1278 ((ReplayRamDiscard
)data
->fn
)(s
, data
->opaque
);
1282 static void virtio_mem_rdm_replay_discarded(const RamDiscardManager
*rdm
,
1283 MemoryRegionSection
*s
,
1284 ReplayRamDiscard replay_fn
,
1287 const VirtIOMEM
*vmem
= VIRTIO_MEM(rdm
);
1288 struct VirtIOMEMReplayData data
= {
1293 g_assert(s
->mr
== &vmem
->memdev
->mr
);
1294 virtio_mem_for_each_unplugged_section(vmem
, s
, &data
,
1295 virtio_mem_rdm_replay_discarded_cb
);
1298 static void virtio_mem_rdm_register_listener(RamDiscardManager
*rdm
,
1299 RamDiscardListener
*rdl
,
1300 MemoryRegionSection
*s
)
1302 VirtIOMEM
*vmem
= VIRTIO_MEM(rdm
);
1305 g_assert(s
->mr
== &vmem
->memdev
->mr
);
1306 rdl
->section
= memory_region_section_new_copy(s
);
1308 QLIST_INSERT_HEAD(&vmem
->rdl_list
, rdl
, next
);
1309 ret
= virtio_mem_for_each_plugged_section(vmem
, rdl
->section
, rdl
,
1310 virtio_mem_notify_populate_cb
);
1312 error_report("%s: Replaying plugged ranges failed: %s", __func__
,
1317 static void virtio_mem_rdm_unregister_listener(RamDiscardManager
*rdm
,
1318 RamDiscardListener
*rdl
)
1320 VirtIOMEM
*vmem
= VIRTIO_MEM(rdm
);
1322 g_assert(rdl
->section
->mr
== &vmem
->memdev
->mr
);
1324 if (rdl
->double_discard_supported
) {
1325 rdl
->notify_discard(rdl
, rdl
->section
);
1327 virtio_mem_for_each_plugged_section(vmem
, rdl
->section
, rdl
,
1328 virtio_mem_notify_discard_cb
);
1332 memory_region_section_free_copy(rdl
->section
);
1333 rdl
->section
= NULL
;
1334 QLIST_REMOVE(rdl
, next
);
1337 static void virtio_mem_class_init(ObjectClass
*klass
, void *data
)
1339 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1340 VirtioDeviceClass
*vdc
= VIRTIO_DEVICE_CLASS(klass
);
1341 VirtIOMEMClass
*vmc
= VIRTIO_MEM_CLASS(klass
);
1342 RamDiscardManagerClass
*rdmc
= RAM_DISCARD_MANAGER_CLASS(klass
);
1344 device_class_set_props(dc
, virtio_mem_properties
);
1345 dc
->vmsd
= &vmstate_virtio_mem
;
1347 set_bit(DEVICE_CATEGORY_MISC
, dc
->categories
);
1348 vdc
->realize
= virtio_mem_device_realize
;
1349 vdc
->unrealize
= virtio_mem_device_unrealize
;
1350 vdc
->get_config
= virtio_mem_get_config
;
1351 vdc
->get_features
= virtio_mem_get_features
;
1352 vdc
->validate_features
= virtio_mem_validate_features
;
1353 vdc
->vmsd
= &vmstate_virtio_mem_device
;
1355 vmc
->fill_device_info
= virtio_mem_fill_device_info
;
1356 vmc
->get_memory_region
= virtio_mem_get_memory_region
;
1357 vmc
->add_size_change_notifier
= virtio_mem_add_size_change_notifier
;
1358 vmc
->remove_size_change_notifier
= virtio_mem_remove_size_change_notifier
;
1360 rdmc
->get_min_granularity
= virtio_mem_rdm_get_min_granularity
;
1361 rdmc
->is_populated
= virtio_mem_rdm_is_populated
;
1362 rdmc
->replay_populated
= virtio_mem_rdm_replay_populated
;
1363 rdmc
->replay_discarded
= virtio_mem_rdm_replay_discarded
;
1364 rdmc
->register_listener
= virtio_mem_rdm_register_listener
;
1365 rdmc
->unregister_listener
= virtio_mem_rdm_unregister_listener
;
1368 static const TypeInfo virtio_mem_info
= {
1369 .name
= TYPE_VIRTIO_MEM
,
1370 .parent
= TYPE_VIRTIO_DEVICE
,
1371 .instance_size
= sizeof(VirtIOMEM
),
1372 .instance_init
= virtio_mem_instance_init
,
1373 .class_init
= virtio_mem_class_init
,
1374 .class_size
= sizeof(VirtIOMEMClass
),
1375 .interfaces
= (InterfaceInfo
[]) {
1376 { TYPE_RAM_DISCARD_MANAGER
},
1381 static void virtio_register_types(void)
1383 type_register_static(&virtio_mem_info
);
1386 type_init(virtio_register_types
)