From: tip-bot for Daniel Wagner <tipbot@zytor.com>
To: linux-tip-commits@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, tglx@linutronix.de,
pbonzini@redhat.com, paulmck@linux.vnet.ibm.com,
mtosatti@redhat.com, mingo@kernel.org, hpa@zytor.com,
boqun.feng@gmail.com, rostedt@goodmis.org, peterz@infradead.org,
paul.gortmaker@windriver.com, daniel.wagner@bmw-carit.de
Subject: [tip:sched/core] kbuild: Add option to turn incompatible pointer check into error
Date: Thu, 25 Feb 2016 02:30:59 -0800 [thread overview]
Message-ID: <tip-ef50c046338948df9f23fb5ef853efda0274c7b3@git.kernel.org> (raw)
In-Reply-To: <1455871601-27484-3-git-send-email-wagi@monom.org>
Commit-ID: ef50c046338948df9f23fb5ef853efda0274c7b3
Gitweb: http://git.kernel.org/tip/ef50c046338948df9f23fb5ef853efda0274c7b3
Author: Daniel Wagner <daniel.wagner@bmw-carit.de>
AuthorDate: Fri, 19 Feb 2016 09:46:38 +0100
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitDate: Thu, 25 Feb 2016 11:27:16 +0100
kbuild: Add option to turn incompatible pointer check into error
With the introduction of the simple wait API we have two very
similar APIs in the kernel. For example wake_up() and swake_up()
is only one character away. Although the compiler will warn
happily the wrong usage it keeps on going an even links the kernel.
Thomas and Peter would rather like to see early missuses reported
as error early on.
In a first attempt we tried to wrap all swait and wait calls
into a macro which has an compile time type assertion. The result
was pretty ugly and wasn't able to catch all wrong usages.
woken_wake_function(), autoremove_wake_function() and wake_bit_function()
are assigned as function pointers. Wrapping them with a macro around is
not possible. Prefixing them with '_' was also not a real option
because there some users in the kernel which do use them as well.
All in all this attempt looked to intrusive and too ugly.
An alternative is to turn the pointer type check into an error which
catches wrong type uses. Obviously not only the swait/wait ones. That
isn't a bad thing either.
Signed-off-by: Daniel Wagner <daniel.wagner@bmw-carit.de>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: linux-rt-users@vger.kernel.org
Cc: Boqun Feng <boqun.feng@gmail.com>
Cc: Marcelo Tosatti <mtosatti@redhat.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Link: http://lkml.kernel.org/r/1455871601-27484-3-git-send-email-wagi@monom.org
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
Makefile | 3 +++
1 file changed, 3 insertions(+)
diff --git a/Makefile b/Makefile
index 6c1a3c2..4513509 100644
--- a/Makefile
+++ b/Makefile
@@ -773,6 +773,9 @@ KBUILD_CFLAGS += $(call cc-option,-Werror=strict-prototypes)
# Prohibit date/time macros, which would make the build non-deterministic
KBUILD_CFLAGS += $(call cc-option,-Werror=date-time)
+# enforce correct pointer usage
+KBUILD_CFLAGS += $(call cc-option,-Werror=incompatible-pointer-types)
+
# use the deterministic mode of AR if available
KBUILD_ARFLAGS := $(call ar-option,D)
next prev parent reply other threads:[~2016-02-25 10:31 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-19 8:46 [PATCH tip v8 0/5] Simple wait queue support Daniel Wagner
2016-02-19 8:46 ` [PATCH v8 1/5] wait.[ch]: Introduce the simple waitqueue (swait) implementation Daniel Wagner
2016-02-25 10:30 ` [tip:sched/core] " tip-bot for Peter Zijlstra (Intel)
2016-02-19 8:46 ` [PATCH v8 2/5] kbuild: Add option to turn incompatible pointer check into error Daniel Wagner
2016-02-25 10:30 ` tip-bot for Daniel Wagner [this message]
2016-02-19 8:46 ` [PATCH v8 3/5] KVM: use simple waitqueue for vcpu->wq Daniel Wagner
2016-02-25 10:31 ` [tip:sched/core] KVM: Use " tip-bot for Marcelo Tosatti
2016-02-19 8:46 ` [PATCH v8 4/5] rcu: Do not call rcu_nocb_gp_cleanup() while holding rnp->lock Daniel Wagner
2016-02-25 10:31 ` [tip:sched/core] " tip-bot for Daniel Wagner
2016-02-19 8:46 ` [PATCH v8 5/5] rcu: use simple wait queues where possible in rcutree Daniel Wagner
2016-02-25 10:32 ` [tip:sched/core] rcu: Use " tip-bot for Paul Gortmaker
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=tip-ef50c046338948df9f23fb5ef853efda0274c7b3@git.kernel.org \
--to=tipbot@zytor.com \
--cc=boqun.feng@gmail.com \
--cc=daniel.wagner@bmw-carit.de \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-tip-commits@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=mtosatti@redhat.com \
--cc=paul.gortmaker@windriver.com \
--cc=paulmck@linux.vnet.ibm.com \
--cc=pbonzini@redhat.com \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=tglx@linutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox