mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 21:21:47 +00:00
6d48583ba9
Introduce fixup_exception() on 64-bit and use it in kprobes to eliminate an #ifdef. Only 64-bit needs search_extable() due to a stepping bug. Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
10 lines
304 B
Plaintext
10 lines
304 B
Plaintext
#
|
|
# Makefile for the linux x86_64-specific parts of the memory manager.
|
|
#
|
|
|
|
obj-y := init_64.o fault_64.o ioremap_64.o extable.o pageattr_64.o mmap.o
|
|
obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o
|
|
obj-$(CONFIG_NUMA) += numa_64.o
|
|
obj-$(CONFIG_K8_NUMA) += k8topology_64.o
|
|
obj-$(CONFIG_ACPI_NUMA) += srat_64.o
|