diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-05-01 23:48:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-05-01 23:48:33 -0400 |
commit | 3dee9fb2a4ced89a13a4d4b72b0b7360b701e566 (patch) | |
tree | d3d10326cd904adc5664e4a50cacc5bdc312f5f9 /drivers/acpi | |
parent | 7c8c03bfc7b9f5211d8a69eab7fee99c9fb4f449 (diff) | |
parent | c6a9583fb41c8bd017f643d5bc90a0fe0a92fe43 (diff) |
Merge branch 'ras-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull RAS updates from Ingo Molnar:
"The main changes in this cycle were:
- add the 'Corrected Errors Collector' kernel feature which collect
and monitor correctable errors statistics and will preemptively
(soft-)offline physical pages that have a suspiciously high error
count.
- handle MCE errors during kexec() more gracefully
- factor out and deprecate the /dev/mcelog driver
- ... plus misc fixes and cleanpus"
* 'ras-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/mce: Check MCi_STATUS[MISCV] for usable addr on Intel only
ACPI/APEI: Use setup_deferrable_timer()
x86/mce: Update notifier priority check
x86/mce: Enable PPIN for Knights Landing/Mill
x86/mce: Do not register notifiers with invalid prio
x86/mce: Factor out and deprecate the /dev/mcelog driver
RAS: Add a Corrected Errors Collector
x86/mce: Rename mce_log to mce_log_buffer
x86/mce: Rename mce_log()'s argument
x86/mce: Init some CPU features early
x86/mce: Handle broadcasted MCE gracefully with kexec
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/apei/ghes.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/acpi/apei/ghes.c b/drivers/acpi/apei/ghes.c index 79b3c9c5a3bc..d0855c09f32f 100644 --- a/drivers/acpi/apei/ghes.c +++ b/drivers/acpi/apei/ghes.c | |||
@@ -1005,9 +1005,8 @@ static int ghes_probe(struct platform_device *ghes_dev) | |||
1005 | 1005 | ||
1006 | switch (generic->notify.type) { | 1006 | switch (generic->notify.type) { |
1007 | case ACPI_HEST_NOTIFY_POLLED: | 1007 | case ACPI_HEST_NOTIFY_POLLED: |
1008 | ghes->timer.function = ghes_poll_func; | 1008 | setup_deferrable_timer(&ghes->timer, ghes_poll_func, |
1009 | ghes->timer.data = (unsigned long)ghes; | 1009 | (unsigned long)ghes); |
1010 | init_timer_deferrable(&ghes->timer); | ||
1011 | ghes_add_timer(ghes); | 1010 | ghes_add_timer(ghes); |
1012 | break; | 1011 | break; |
1013 | case ACPI_HEST_NOTIFY_EXTERNAL: | 1012 | case ACPI_HEST_NOTIFY_EXTERNAL: |