diff options
author | Toshi Kani <toshi.kani@hpe.com> | 2016-01-26 15:57:33 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2016-01-30 03:50:00 -0500 |
commit | 4650bac1fc45d64aef62ab99aa4db93d41dedbd9 (patch) | |
tree | c6aa672763b9cb0a146d78367770cfc5a4c69b56 /drivers/acpi/apei | |
parent | a8fc42530ddd19d7580fe8c9f2ea86220a97e94c (diff) |
ACPI/EINJ: Allow memory error injection to NVDIMM
In the case of memory error injection, einj_error_inject()
checks if a target address is System RAM. Change this check to
allow injecting a memory error into NVDIMM memory by calling
region_intersects() with IORES_DESC_PERSISTENT_MEMORY. This
enables memory error testing on both System RAM and NVDIMM.
In addition, page_is_ram() is replaced with region_intersects()
with IORESOURCE_SYSTEM_RAM, so that it can verify a target
address range with the requested size.
Signed-off-by: Toshi Kani <toshi.kani@hpe.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Dan Williams <dan.j.williams@intel.com>
Acked-by: Tony Luck <tony.luck@intel.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Cc: Len Brown <lenb@kernel.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Luis R. Rodriguez <mcgrof@suse.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Rafael J. Wysocki <rjw@rjwysocki.net>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Toshi Kani <toshi.kani@hp.com>
Cc: Vishal Verma <vishal.l.verma@intel.com>
Cc: linux-acpi@vger.kernel.org
Cc: linux-arch@vger.kernel.org
Cc: linux-mm <linux-mm@kvack.org>
Cc: linux-nvdimm@lists.01.org
Link: http://lkml.kernel.org/r/1453841853-11383-18-git-send-email-bp@alien8.de
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'drivers/acpi/apei')
-rw-r--r-- | drivers/acpi/apei/einj.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/drivers/acpi/apei/einj.c b/drivers/acpi/apei/einj.c index 0431883653be..559c1173de1c 100644 --- a/drivers/acpi/apei/einj.c +++ b/drivers/acpi/apei/einj.c | |||
@@ -519,7 +519,7 @@ static int einj_error_inject(u32 type, u32 flags, u64 param1, u64 param2, | |||
519 | u64 param3, u64 param4) | 519 | u64 param3, u64 param4) |
520 | { | 520 | { |
521 | int rc; | 521 | int rc; |
522 | unsigned long pfn; | 522 | u64 base_addr, size; |
523 | 523 | ||
524 | /* If user manually set "flags", make sure it is legal */ | 524 | /* If user manually set "flags", make sure it is legal */ |
525 | if (flags && (flags & | 525 | if (flags && (flags & |
@@ -545,10 +545,17 @@ static int einj_error_inject(u32 type, u32 flags, u64 param1, u64 param2, | |||
545 | /* | 545 | /* |
546 | * Disallow crazy address masks that give BIOS leeway to pick | 546 | * Disallow crazy address masks that give BIOS leeway to pick |
547 | * injection address almost anywhere. Insist on page or | 547 | * injection address almost anywhere. Insist on page or |
548 | * better granularity and that target address is normal RAM. | 548 | * better granularity and that target address is normal RAM or |
549 | * NVDIMM. | ||
549 | */ | 550 | */ |
550 | pfn = PFN_DOWN(param1 & param2); | 551 | base_addr = param1 & param2; |
551 | if (!page_is_ram(pfn) || ((param2 & PAGE_MASK) != PAGE_MASK)) | 552 | size = ~param2 + 1; |
553 | |||
554 | if (((param2 & PAGE_MASK) != PAGE_MASK) || | ||
555 | ((region_intersects(base_addr, size, IORESOURCE_SYSTEM_RAM, IORES_DESC_NONE) | ||
556 | != REGION_INTERSECTS) && | ||
557 | (region_intersects(base_addr, size, IORESOURCE_MEM, IORES_DESC_PERSISTENT_MEMORY) | ||
558 | != REGION_INTERSECTS))) | ||
552 | return -EINVAL; | 559 | return -EINVAL; |
553 | 560 | ||
554 | inject: | 561 | inject: |