diff options
author | Toshi Kani <toshi.kani@hpe.com> | 2017-06-29 20:41:30 -0600 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2017-07-02 09:56:37 -0700 |
commit | 807900395efebf9276178eb6157959f2e81fe013 (patch) | |
tree | 5b7954f7bb3e2530fdbfb87a6ecd8055eb98cd00 /drivers/acpi/nfit/mce.c | |
parent | 759d6a9641d7f52f9311aae4f2d90058adad3ac2 (diff) | |
download | op-kernel-dev-807900395efebf9276178eb6157959f2e81fe013.zip op-kernel-dev-807900395efebf9276178eb6157959f2e81fe013.tar.gz |
acpi/nfit: Issue Start ARS to retrieve existing records
ACPI 6.2 defines in section 9.20.7.2 that the OSPM may call a Start
ARS with Flags Bit [1] set upon receiving the 0x81 notification.
Upon receiving the notification, the OSPM may decide to issue
a Start ARS with Flags Bit [1] set to prepare for the retrieval
of existing records and issue the Query ARS Status function to
retrieve the records.
Add support to call a Start ARS from acpi_nfit_uc_error_notify()
with ND_ARS_RETURN_PREV_DATA set when HW_ERROR_SCRUB_ON is not set.
Link: http://www.uefi.org/sites/default/files/resources/ACPI_6_2.pdf
Signed-off-by: Toshi Kani <toshi.kani@hpe.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Rafael J. Wysocki <rjw@rjwysocki.net>
Cc: Vishal Verma <vishal.l.verma@intel.com>
Cc: Linda Knippers <linda.knippers@hpe.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/acpi/nfit/mce.c')
-rw-r--r-- | drivers/acpi/nfit/mce.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/nfit/mce.c b/drivers/acpi/nfit/mce.c index fd86bec..feeb95d 100644 --- a/drivers/acpi/nfit/mce.c +++ b/drivers/acpi/nfit/mce.c @@ -79,7 +79,7 @@ static int nfit_handle_mce(struct notifier_block *nb, unsigned long val, * already in progress, just let that be the last * authoritative one */ - acpi_nfit_ars_rescan(acpi_desc); + acpi_nfit_ars_rescan(acpi_desc, 0); } break; } |