[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 06/24] kconfig: split CONFIG_SPARSE_MEM from fuzzing
From: |
Paolo Bonzini |
Subject: |
[PATCH 06/24] kconfig: split CONFIG_SPARSE_MEM from fuzzing |
Date: |
Thu, 7 Oct 2021 15:08:11 +0200 |
Pass CONFIG_FUZZ via host_kconfig, and use it to select the
sparse-mem device.
Cc: Alexander Oleinik <alxndr@bu.edu>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
Kconfig.host | 4 ++++
hw/mem/Kconfig | 3 +++
hw/mem/meson.build | 2 +-
meson.build | 1 +
4 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/Kconfig.host b/Kconfig.host
index 24255ef441..60b9c07b5e 100644
--- a/Kconfig.host
+++ b/Kconfig.host
@@ -41,3 +41,7 @@ config PVRDMA
config MULTIPROCESS_ALLOWED
bool
imply MULTIPROCESS
+
+config FUZZ
+ bool
+ select SPARSE_MEM
diff --git a/hw/mem/Kconfig b/hw/mem/Kconfig
index 8b19fdc49f..03dbb3c7df 100644
--- a/hw/mem/Kconfig
+++ b/hw/mem/Kconfig
@@ -8,3 +8,6 @@ config MEM_DEVICE
config NVDIMM
bool
select MEM_DEVICE
+
+config SPARSE_MEM
+ bool
diff --git a/hw/mem/meson.build b/hw/mem/meson.build
index 3c8fdef9f9..82f86d117e 100644
--- a/hw/mem/meson.build
+++ b/hw/mem/meson.build
@@ -6,4 +6,4 @@ mem_ss.add(when: 'CONFIG_NVDIMM', if_true: files('nvdimm.c'))
softmmu_ss.add_all(when: 'CONFIG_MEM_DEVICE', if_true: mem_ss)
-softmmu_ss.add(when: 'CONFIG_FUZZ', if_true: files('sparse-mem.c'))
+softmmu_ss.add(when: 'CONFIG_SPARSE_MEM', if_true: files('sparse-mem.c'))
diff --git a/meson.build b/meson.build
index 0e9733a833..f03bfff7a1 100644
--- a/meson.build
+++ b/meson.build
@@ -1602,6 +1602,7 @@ endif
have_ivshmem = config_host_data.get('CONFIG_EVENTFD')
host_kconfig = \
+ ('CONFIG_FUZZ' in config_host ? ['CONFIG_FUZZ=y'] : []) + \
('CONFIG_TPM' in config_host ? ['CONFIG_TPM=y'] : []) + \
('CONFIG_SPICE' in config_host ? ['CONFIG_SPICE=y'] : []) + \
(have_ivshmem ? ['CONFIG_IVSHMEM=y'] : []) + \
--
2.31.1
- [PATCH 19/24] configure: remove obsolete Solaris ar check, (continued)
- [PATCH 19/24] configure: remove obsolete Solaris ar check, Paolo Bonzini, 2021/10/07
- [PATCH 16/24] configure, meson: move vde detection to meson, Paolo Bonzini, 2021/10/07
- [PATCH 17/24] configure, meson: move netmap detection to meson, Paolo Bonzini, 2021/10/07
- [PATCH 10/24] configure, meson: move CONFIG_HOST_DSOSUF to Meson, Paolo Bonzini, 2021/10/07
- [PATCH 06/24] kconfig: split CONFIG_SPARSE_MEM from fuzzing,
Paolo Bonzini <=
- [PATCH 15/24] configure, meson: move libaio check to meson.build, Paolo Bonzini, 2021/10/07
[PATCH 12/24] configure, meson: remove CONFIG_GCOV from config-host.mak, Paolo Bonzini, 2021/10/07