mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 21:21:09 -04:00
Consolidate the uprobes code under kernel/events/, where the various core kernel event handling routines live. Acked-by: Peter Zijlstra <[email protected]> Cc: Srikar Dronamraju <[email protected]> Cc: Jim Keniston <[email protected]> Cc: Oleg Nesterov <[email protected]> Cc: Masami Hiramatsu <[email protected]> Cc: Arnaldo Carvalho de Melo <[email protected]> Cc: Anton Arapov <[email protected]> Cc: Ananth N Mavinakayanahalli <[email protected]> Link: http://lkml.kernel.org/n/[email protected] Signed-off-by: Ingo Molnar <[email protected]>
10 lines
194 B
Makefile
10 lines
194 B
Makefile
ifdef CONFIG_FUNCTION_TRACER
|
|
CFLAGS_REMOVE_core.o = -pg
|
|
endif
|
|
|
|
obj-y := core.o ring_buffer.o callchain.o
|
|
|
|
obj-$(CONFIG_HAVE_HW_BREAKPOINT) += hw_breakpoint.o
|
|
obj-$(CONFIG_UPROBES) += uprobes.o
|
|
|