mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
The only Xen file in debugfs is for dumping the p2m table when running as a Xen PV guest. This might have been useful when the PV code was young, but there haven't been any p2m related bugs requiring the p2m dump since ages. Remove the code and the related config option. Signed-off-by: Juergen Gross <jgross@suse.com> Message-ID: <20260522152114.77319-4-jgross@suse.com>
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
ifdef CONFIG_FUNCTION_TRACER
|
|
# Do not profile debug and lowlevel utilities
|
|
CFLAGS_REMOVE_spinlock.o = -pg
|
|
CFLAGS_REMOVE_time.o = -pg
|
|
CFLAGS_REMOVE_irq.o = -pg
|
|
endif
|
|
|
|
# Make sure early boot has no stackprotector
|
|
CFLAGS_enlighten_pv.o := -fno-stack-protector
|
|
CFLAGS_mmu_pv.o := -fno-stack-protector
|
|
|
|
obj-y += enlighten.o
|
|
obj-y += mmu.o
|
|
obj-y += time.o
|
|
obj-y += grant-table.o
|
|
obj-y += suspend.o
|
|
|
|
obj-$(CONFIG_XEN_PVHVM) += enlighten_hvm.o
|
|
obj-$(CONFIG_XEN_PVHVM) += mmu_hvm.o
|
|
obj-$(CONFIG_XEN_PVHVM) += suspend_hvm.o
|
|
obj-$(CONFIG_XEN_PVHVM) += platform-pci-unplug.o
|
|
|
|
obj-$(CONFIG_XEN_PV) += setup.o
|
|
obj-$(CONFIG_XEN_PV) += apic.o
|
|
obj-$(CONFIG_XEN_PV) += pmu.o
|
|
obj-$(CONFIG_XEN_PV) += suspend_pv.o
|
|
obj-$(CONFIG_XEN_PV) += p2m.o
|
|
obj-$(CONFIG_XEN_PV) += enlighten_pv.o
|
|
obj-$(CONFIG_XEN_PV) += mmu_pv.o
|
|
obj-$(CONFIG_XEN_PV) += irq.o
|
|
obj-$(CONFIG_XEN_PV) += multicalls.o
|
|
obj-$(CONFIG_XEN_PV) += xen-asm.o
|
|
|
|
obj-$(CONFIG_XEN_PVH) += enlighten_pvh.o
|
|
|
|
obj-$(CONFIG_EVENT_TRACING) += trace.o
|
|
|
|
obj-$(CONFIG_SMP) += smp.o
|
|
obj-$(CONFIG_XEN_PV_SMP) += smp_pv.o
|
|
obj-$(CONFIG_XEN_PVHVM_SMP) += smp_hvm.o
|
|
|
|
obj-$(CONFIG_PARAVIRT_SPINLOCKS)+= spinlock.o
|
|
|
|
obj-$(CONFIG_XEN_DOM0) += vga.o
|
|
|
|
obj-$(CONFIG_XEN_EFI) += efi.o
|