Re: Fix usage of true and false as field names in struct taint_flag

2017-01-03 Thread Valdis . Kletnieks
On Tue, 03 Jan 2017 11:55:36 -0800, Jessica Yu said: > Hm, you and Larry Finger sent the exact same fix at around the same > time, although I think people are leaning towards the other patch > (it's just a naming preference), see here: > >https://lkml.kernel.org/r/20161224195532.15128-1-larry.

Re: Fix usage of true and false as field names in struct taint_flag

2017-01-03 Thread Jessica Yu
+++ Valdis Kletnieks [26/12/16 18:49 -0500]: The commit 7fd8329ba502ef76dd ("taint/module: Clean up global and module taint flags handling") contains this chunk: +struct taint_flag { + char true; /* character printed when tainted */ + char false; /* character printed when no

[PATCH] Fix usage of true and false as field names in struct taint_flag

2016-12-26 Thread Valdis Kletnieks
The commit 7fd8329ba502ef76dd ("taint/module: Clean up global and module taint flags handling") contains this chunk: +struct taint_flag { + char true; /* character printed when tainted */ + char false; /* character printed when not tainted */ + bool module;/* also s

Re: [PATCH] Fix usage of true and false as field names in struct taint_flag

2016-12-26 Thread Valdis . Kletnieks
On Fri, 23 Dec 2016 12:59:35 +0100, Petr Mladek said: > On Thu 2016-12-22 13:56:38, Valdis Kletnieks wrote: > > commit 7fd8329ba502ef76dd91db561c7aed696b2c7720 > > Author: Petr Mladek > > Date: Wed Sep 21 13:47:22 2016 +0200 > > > > taint/module: Clean up global and module taint flags handl

Re: [PATCH] Fix usage of true and false as field names in struct taint_flag

2016-12-23 Thread Petr Mladek
On Thu 2016-12-22 13:56:38, Valdis Kletnieks wrote: > commit 7fd8329ba502ef76dd91db561c7aed696b2c7720 > Author: Petr Mladek > Date: Wed Sep 21 13:47:22 2016 +0200 > > taint/module: Clean up global and module taint flags handling > > Contains this chunk: Information about a past commits is

[PATCH] Fix usage of true and false as field names in struct taint_flag

2016-12-22 Thread Valdis Kletnieks
commit 7fd8329ba502ef76dd91db561c7aed696b2c7720 Author: Petr Mladek Date: Wed Sep 21 13:47:22 2016 +0200 taint/module: Clean up global and module taint flags handling Contains this chunk: --- a/include/linux/kernel.h +struct taint_flag { + char true; /* character printed when