diff options
author | Frederic Weisbecker <fweisbec@gmail.com> | 2009-11-10 04:17:07 -0500 |
---|---|---|
committer | Frederic Weisbecker <fweisbec@gmail.com> | 2009-11-10 05:23:29 -0500 |
commit | f60d24d2ad04977b0bd9e3eb35dba2d2fa569af9 (patch) | |
tree | b9335a41bce33a05985634a382a5adcf837dec43 /kernel | |
parent | 9f6b3c2c30cfbb1166ce7e74a8f9fd93ae19d2de (diff) |
hw-breakpoints: Fix broken hw-breakpoint sample module
The hw-breakpoint sample module has been broken during the
hw-breakpoint internals refactoring. Propagate the changes
to it.
Reported-by: "K. Prasad" <prasad@linux.vnet.ibm.com>
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/hw_breakpoint.c | 3 | ||||
-rw-r--r-- | kernel/kallsyms.c | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/kernel/hw_breakpoint.c b/kernel/hw_breakpoint.c index e662dc991c96..9ea9414e0e58 100644 --- a/kernel/hw_breakpoint.c +++ b/kernel/hw_breakpoint.c | |||
@@ -454,6 +454,7 @@ fail: | |||
454 | /* return the error if any */ | 454 | /* return the error if any */ |
455 | return ERR_PTR(err); | 455 | return ERR_PTR(err); |
456 | } | 456 | } |
457 | EXPORT_SYMBOL_GPL(register_wide_hw_breakpoint); | ||
457 | 458 | ||
458 | /** | 459 | /** |
459 | * unregister_wide_hw_breakpoint - unregister a wide breakpoint in the kernel | 460 | * unregister_wide_hw_breakpoint - unregister a wide breakpoint in the kernel |
@@ -470,7 +471,7 @@ void unregister_wide_hw_breakpoint(struct perf_event **cpu_events) | |||
470 | } | 471 | } |
471 | free_percpu(cpu_events); | 472 | free_percpu(cpu_events); |
472 | } | 473 | } |
473 | 474 | EXPORT_SYMBOL_GPL(unregister_wide_hw_breakpoint); | |
474 | 475 | ||
475 | static struct notifier_block hw_breakpoint_exceptions_nb = { | 476 | static struct notifier_block hw_breakpoint_exceptions_nb = { |
476 | .notifier_call = hw_breakpoint_exceptions_notify, | 477 | .notifier_call = hw_breakpoint_exceptions_notify, |
diff --git a/kernel/kallsyms.c b/kernel/kallsyms.c index 8b6b8b697c68..8e5288a8a355 100644 --- a/kernel/kallsyms.c +++ b/kernel/kallsyms.c | |||
@@ -181,6 +181,7 @@ unsigned long kallsyms_lookup_name(const char *name) | |||
181 | } | 181 | } |
182 | return module_kallsyms_lookup_name(name); | 182 | return module_kallsyms_lookup_name(name); |
183 | } | 183 | } |
184 | EXPORT_SYMBOL_GPL(kallsyms_lookup_name); | ||
184 | 185 | ||
185 | int kallsyms_on_each_symbol(int (*fn)(void *, const char *, struct module *, | 186 | int kallsyms_on_each_symbol(int (*fn)(void *, const char *, struct module *, |
186 | unsigned long), | 187 | unsigned long), |