Bug 218640
Summary: | kernel 6.9-rc1 fails to compile if debugfs is disabled | ||
---|---|---|---|
Product: | Linux | Reporter: | anthony s. knowles (akira.2020) |
Component: | Kernel | Assignee: | Virtual assignee for kernel bugs (linux-kernel) |
Status: | RESOLVED CODE_FIX | ||
Severity: | normal | ||
Priority: | P3 | ||
Hardware: | AMD | ||
OS: | Linux | ||
Kernel Version: | 6.9-rc1 | Subsystem: | ras |
Regression: | No | Bisected commit-id: |
Description
anthony s. knowles
2024-03-25 14:54:24 UTC
Borislav Petkov<bp@alien8.de> replied with the fix: This should fix it: --- diff --git a/drivers/ras/Kconfig b/drivers/ras/Kconfig index fc4f4bb94a4c..41697e326fa6 100644 --- a/drivers/ras/Kconfig +++ b/drivers/ras/Kconfig @@ -37,7 +37,7 @@ source "drivers/ras/amd/atl/Kconfig" config RAS_FMPM tristate "FRU Memory Poison Manager" default m - depends on AMD_ATL && ACPI_APEI + depends on AMD_ATL && ACPI_APEI && DEBUG_FS help Support saving and restoring memory error information across reboot using ACPI ERST as persistent storage. Error information is saved with -- Regards/Gruss, Boris. https://people.kernel.org/tglx/notes-about-netiquette this works, kind regards, anthony s.k. |