public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2.4 and 2.6] trim.bottom trims the wrong entry
@ 2003-08-28 16:04 Luck, Tony
  2003-08-28 23:20 ` Bjorn Helgaas
  2003-08-29  0:08 ` David Mosberger
  0 siblings, 2 replies; 3+ messages in thread
From: Luck, Tony @ 2003-08-28 16:04 UTC (permalink / raw)
  To: linux-ia64

[-- Attachment #1: Type: text/plain, Size: 938 bytes --]

This was a fun one to track down.  I was trying to provide
a fake SRAT table so that I could start working on some more
ccNUMA issues on a non-NUMA tiger box, but my kernel kept dying
while running scripts out of /etc/init.d/*

I found I was getting an MCA while executing an lfetch.excl in
clear_page_tables(), the address that was being fetched was
0xe0000000000a00e8, which is non-cacheable VGA memory on Tiger.

Root cause was the "trim" code in efi_memmap_walk() had failed
to trim away all the blocks of memory in the bottom granule when
it had seen the memory hole there, so the kernel had managed to
allocate a page at 0x9c000 as a page table, and when the process
using it ended, the cleanup code prefetched off the end of the
page, and into the VGA memory, causing an MCA.

The problem is that efi_memmap_walk() repeatedly trims the same
entry, instead of trimming each of the entries in the granule.

-Tony

[-- Attachment #2: trim.patch --]
[-- Type: application/octet-stream, Size: 397 bytes --]

diff -ru a/arch/ia64/kernel/efi.c b/arch/ia64/kernel/efi.c
--- a/arch/ia64/kernel/efi.c	Wed Aug 27 15:49:27 2003
+++ b/arch/ia64/kernel/efi.c	Wed Aug 27 16:47:27 2003
@@ -324,7 +324,7 @@
 				check_md = q;
 
 				if (check_md->attribute & EFI_MEMORY_WB)
-					trim_bottom(md, granule_addr);
+					trim_bottom(check_md, granule_addr);
 
 				if (check_md->phys_addr < granule_addr)
 					continue;

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2003-08-29  0:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-08-28 16:04 [PATCH 2.4 and 2.6] trim.bottom trims the wrong entry Luck, Tony
2003-08-28 23:20 ` Bjorn Helgaas
2003-08-29  0:08 ` David Mosberger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox