diff options
| author | Borislav Petkov <bp@suse.de> | 2016-02-08 11:09:04 -0500 |
|---|---|---|
| committer | Ingo Molnar <mingo@kernel.org> | 2016-02-09 04:23:49 -0500 |
| commit | fa9cbf320e996eaa3d219344b6f7013b096cafd9 (patch) | |
| tree | 6025594a17b7c04a858b67969ff2efdb3f660469 | |
| parent | 93b894b6ab829fa640af041de36ced22c714c090 (diff) | |
perf/x86: Move perf_event.c ............... => x86/events/core.c
Also, keep the churn at minimum by adjusting the include "perf_event.h"
when each file gets moved.
Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Vince Weaver <vincent.weaver@maine.edu>
Link: http://lkml.kernel.org/r/1454947748-28629-2-git-send-email-bp@alien8.de
Signed-off-by: Ingo Molnar <mingo@kernel.org>
| -rw-r--r-- | arch/x86/Kbuild | 3 | ||||
| -rw-r--r-- | arch/x86/events/Makefile | 1 | ||||
| -rw-r--r-- | arch/x86/events/core.c (renamed from arch/x86/kernel/cpu/perf_event.c) | 2 | ||||
| -rw-r--r-- | arch/x86/kernel/cpu/Makefile | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/Kbuild b/arch/x86/Kbuild index 1538562cc720..eb3abf8ac44e 100644 --- a/arch/x86/Kbuild +++ b/arch/x86/Kbuild | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | |||
| 2 | obj-y += entry/ | 1 | obj-y += entry/ |
| 3 | 2 | ||
| 3 | obj-$(CONFIG_PERF_EVENTS) += events/ | ||
| 4 | |||
| 4 | obj-$(CONFIG_KVM) += kvm/ | 5 | obj-$(CONFIG_KVM) += kvm/ |
| 5 | 6 | ||
| 6 | # Xen paravirtualization support | 7 | # Xen paravirtualization support |
diff --git a/arch/x86/events/Makefile b/arch/x86/events/Makefile new file mode 100644 index 000000000000..3fad3ce1bbab --- /dev/null +++ b/arch/x86/events/Makefile | |||
| @@ -0,0 +1 @@ | |||
| obj-y += core.o | |||
diff --git a/arch/x86/kernel/cpu/perf_event.c b/arch/x86/events/core.c index 7402c8182813..90ca601b5d5c 100644 --- a/arch/x86/kernel/cpu/perf_event.c +++ b/arch/x86/events/core.c | |||
| @@ -37,7 +37,7 @@ | |||
| 37 | #include <asm/desc.h> | 37 | #include <asm/desc.h> |
| 38 | #include <asm/ldt.h> | 38 | #include <asm/ldt.h> |
| 39 | 39 | ||
| 40 | #include "perf_event.h" | 40 | #include "../kernel/cpu/perf_event.h" |
| 41 | 41 | ||
| 42 | struct x86_pmu x86_pmu __read_mostly; | 42 | struct x86_pmu x86_pmu __read_mostly; |
| 43 | 43 | ||
diff --git a/arch/x86/kernel/cpu/Makefile b/arch/x86/kernel/cpu/Makefile index 58031303e304..77000d54fcd1 100644 --- a/arch/x86/kernel/cpu/Makefile +++ b/arch/x86/kernel/cpu/Makefile | |||
| @@ -30,8 +30,6 @@ obj-$(CONFIG_CPU_SUP_CENTAUR) += centaur.o | |||
| 30 | obj-$(CONFIG_CPU_SUP_TRANSMETA_32) += transmeta.o | 30 | obj-$(CONFIG_CPU_SUP_TRANSMETA_32) += transmeta.o |
| 31 | obj-$(CONFIG_CPU_SUP_UMC_32) += umc.o | 31 | obj-$(CONFIG_CPU_SUP_UMC_32) += umc.o |
| 32 | 32 | ||
| 33 | obj-$(CONFIG_PERF_EVENTS) += perf_event.o | ||
| 34 | |||
| 35 | ifdef CONFIG_PERF_EVENTS | 33 | ifdef CONFIG_PERF_EVENTS |
| 36 | obj-$(CONFIG_CPU_SUP_AMD) += perf_event_amd.o perf_event_amd_uncore.o | 34 | obj-$(CONFIG_CPU_SUP_AMD) += perf_event_amd.o perf_event_amd_uncore.o |
| 37 | ifdef CONFIG_AMD_IOMMU | 35 | ifdef CONFIG_AMD_IOMMU |
