]> git.proxmox.com Git - mirror_qemu.git/commit - MAINTAINERS
memory: add a sparse memory device for fuzzing
authorAlexander Bulekov <alxndr@bu.edu>
Mon, 15 Mar 2021 14:05:10 +0000 (10:05 -0400)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 16 Mar 2021 18:30:30 +0000 (14:30 -0400)
commit230376d285b38f5b83882ebdd2e0d0570431dd09
treeab179fb04da2c021b4e140879185a612c772db56
parentd7da0e560128e56f55a2f1f27fa66dd8c5db446c
memory: add a sparse memory device for fuzzing

For testing, it can be useful to simulate an enormous amount of memory
(e.g. 2^64 RAM). This adds an MMIO device that acts as sparse memory.
When something writes a nonzero value to a sparse-mem address, we
allocate a block of memory. For now, since the only user of this device
is the fuzzer, we do not track and free zeroed blocks. The device has a
very low priority (so it can be mapped beneath actual RAM, and virtual
device MMIO regions).

Signed-off-by: Alexander Bulekov <alxndr@bu.edu>
Reviewed-by: Darren Kenny <darren.kenny@oracle.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
MAINTAINERS
hw/mem/meson.build
hw/mem/sparse-mem.c [new file with mode: 0644]
include/hw/mem/sparse-mem.h [new file with mode: 0644]