mirror of
https://github.com/torvalds/linux.git
synced 2024-11-26 14:12:06 +00:00
4462fbfe6e
Commit 3e702ff6d1
("perf/x86: Add LBR software filter support for Intel
CPUs") introduces a software branch filter which complements the hardware
branch filter and adds an x86 branch classifier.
Move the branch classifier to arch/x86/events/ so that it can be utilized
by other vendors for branch record filtering.
Signed-off-by: Sandipan Das <sandipan.das@amd.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lore.kernel.org/r/bae5b95470d6bd49f40954bd379f414f5afcb965.1660211399.git.sandipan.das@amd.com
9 lines
315 B
Makefile
9 lines
315 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-y += core.o probe.o utils.o
|
|
obj-$(CONFIG_PERF_EVENTS_INTEL_RAPL) += rapl.o
|
|
obj-y += amd/
|
|
obj-$(CONFIG_X86_LOCAL_APIC) += msr.o
|
|
obj-$(CONFIG_CPU_SUP_INTEL) += intel/
|
|
obj-$(CONFIG_CPU_SUP_CENTAUR) += zhaoxin/
|
|
obj-$(CONFIG_CPU_SUP_ZHAOXIN) += zhaoxin/
|