Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

x86/nmi: Clean up register_nmi_handler() usage

Implement a cleaner and easier to maintain version for the section
warning fixes implemented in commit eeaaa96a3a21
("x86/nmi: Fix section mismatch warnings on 32-bit").

Signed-off-by: Li Zhong <zhong@linux.vnet.ibm.com>
Signed-off-by: Don Zickus <dzickus@redhat.com>
Cc: Jan Beulich <JBeulich@suse.com>
Link: http://lkml.kernel.org/r/1340049393-17771-1-git-send-email-dzickus@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>

authored by

Li Zhong and committed by
Ingo Molnar
0718467c 6a991acc

+7 -20
+3 -17
arch/x86/include/asm/nmi.h
··· 44 44 const char *name; 45 45 }; 46 46 47 - #define register_nmi_handler(t, fn, fg, n) \ 47 + #define register_nmi_handler(t, fn, fg, n, init...) \ 48 48 ({ \ 49 - static struct nmiaction fn##_na = { \ 49 + static struct nmiaction init fn##_na = { \ 50 50 .handler = (fn), \ 51 51 .name = (n), \ 52 52 .flags = (fg), \ 53 53 }; \ 54 - __register_nmi_handler((t), &fn##_na); \ 55 - }) 56 - 57 - /* 58 - * For special handlers that register/unregister in the 59 - * init section only. This should be considered rare. 60 - */ 61 - #define register_nmi_handler_initonly(t, fn, fg, n) \ 62 - ({ \ 63 - static struct nmiaction fn##_na __initdata = { \ 64 - .handler = (fn), \ 65 - .name = (n), \ 66 - .flags = (fg), \ 67 - }; \ 68 - __register_nmi_handler((t), &fn##_na); \ 54 + __register_nmi_handler((t), &fn##_na); \ 69 55 }) 70 56 71 57 int __register_nmi_handler(unsigned int, struct nmiaction *);
+4 -3
arch/x86/kernel/nmi_selftest.c
··· 42 42 static void __init init_nmi_testsuite(void) 43 43 { 44 44 /* trap all the unknown NMIs we may generate */ 45 - register_nmi_handler_initonly(NMI_UNKNOWN, nmi_unk_cb, 0, "nmi_selftest_unk"); 45 + register_nmi_handler(NMI_UNKNOWN, nmi_unk_cb, 0, "nmi_selftest_unk", 46 + __initdata); 46 47 } 47 48 48 49 static void __init cleanup_nmi_testsuite(void) ··· 65 64 { 66 65 unsigned long timeout; 67 66 68 - if (register_nmi_handler_initonly(NMI_LOCAL, test_nmi_ipi_callback, 69 - NMI_FLAG_FIRST, "nmi_selftest")) { 67 + if (register_nmi_handler(NMI_LOCAL, test_nmi_ipi_callback, 68 + NMI_FLAG_FIRST, "nmi_selftest", __initdata)) { 70 69 nmi_fail = FAILURE; 71 70 return; 72 71 }