Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1628626 > unrolled thread

[PATCH 0/2] kbuild: clang: Disable spurious warnings

Started byMatthias Kaehlcke <mka@chromium.org>
First post2017-04-21 23:50 +0200
Last post2017-04-21 23:50 +0200
Articles 2 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH 0/2] kbuild: clang: Disable spurious warnings Matthias Kaehlcke <mka@chromium.org> - 2017-04-21 23:50 +0200
    [PATCH 2/2] kbuild: clang: Disable the 'duplicate-decl-specifier' warning Matthias Kaehlcke <mka@chromium.org> - 2017-04-21 23:50 +0200

#1628626 — [PATCH 0/2] kbuild: clang: Disable spurious warnings

FromMatthias Kaehlcke <mka@chromium.org>
Date2017-04-21 23:50 +0200
Subject[PATCH 0/2] kbuild: clang: Disable spurious warnings
Message-ID<tyOBc-2u9-23@gated-at.bofh.it>
Disable two clang warnings that generate a lot of noise.

Matthias Kaehlcke (2):
  kbuild: clang: Disable 'address-of-packed-member' warning
  kbuild: clang: Disable the 'duplicate-decl-specifier' warning

 Makefile | 2 ++
 1 file changed, 2 insertions(+)

-- 
2.12.2.816.g2cccc81164-goog

[toc] | [next] | [standalone]


#1628628 — [PATCH 2/2] kbuild: clang: Disable the 'duplicate-decl-specifier' warning

FromMatthias Kaehlcke <mka@chromium.org>
Date2017-04-21 23:50 +0200
Subject[PATCH 2/2] kbuild: clang: Disable the 'duplicate-decl-specifier' warning
Message-ID<tyOBc-2u9-37@gated-at.bofh.it>
In reply to#1628626
clang generates plenty of these warnings in different parts of the code.
They are mostly caused by container_of() and other macros which declare
a "const <type> *" variable for their internal use which triggers a
"duplicate 'const' specifier" warning if the <type> is already const
qualified.

Wording-mostly-from: Michael Davidson <md@google.com>
Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
---
 Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Makefile b/Makefile
index df5abf346354..6cd6d428db43 100644
--- a/Makefile
+++ b/Makefile
@@ -704,6 +704,7 @@ KBUILD_CFLAGS += $(call cc-disable-warning, unused-variable)
 KBUILD_CFLAGS += $(call cc-disable-warning, format-invalid-specifier)
 KBUILD_CFLAGS += $(call cc-disable-warning, gnu)
 KBUILD_CFLAGS += $(call cc-disable-warning, address-of-packed-member)
+KBUILD_CFLAGS += $(call cc-disable-warning, duplicate-decl-specifier)
 # Quiet clang warning: comparison of unsigned expression < 0 is always false
 KBUILD_CFLAGS += $(call cc-disable-warning, tautological-compare)
 # CLANG uses a _MergedGlobals as optimization, but this breaks modpost, as the
-- 
2.12.2.816.g2cccc81164-goog

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web