e9b0a07121
Check the EFI memory map so we can use the correct memory attributes for ioremap(). Previously, we always used uncacheable access, which blows up on some machines for regular system memory. Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Cc: Matt Domsch <Matt_Domsch@dell.com> Cc: "Tolentino, Matthew E" <matthew.e.tolentino@intel.com> Cc: "Brown, Len" <len.brown@intel.com> Cc: Andi Kleen <ak@muc.de> Acked-by: "Luck, Tony" <tony.luck@intel.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
12 lines
315 B
Makefile
12 lines
315 B
Makefile
#
|
|
# Makefile for the ia64-specific parts of the memory manager.
|
|
#
|
|
|
|
obj-y := init.o fault.o tlb.o extable.o ioremap.o
|
|
|
|
obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o
|
|
obj-$(CONFIG_NUMA) += numa.o
|
|
obj-$(CONFIG_DISCONTIGMEM) += discontig.o
|
|
obj-$(CONFIG_SPARSEMEM) += discontig.o
|
|
obj-$(CONFIG_FLATMEM) += contig.o
|