diff options
author | Dan Williams <dan.j.williams@intel.com> | 2017-04-13 19:46:36 -0700 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2017-04-17 12:34:17 -0700 |
commit | 1499934dcd15a7c9aca1467025b78f6675032849 (patch) | |
tree | 5a781f44eaea08f709bd764c0f5777b5bbd37af0 /drivers/acpi/nfit/nfit.h | |
parent | ac40b675c74b9243069aba3a5799481dbcb9d2ef (diff) | |
download | linux-1499934dcd15a7c9aca1467025b78f6675032849.tar.bz2 |
acpi, nfit: support "map failed" dimms
Stop requiring dimms be successfully mapped into a
system-physical-address range. For provisioning and hardware remediation
purposes the kernel should account for failed devices in sysfs. If
possible it should still allow management commands to be sent to the
device.
Reported-by: Toshi Kani <toshi.kani@hpe.com>
Tested-by: Toshi Kani <toshi.kani@hpe.com>
Reported-by: Linda Knippers <linda.knippers@hpe.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/acpi/nfit/nfit.h')
-rw-r--r-- | drivers/acpi/nfit/nfit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/nfit/nfit.h b/drivers/acpi/nfit/nfit.h index fc29c2e9832e..aaabd2721f8e 100644 --- a/drivers/acpi/nfit/nfit.h +++ b/drivers/acpi/nfit/nfit.h @@ -37,7 +37,7 @@ #define ACPI_NFIT_MEM_FAILED_MASK (ACPI_NFIT_MEM_SAVE_FAILED \ | ACPI_NFIT_MEM_RESTORE_FAILED | ACPI_NFIT_MEM_FLUSH_FAILED \ - | ACPI_NFIT_MEM_NOT_ARMED) + | ACPI_NFIT_MEM_NOT_ARMED | ACPI_NFIT_MEM_MAP_FAILED) enum nfit_uuids { /* for simplicity alias the uuid index with the family id */ |