]> git.baikalelectronics.ru Git - kernel.git/commit
kbuild: Add option to turn incompatible pointer check into error
authorDaniel Wagner <daniel.wagner@bmw-carit.de>
Tue, 8 Mar 2016 08:29:09 +0000 (09:29 +0100)
committerMichal Marek <mmarek@suse.com>
Tue, 15 Mar 2016 20:51:54 +0000 (21:51 +0100)
commitfc02c4209e101ee6310ef37de4f20a4218e144c3
tree84e32b711078fc17dfa3c5bb1798d48023d51887
parent3f6fc8d64580c7efb0c2fb594355d9fe1136ee98
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>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Michal Marek <mmarek@suse.com>
Makefile