mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-18 16:44:27 +08:00
f8669f1d6a
Block Aperture Window support was an attempt to layer an error model over PMEM for platforms that did not support machine-check-recovery. However, it was abandoned before it ever shipped, and only ever existed in the ACPI specification. Meanwhile Linux has carried a large pile of dead code for non-shipping infrastructure. For years it has been off to the side out of the way, but now CXL and recent directions with DAX support have the potential to collide with this code. In preparation for adding discontiguous namespace support, a pre-requisite for the nvdimm subsystem to replace device-mapper for striping + concatenation use cases, delete BLK aperture support. On the obscure chance that some hardware vendor shipped support for this mode, note that the driver will still keep BLK space reserved in the label area. So an end user in this case would still have the opportunity to report the regression to get BLK-mode support restored without risking the data they have on that device. Reviewed-by: Christoph Hellwig <hch@lst.de> Link: https://lore.kernel.org/r/164688416668.2879318.16903178375774275120.stgit@dwillia2-desk3.amr.corp.intel.com Signed-off-by: Dan Williams <dan.j.williams@intel.com>
19 lines
523 B
C
19 lines
523 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <linux/bug.h>
|
|
|
|
void check(void)
|
|
{
|
|
/*
|
|
* These kconfig symbols must be set to "m" for nfit_test to
|
|
* load and operate.
|
|
*/
|
|
BUILD_BUG_ON(!IS_MODULE(CONFIG_LIBNVDIMM));
|
|
BUILD_BUG_ON(!IS_MODULE(CONFIG_BLK_DEV_PMEM));
|
|
BUILD_BUG_ON(!IS_MODULE(CONFIG_ND_BTT));
|
|
BUILD_BUG_ON(!IS_MODULE(CONFIG_ND_PFN));
|
|
if (IS_ENABLED(CONFIG_ACPI_NFIT))
|
|
BUILD_BUG_ON(!IS_MODULE(CONFIG_ACPI_NFIT));
|
|
BUILD_BUG_ON(!IS_MODULE(CONFIG_DEV_DAX));
|
|
BUILD_BUG_ON(!IS_MODULE(CONFIG_DEV_DAX_PMEM));
|
|
}
|