https://github.com/torvalds/linux
Revision 30919b0bf356a8ee0ef4f7d38ca8ad99b96820b2 authored by Bjorn Helgaas on 16 December 2010, 17:38:51 UTC, committed by Jesse Barnes on 17 December 2010, 18:01:17 UTC
This implements arch_remove_reservations() so allocate_resource() can
avoid any arch-specific reserved areas.  This currently just avoids the
BIOS area (the first 1MB), but could be used for E820 reserved areas if
that turns out to be necessary.

We previously avoided this area in pcibios_align_resource().  This patch
moves the test from that PCI-specific path to a generic path, so *all*
resource allocations will avoid this area.

Acked-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
1 parent fcb1191
Raw File
Tip revision: 30919b0bf356a8ee0ef4f7d38ca8ad99b96820b2 authored by Bjorn Helgaas on 16 December 2010, 17:38:51 UTC
x86: avoid low BIOS area when allocating address space
Tip revision: 30919b0
Kconfig
#
# For a description of the syntax of this configuration file,
# see Documentation/kbuild/kconfig-language.txt.
#
mainmenu "Linux/$ARCH $KERNELVERSION Kernel Configuration"

config SRCARCH
	string
	option env="SRCARCH"

source "arch/$SRCARCH/Kconfig"
back to top