Re: [PATCH] kbuild: Add option to turn incompatible pointer check into error

2016-03-15 Thread Michal Marek
Dne 15.3.2016 v 22:34 Michal Marek napsal(a): > Dne 8.3.2016 v 10:19 Ingo Molnar napsal(a): >> Note that there will be a few build failures triggered by this, for example >> this >> fix from linux-next is needed: >> >>> commit db9b60400f9253c25ae639797df2d0ff7a35d9d8 >>> Author: Sudip Mukherjee

Re: [PATCH] kbuild: Add option to turn incompatible pointer check into error

2016-03-15 Thread Michal Marek
Dne 8.3.2016 v 10:19 Ingo Molnar napsal(a): > > * Thomas Gleixner wrote: > >> On Tue, 8 Mar 2016, Daniel Wagner wrote: >> >>> From: Daniel Wagner >>> >>> 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 onl

Re: [PATCH] kbuild: Add option to turn incompatible pointer check into error

2016-03-08 Thread Ingo Molnar
* Thomas Gleixner wrote: > On Tue, 8 Mar 2016, Daniel Wagner wrote: > > > From: Daniel Wagner > > > > 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 w

Re: [PATCH] kbuild: Add option to turn incompatible pointer check into error

2016-03-08 Thread Thomas Gleixner
On Tue, 8 Mar 2016, Daniel Wagner wrote: > From: Daniel Wagner > > 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

[PATCH] kbuild: Add option to turn incompatible pointer check into error

2016-03-08 Thread Daniel Wagner
From: Daniel Wagner 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