Skip to content

Commit 4650bac

Browse files
toshikaniIngo Molnar
authored andcommitted
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>
1 parent a8fc425 commit 4650bac

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

drivers/acpi/apei/einj.c

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ static int einj_error_inject(u32 type, u32 flags, u64 param1, u64 param2,
519519
u64 param3, u64 param4)
520520
{
521521
int rc;
522-
unsigned long pfn;
522+
u64 base_addr, size;
523523

524524
/* If user manually set "flags", make sure it is legal */
525525
if (flags && (flags &
@@ -545,10 +545,17 @@ static int einj_error_inject(u32 type, u32 flags, u64 param1, u64 param2,
545545
/*
546546
* Disallow crazy address masks that give BIOS leeway to pick
547547
* 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.
549550
*/
550-
pfn = PFN_DOWN(param1 & param2);
551-
if (!page_is_ram(pfn) || ((param2 & PAGE_MASK) != PAGE_MASK))
551+
base_addr = param1 & param2;
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)))
552559
return -EINVAL;
553560

554561
inject:

0 commit comments

Comments
 (0)