From: Mark Rustad <mark.d.rus...@intel.com>

Silence nested-externs warnings for these, as these nested
externs are truly wanted.

CC: Oleg Nesterov <o...@redhat.com>
CC: Andrew Morton <a...@linux-foundation.org>
CC: Geert Uytterhoeven <ge...@linux-m68k.org>
CC: Richard Weinberger <rich...@nod.at>
CC: Brian Norris <computersforpe...@gmail.com>
Signed-off-by: Mark Rustad <mark.d.rus...@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirs...@intel.com>
---
 include/linux/signal.h | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/include/linux/signal.h b/include/linux/signal.h
index 750196f..e68ae6b 100644
--- a/include/linux/signal.h
+++ b/include/linux/signal.h
@@ -67,7 +67,9 @@ static inline int sigismember(sigset_t *set, int _sig)
 
 static inline int sigisemptyset(sigset_t *set)
 {
+       DIAG_PUSH DIAG_IGNORE(nested-externs)
        extern void _NSIG_WORDS_is_unsupported_size(void);
+       DIAG_POP
        switch (_NSIG_WORDS) {
        case 4:
                return (set->sig[3] | set->sig[2] |
@@ -90,7 +92,9 @@ static inline int sigisemptyset(sigset_t *set)
 #define _SIG_SET_BINOP(name, op)                                       \
 static inline void name(sigset_t *r, const sigset_t *a, const sigset_t *b) \
 {                                                                      \
+       DIAG_PUSH DIAG_IGNORE(nested-externs)                           \
        extern void _NSIG_WORDS_is_unsupported_size(void);              \
+       DIAG_POP                                                        \
        unsigned long a0, a1, a2, a3, b0, b1, b2, b3;                   \
                                                                        \
        switch (_NSIG_WORDS) {                                          \
@@ -128,7 +132,9 @@ _SIG_SET_BINOP(sigandnsets, _sig_andn)
 #define _SIG_SET_OP(name, op)                                          \
 static inline void name(sigset_t *set)                                 \
 {                                                                      \
+       DIAG_PUSH DIAG_IGNORE(nested-externs)                           \
        extern void _NSIG_WORDS_is_unsupported_size(void);              \
+       DIAG_POP                                                        \
                                                                        \
        switch (_NSIG_WORDS) {                                          \
            case 4: set->sig[3] = op(set->sig[3]);                      \
-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to