提交 066ce64c 编写于 作者: M Mathias Krause 提交者: Ingo Molnar

perf/x86/intel: Mark initialization code as such

A few of the initialization functions are missing the __init annotation.
Fix this and thereby allow ~680 additional bytes of code to be released
after initialization.
Signed-off-by: NMathias Krause <minipli@googlemail.com>
Signed-off-by: NPeter Zijlstra (Intel) <peterz@infradead.org>
Cc: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: x86@kernel.org
Link: http://lkml.kernel.org/r/1409071785-26015-1-git-send-email-minipli@googlemail.comSigned-off-by: NIngo Molnar <mingo@kernel.org>
上级 70691d4a
...@@ -1014,7 +1014,7 @@ static void intel_pmu_drain_pebs_nhm(struct pt_regs *iregs) ...@@ -1014,7 +1014,7 @@ static void intel_pmu_drain_pebs_nhm(struct pt_regs *iregs)
* BTS, PEBS probe and setup * BTS, PEBS probe and setup
*/ */
void intel_ds_init(void) void __init intel_ds_init(void)
{ {
/* /*
* No support for 32bit formats * No support for 32bit formats
......
...@@ -697,7 +697,7 @@ static const int snb_lbr_sel_map[PERF_SAMPLE_BRANCH_MAX] = { ...@@ -697,7 +697,7 @@ static const int snb_lbr_sel_map[PERF_SAMPLE_BRANCH_MAX] = {
}; };
/* core */ /* core */
void intel_pmu_lbr_init_core(void) void __init intel_pmu_lbr_init_core(void)
{ {
x86_pmu.lbr_nr = 4; x86_pmu.lbr_nr = 4;
x86_pmu.lbr_tos = MSR_LBR_TOS; x86_pmu.lbr_tos = MSR_LBR_TOS;
...@@ -712,7 +712,7 @@ void intel_pmu_lbr_init_core(void) ...@@ -712,7 +712,7 @@ void intel_pmu_lbr_init_core(void)
} }
/* nehalem/westmere */ /* nehalem/westmere */
void intel_pmu_lbr_init_nhm(void) void __init intel_pmu_lbr_init_nhm(void)
{ {
x86_pmu.lbr_nr = 16; x86_pmu.lbr_nr = 16;
x86_pmu.lbr_tos = MSR_LBR_TOS; x86_pmu.lbr_tos = MSR_LBR_TOS;
...@@ -733,7 +733,7 @@ void intel_pmu_lbr_init_nhm(void) ...@@ -733,7 +733,7 @@ void intel_pmu_lbr_init_nhm(void)
} }
/* sandy bridge */ /* sandy bridge */
void intel_pmu_lbr_init_snb(void) void __init intel_pmu_lbr_init_snb(void)
{ {
x86_pmu.lbr_nr = 16; x86_pmu.lbr_nr = 16;
x86_pmu.lbr_tos = MSR_LBR_TOS; x86_pmu.lbr_tos = MSR_LBR_TOS;
...@@ -753,7 +753,7 @@ void intel_pmu_lbr_init_snb(void) ...@@ -753,7 +753,7 @@ void intel_pmu_lbr_init_snb(void)
} }
/* atom */ /* atom */
void intel_pmu_lbr_init_atom(void) void __init intel_pmu_lbr_init_atom(void)
{ {
/* /*
* only models starting at stepping 10 seems * only models starting at stepping 10 seems
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册