diff options
author | Arjan van de Ven <arjan@infradead.org> | 2006-07-10 07:44:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-10 16:24:15 -0400 |
commit | 1454aed92b6b89cb1fbe3cbecd8ceaa7a122f3b7 (patch) | |
tree | fc8ff55a38bed2400aa21ee75e8311e9064060cd /arch/x86_64/kernel/traps.c | |
parent | f86bf9b7bcc5d325687a8b80da8ee3eb56e02da7 (diff) |
[PATCH] put a comment at register_die_notifier that the export is used
{un}register_die_notifier() is used by kdb... document this so that future
"remove dead export" rounds can skip this export.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64/kernel/traps.c')
-rw-r--r-- | arch/x86_64/kernel/traps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/kernel/traps.c b/arch/x86_64/kernel/traps.c index 79d05c482072..eb39a2775236 100644 --- a/arch/x86_64/kernel/traps.c +++ b/arch/x86_64/kernel/traps.c | |||
@@ -76,13 +76,13 @@ int register_die_notifier(struct notifier_block *nb) | |||
76 | vmalloc_sync_all(); | 76 | vmalloc_sync_all(); |
77 | return atomic_notifier_chain_register(&die_chain, nb); | 77 | return atomic_notifier_chain_register(&die_chain, nb); |
78 | } | 78 | } |
79 | EXPORT_SYMBOL(register_die_notifier); | 79 | EXPORT_SYMBOL(register_die_notifier); /* used modular by kdb */ |
80 | 80 | ||
81 | int unregister_die_notifier(struct notifier_block *nb) | 81 | int unregister_die_notifier(struct notifier_block *nb) |
82 | { | 82 | { |
83 | return atomic_notifier_chain_unregister(&die_chain, nb); | 83 | return atomic_notifier_chain_unregister(&die_chain, nb); |
84 | } | 84 | } |
85 | EXPORT_SYMBOL(unregister_die_notifier); | 85 | EXPORT_SYMBOL(unregister_die_notifier); /* used modular by kdb */ |
86 | 86 | ||
87 | static inline void conditional_sti(struct pt_regs *regs) | 87 | static inline void conditional_sti(struct pt_regs *regs) |
88 | { | 88 | { |