aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/cxl
diff options
context:
space:
mode:
authorDan Williams <dan.j.williams@intel.com>2022-12-05 11:44:41 -0800
committerDan Williams <dan.j.williams@intel.com>2022-12-05 12:33:20 -0800
commit878b2de67af7095ddd35da859a9ef8db15a36163 (patch)
treedca5c492c33f3161a6e9bafceffe1cf687628a08 /tools/testing/cxl
parentcxl/acpi: Fail decoder add if CXIMS for HBIG is missing (diff)
downloadwireguard-linux-878b2de67af7095ddd35da859a9ef8db15a36163.tar.xz
wireguard-linux-878b2de67af7095ddd35da859a9ef8db15a36163.zip
tools/testing/cxl: Require cache invalidation bypass
The typical environment where cxl_test is run, QEMU, does not support cpu_cache_invalidate_memregion(). Add the 'test' bypass symbols to the configuration check. Reported-by: Alison Schofield <alison.schofield@intel.com> Reviewed-by: Dave Jiang <dave.jiang@intel.com> Link: https://lore.kernel.org/r/167026948179.3527561.4535373655515827457.stgit@dwillia2-xfh.jf.intel.com Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'tools/testing/cxl')
-rw-r--r--tools/testing/cxl/config_check.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/testing/cxl/config_check.c b/tools/testing/cxl/config_check.c
index de5e5b3652fd..c4c457e59841 100644
--- a/tools/testing/cxl/config_check.c
+++ b/tools/testing/cxl/config_check.c
@@ -10,4 +10,6 @@ void check(void)
BUILD_BUG_ON(!IS_MODULE(CONFIG_CXL_BUS));
BUILD_BUG_ON(!IS_MODULE(CONFIG_CXL_ACPI));
BUILD_BUG_ON(!IS_MODULE(CONFIG_CXL_PMEM));
+ BUILD_BUG_ON(!IS_ENABLED(CONFIG_CXL_REGION_INVALIDATION_TEST));
+ BUILD_BUG_ON(!IS_ENABLED(CONFIG_NVDIMM_SECURITY_TEST));
}