linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH linux-next] lib: Kconfig: use bool instead of boolean
@ 2015-02-02 14:59 Christoph Jaeger
  2015-02-02 22:27 ` Andrew Morton
  0 siblings, 1 reply; 13+ messages in thread
From: Christoph Jaeger @ 2015-02-02 14:59 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel, Christoph Jaeger

Keyword 'boolean' for type definition attributes is considered
deprecated and, therefore, should not be used anymore.

See http://lkml.kernel.org/r/cover.1418003065.git.cj@linux.com
See http://lkml.kernel.org/r/1419108071-11607-1-git-send-email-cj@linux.com

Signed-off-by: Christoph Jaeger <cj@linux.com>
---
 lib/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/Kconfig b/lib/Kconfig
index 147c7d9..b039e70 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -14,7 +14,7 @@ config BITREVERSE
 	tristate
 
 config HAVE_ARCH_BITREVERSE
-	boolean
+	bool
 	default n
 	depends on BITREVERSE
 	help
-- 
2.1.0


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* Re: [PATCH linux-next] lib: Kconfig: use bool instead of boolean
  2015-02-02 14:59 [PATCH linux-next] lib: Kconfig: use bool instead of boolean Christoph Jaeger
@ 2015-02-02 22:27 ` Andrew Morton
  2015-02-02 22:37   ` Paul Bolle
                     ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Andrew Morton @ 2015-02-02 22:27 UTC (permalink / raw)
  To: Christoph Jaeger; +Cc: linux-kernel, Yalin Wang, Will Deacon, Russell King

On Mon,  2 Feb 2015 09:59:16 -0500 Christoph Jaeger <cj@linux.com> wrote:

> Keyword 'boolean' for type definition attributes is considered
> deprecated and, therefore, should not be used anymore.
> 
> See http://lkml.kernel.org/r/cover.1418003065.git.cj@linux.com
> See http://lkml.kernel.org/r/1419108071-11607-1-git-send-email-cj@linux.com
> 
> ...
>
> --- a/lib/Kconfig
> +++ b/lib/Kconfig
> @@ -14,7 +14,7 @@ config BITREVERSE
>  	tristate
>  
>  config HAVE_ARCH_BITREVERSE
> -	boolean
> +	bool
>  	default n
>  	depends on BITREVERSE
>  	help

Your patch patches 556d2f055bf6d ("ARM: 8187/1: add
CONFIG_HAVE_ARCH_BITREVERSE to support rbit instruction") which appears
in linux-next via the ARM tree.

There are many uses of "boolean" in lib/Kconfig.  Converting just one
of them is inefficient and odd.

556d2f055bf6d is a bit of a surprise.  It looks good to me from a
non-ARM perspective - the __builtin_constant_p() optimisation is
sensible, although bitrev on a constant probably isn't very common.

I'm not sure about the ARM part though!  __bitrev8() is pretty damn
fast.  Presumably an inlined rbit instruction is faster still, but not
very much?

The Kconfig help text in 556d2f055bf6d rather needs some caring for.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH linux-next] lib: Kconfig: use bool instead of boolean
  2015-02-02 22:27 ` Andrew Morton
@ 2015-02-02 22:37   ` Paul Bolle
  2015-02-02 22:46     ` Andrew Morton
  2015-02-02 23:05   ` Russell King - ARM Linux
  2015-02-02 23:12   ` Christoph Jaeger
  2 siblings, 1 reply; 13+ messages in thread
From: Paul Bolle @ 2015-02-02 22:37 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Christoph Jaeger, linux-kernel, Yalin Wang, Will Deacon, Russell King

On Mon, 2015-02-02 at 14:27 -0800, Andrew Morton wrote:
> There are many uses of "boolean" in lib/Kconfig.  Converting just one
> of them is inefficient and odd.

    $ git grep -n "^\s*boolean\b" next-20150202 -- "*Kconfig*"
    next-20150202:drivers/usb/gadget/Kconfig:427:   boolean "USB Webcam function"
    next-20150202:lib/Kconfig:17:   boolean

What are Christoph and I missing here?


Paul Bolle


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH linux-next] lib: Kconfig: use bool instead of boolean
  2015-02-02 22:37   ` Paul Bolle
@ 2015-02-02 22:46     ` Andrew Morton
  2015-02-02 22:52       ` Paul Bolle
                         ` (2 more replies)
  0 siblings, 3 replies; 13+ messages in thread
From: Andrew Morton @ 2015-02-02 22:46 UTC (permalink / raw)
  To: Paul Bolle
  Cc: Christoph Jaeger, linux-kernel, Yalin Wang, Will Deacon, Russell King

On Mon, 02 Feb 2015 23:37:54 +0100 Paul Bolle <pebolle@tiscali.nl> wrote:

> On Mon, 2015-02-02 at 14:27 -0800, Andrew Morton wrote:
> > There are many uses of "boolean" in lib/Kconfig.  Converting just one
> > of them is inefficient and odd.
> 
>     $ git grep -n "^\s*boolean\b" next-20150202 -- "*Kconfig*"
>     next-20150202:drivers/usb/gadget/Kconfig:427:   boolean "USB Webcam function"
>     next-20150202:lib/Kconfig:17:   boolean
> 
> What are Christoph and I missing here?

akpm3:/usr/src/linux-3.19-rc7> grep boolean lib/Kconfig | wc -l
15


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH linux-next] lib: Kconfig: use bool instead of boolean
  2015-02-02 22:46     ` Andrew Morton
@ 2015-02-02 22:52       ` Paul Bolle
  2015-02-02 22:53       ` Randy Dunlap
  2015-02-02 22:59       ` Stephen Rothwell
  2 siblings, 0 replies; 13+ messages in thread
From: Paul Bolle @ 2015-02-02 22:52 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Christoph Jaeger, linux-kernel, Yalin Wang, Will Deacon, Russell King

On Mon, 2015-02-02 at 14:46 -0800, Andrew Morton wrote:
> On Mon, 02 Feb 2015 23:37:54 +0100 Paul Bolle <pebolle@tiscali.nl> wrote:
> > On Mon, 2015-02-02 at 14:27 -0800, Andrew Morton wrote:
> > > There are many uses of "boolean" in lib/Kconfig.  Converting just one
> > > of them is inefficient and odd.
> > 
> >     $ git grep -n "^\s*boolean\b" next-20150202 -- "*Kconfig*"
> >     next-20150202:drivers/usb/gadget/Kconfig:427:   boolean "USB Webcam function"
> >     next-20150202:lib/Kconfig:17:   boolean
> > 
> > What are Christoph and I missing here?
> 
> akpm3:/usr/src/linux-3.19-rc7> grep boolean lib/Kconfig | wc -l
> 15

Correct. However, Cristoph put "linux-next" in the subject line of this
patch. So this patch was meant to be applied on top of current
linux-next.


Paul Bolle


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH linux-next] lib: Kconfig: use bool instead of boolean
  2015-02-02 22:46     ` Andrew Morton
  2015-02-02 22:52       ` Paul Bolle
@ 2015-02-02 22:53       ` Randy Dunlap
  2015-02-02 22:59       ` Stephen Rothwell
  2 siblings, 0 replies; 13+ messages in thread
From: Randy Dunlap @ 2015-02-02 22:53 UTC (permalink / raw)
  To: Andrew Morton, Paul Bolle
  Cc: Christoph Jaeger, linux-kernel, Yalin Wang, Will Deacon, Russell King

On 02/02/15 14:46, Andrew Morton wrote:
> On Mon, 02 Feb 2015 23:37:54 +0100 Paul Bolle <pebolle@tiscali.nl> wrote:
> 
>> On Mon, 2015-02-02 at 14:27 -0800, Andrew Morton wrote:
>>> There are many uses of "boolean" in lib/Kconfig.  Converting just one
>>> of them is inefficient and odd.
>>
>>     $ git grep -n "^\s*boolean\b" next-20150202 -- "*Kconfig*"
>>     next-20150202:drivers/usb/gadget/Kconfig:427:   boolean "USB Webcam function"
>>     next-20150202:lib/Kconfig:17:   boolean
>>
>> What are Christoph and I missing here?
> 
> akpm3:/usr/src/linux-3.19-rc7> grep boolean lib/Kconfig | wc -l
> 15

Those are mostly "corrected" in linux-next or mmotm.
Also, Documentation/kbuild/kconfig-language.txt only uses "bool".


-- 
~Randy

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH linux-next] lib: Kconfig: use bool instead of boolean
  2015-02-02 22:46     ` Andrew Morton
  2015-02-02 22:52       ` Paul Bolle
  2015-02-02 22:53       ` Randy Dunlap
@ 2015-02-02 22:59       ` Stephen Rothwell
  2 siblings, 0 replies; 13+ messages in thread
From: Stephen Rothwell @ 2015-02-02 22:59 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Paul Bolle, Christoph Jaeger, linux-kernel, Yalin Wang,
	Will Deacon, Russell King

[-- Attachment #1: Type: text/plain, Size: 971 bytes --]

Hi Andrew,

On Mon, 2 Feb 2015 14:46:57 -0800 Andrew Morton <akpm@linux-foundation.org> wrote:
>
> On Mon, 02 Feb 2015 23:37:54 +0100 Paul Bolle <pebolle@tiscali.nl> wrote:
> 
> > On Mon, 2015-02-02 at 14:27 -0800, Andrew Morton wrote:
> > > There are many uses of "boolean" in lib/Kconfig.  Converting just one
> > > of them is inefficient and odd.
> > 
> >     $ git grep -n "^\s*boolean\b" next-20150202 -- "*Kconfig*"
> >     next-20150202:drivers/usb/gadget/Kconfig:427:   boolean "USB Webcam function"
> >     next-20150202:lib/Kconfig:17:   boolean
> > 
> > What are Christoph and I missing here?
> 
> akpm3:/usr/src/linux-3.19-rc7> grep boolean lib/Kconfig | wc -l
> 15

All the others are changed by commit 6341e62b212a ("kconfig: use bool
instead of boolean for type definition attributes") from the kbuild
tree.  Been in linux-next since (at least) next-20150108.

-- 
Cheers,
Stephen Rothwell                    sfr@canb.auug.org.au

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH linux-next] lib: Kconfig: use bool instead of boolean
  2015-02-02 22:27 ` Andrew Morton
  2015-02-02 22:37   ` Paul Bolle
@ 2015-02-02 23:05   ` Russell King - ARM Linux
  2015-02-02 23:18     ` Andrew Morton
  2015-02-02 23:12   ` Christoph Jaeger
  2 siblings, 1 reply; 13+ messages in thread
From: Russell King - ARM Linux @ 2015-02-02 23:05 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Christoph Jaeger, linux-kernel, Yalin Wang, Will Deacon

On Mon, Feb 02, 2015 at 02:27:32PM -0800, Andrew Morton wrote:
> On Mon,  2 Feb 2015 09:59:16 -0500 Christoph Jaeger <cj@linux.com> wrote:
> 
> > Keyword 'boolean' for type definition attributes is considered
> > deprecated and, therefore, should not be used anymore.
> > 
> > See http://lkml.kernel.org/r/cover.1418003065.git.cj@linux.com
> > See http://lkml.kernel.org/r/1419108071-11607-1-git-send-email-cj@linux.com
> > 
> > ...
> >
> > --- a/lib/Kconfig
> > +++ b/lib/Kconfig
> > @@ -14,7 +14,7 @@ config BITREVERSE
> >  	tristate
> >  
> >  config HAVE_ARCH_BITREVERSE
> > -	boolean
> > +	bool
> >  	default n
> >  	depends on BITREVERSE
> >  	help
> 
> Your patch patches 556d2f055bf6d ("ARM: 8187/1: add
> CONFIG_HAVE_ARCH_BITREVERSE to support rbit instruction") which appears
> in linux-next via the ARM tree.
> 
> There are many uses of "boolean" in lib/Kconfig.  Converting just one
> of them is inefficient and odd.
> 
> 556d2f055bf6d is a bit of a surprise.  It looks good to me from a
> non-ARM perspective - the __builtin_constant_p() optimisation is
> sensible, although bitrev on a constant probably isn't very common.
> 
> I'm not sure about the ARM part though!  __bitrev8() is pretty damn
> fast.  Presumably an inlined rbit instruction is faster still, but not
> very much?
> 
> The Kconfig help text in 556d2f055bf6d rather needs some caring for.

The patches had already been round six iterations, and had been posted
on LKML for every iteration.

When people started pushing to have the patches merged, there were two
dependent patches which had been merged via other random trees, so I
held them off for a cycle.  At that point, I even questioned whether I
should be merging them; that question was ignored by everyone.

Eventually, (and after some testing) I ended up giving up and merging
them because they're believed to be a net benefit for ARM, and I
couldn't locate anyone who'd be useful to ack the generic parts of the
patch.

As for whether __bitrev8 is fast or not, that depends whether the table
has been speculatively prefetched and is available without having to go
out to memory - and it's not just about the table itself, there's also
the loading from the individual function's literal pool to get the
address of the table too.  So that's two memory loads per rbit at
minimum.

The rbit instruction is probably at least half the average cycles of
two dependent loads.

-- 
FTTC broadband for 0.8mile line: currently at 10.5Mbps down 400kbps up
according to speedtest.net.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH linux-next] lib: Kconfig: use bool instead of boolean
  2015-02-02 22:27 ` Andrew Morton
  2015-02-02 22:37   ` Paul Bolle
  2015-02-02 23:05   ` Russell King - ARM Linux
@ 2015-02-02 23:12   ` Christoph Jaeger
  2015-02-02 23:24     ` Andrew Morton
  2 siblings, 1 reply; 13+ messages in thread
From: Christoph Jaeger @ 2015-02-02 23:12 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, Yalin Wang, Will Deacon, Russell King

On Mon, Feb 02, 2015 at 02:27:32PM -0800, Andrew Morton wrote:
> On Mon,  2 Feb 2015 09:59:16 -0500 Christoph Jaeger <cj@linux.com> wrote:
> 
> > Keyword 'boolean' for type definition attributes is considered
> > deprecated and, therefore, should not be used anymore.
> > 
> > See http://lkml.kernel.org/r/cover.1418003065.git.cj@linux.com
> > See http://lkml.kernel.org/r/1419108071-11607-1-git-send-email-cj@linux.com
> > 
> > ...
> >
> > --- a/lib/Kconfig
> > +++ b/lib/Kconfig
> > @@ -14,7 +14,7 @@ config BITREVERSE
> >  	tristate
> >  
> >  config HAVE_ARCH_BITREVERSE
> > -	boolean
> > +	bool
> >  	default n
> >  	depends on BITREVERSE
> >  	help
> 
> Your patch patches 556d2f055bf6d ("ARM: 8187/1: add
> CONFIG_HAVE_ARCH_BITREVERSE to support rbit instruction") which appears
> in linux-next via the ARM tree.

Oh, sorry, yes; it should be applied by the ARM folks to their tree then, of course.

Cheers,
Christoph

> There are many uses of "boolean" in lib/Kconfig.  Converting just one
> of them is inefficient and odd.
> 
> 556d2f055bf6d is a bit of a surprise.  It looks good to me from a
> non-ARM perspective - the __builtin_constant_p() optimisation is
> sensible, although bitrev on a constant probably isn't very common.
> 
> I'm not sure about the ARM part though!  __bitrev8() is pretty damn
> fast.  Presumably an inlined rbit instruction is faster still, but not
> very much?
> 
> The Kconfig help text in 556d2f055bf6d rather needs some caring for.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH linux-next] lib: Kconfig: use bool instead of boolean
  2015-02-02 23:05   ` Russell King - ARM Linux
@ 2015-02-02 23:18     ` Andrew Morton
  2015-02-02 23:30       ` Russell King - ARM Linux
  0 siblings, 1 reply; 13+ messages in thread
From: Andrew Morton @ 2015-02-02 23:18 UTC (permalink / raw)
  To: Russell King - ARM Linux
  Cc: Christoph Jaeger, linux-kernel, Yalin Wang, Will Deacon

On Mon, 2 Feb 2015 23:05:48 +0000 Russell King - ARM Linux <linux@arm.linux.org.uk> wrote:

> On Mon, Feb 02, 2015 at 02:27:32PM -0800, Andrew Morton wrote:
> > On Mon,  2 Feb 2015 09:59:16 -0500 Christoph Jaeger <cj@linux.com> wrote:
> > 
> > > Keyword 'boolean' for type definition attributes is considered
> > > deprecated and, therefore, should not be used anymore.
> > > 
> > > See http://lkml.kernel.org/r/cover.1418003065.git.cj@linux.com
> > > See http://lkml.kernel.org/r/1419108071-11607-1-git-send-email-cj@linux.com
> > > 
> > > ...
> > >
> > > --- a/lib/Kconfig
> > > +++ b/lib/Kconfig
> > > @@ -14,7 +14,7 @@ config BITREVERSE
> > >  	tristate
> > >  
> > >  config HAVE_ARCH_BITREVERSE
> > > -	boolean
> > > +	bool
> > >  	default n
> > >  	depends on BITREVERSE
> > >  	help
> > 
> > Your patch patches 556d2f055bf6d ("ARM: 8187/1: add
> > CONFIG_HAVE_ARCH_BITREVERSE to support rbit instruction") which appears
> > in linux-next via the ARM tree.
> > 
> > There are many uses of "boolean" in lib/Kconfig.  Converting just one
> > of them is inefficient and odd.
> > 
> > 556d2f055bf6d is a bit of a surprise.  It looks good to me from a
> > non-ARM perspective - the __builtin_constant_p() optimisation is
> > sensible, although bitrev on a constant probably isn't very common.
> > 
> > I'm not sure about the ARM part though!  __bitrev8() is pretty damn
> > fast.  Presumably an inlined rbit instruction is faster still, but not
> > very much?
> > 
> > The Kconfig help text in 556d2f055bf6d rather needs some caring for.
> 
> The patches had already been round six iterations, and had been posted
> on LKML for every iteration.

People saw "ARM" and went Zzzzz ;)

I'm a bit surprised that nobody helped out with the Kconfig text. 
I queued the below.  Looks OK?

--- a/lib/Kconfig~a
+++ a/lib/Kconfig
@@ -18,9 +18,8 @@ config HAVE_ARCH_BITREVERSE
 	default n
 	depends on BITREVERSE
 	help
-	  This option provides an config for the architecture which have instruction
-	  can do bitreverse operation, we use the hardware instruction if the architecture
-	  have this capability.
+	  This option enables the use of hardware bit-reversal instructions on
+	  architectures which support such operations.
 
 config RATIONAL
 	bool
_


> When people started pushing to have the patches merged, there were two
> dependent patches which had been merged via other random trees, so I
> held them off for a cycle.  At that point, I even questioned whether I
> should be merging them; that question was ignored by everyone.
> 
> Eventually, (and after some testing) I ended up giving up and merging
> them because they're believed to be a net benefit for ARM,

I know the feeling ;)

> and I
> couldn't locate anyone who'd be useful to ack the generic parts of the
> patch.

I usually look after lib/ and hereby ack the patch!  I really should do
a MAINTAINERS patch but I'm shy.

> As for whether __bitrev8 is fast or not, that depends whether the table
> has been speculatively prefetched and is available without having to go
> out to memory - and it's not just about the table itself, there's also
> the loading from the individual function's literal pool to get the
> address of the table too.  So that's two memory loads per rbit at
> minimum.
> 
> The rbit instruction is probably at least half the average cycles of
> two dependent loads.

OK.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH linux-next] lib: Kconfig: use bool instead of boolean
  2015-02-02 23:12   ` Christoph Jaeger
@ 2015-02-02 23:24     ` Andrew Morton
  0 siblings, 0 replies; 13+ messages in thread
From: Andrew Morton @ 2015-02-02 23:24 UTC (permalink / raw)
  To: Christoph Jaeger; +Cc: linux-kernel, Yalin Wang, Will Deacon, Russell King

On Mon, 2 Feb 2015 18:12:13 -0500 Christoph Jaeger <cj@linux.com> wrote:

> > Your patch patches 556d2f055bf6d ("ARM: 8187/1: add
> > CONFIG_HAVE_ARCH_BITREVERSE to support rbit instruction") which appears
> > in linux-next via the ARM tree.
> 
> Oh, sorry, yes; it should be applied by the ARM folks to their tree then, of course.

Is OK, I grabbed it.  I don't think Russell needs to yank and rebase
the current diff.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH linux-next] lib: Kconfig: use bool instead of boolean
  2015-02-02 23:18     ` Andrew Morton
@ 2015-02-02 23:30       ` Russell King - ARM Linux
  2015-02-02 23:40         ` Andrew Morton
  0 siblings, 1 reply; 13+ messages in thread
From: Russell King - ARM Linux @ 2015-02-02 23:30 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Christoph Jaeger, linux-kernel, Yalin Wang, Will Deacon

On Mon, Feb 02, 2015 at 03:18:24PM -0800, Andrew Morton wrote:
> I'm a bit surprised that nobody helped out with the Kconfig text. 
> I queued the below.  Looks OK?
> 
> --- a/lib/Kconfig~a
> +++ a/lib/Kconfig
> @@ -18,9 +18,8 @@ config HAVE_ARCH_BITREVERSE
>  	default n
>  	depends on BITREVERSE
>  	help
> -	  This option provides an config for the architecture which have instruction
> -	  can do bitreverse operation, we use the hardware instruction if the architecture
> -	  have this capability.
> +	  This option enables the use of hardware bit-reversal instructions on
> +	  architectures which support such operations.

Looks fine to me.  How are we going to handle this change (and the bool
bit as well?)  Is it something you want me to merge, or will you send
these changes towards the end of the merge window?

-- 
FTTC broadband for 0.8mile line: currently at 10.5Mbps down 400kbps up
according to speedtest.net.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: [PATCH linux-next] lib: Kconfig: use bool instead of boolean
  2015-02-02 23:30       ` Russell King - ARM Linux
@ 2015-02-02 23:40         ` Andrew Morton
  0 siblings, 0 replies; 13+ messages in thread
From: Andrew Morton @ 2015-02-02 23:40 UTC (permalink / raw)
  To: Russell King - ARM Linux
  Cc: Christoph Jaeger, linux-kernel, Yalin Wang, Will Deacon

On Mon, 2 Feb 2015 23:30:00 +0000 Russell King - ARM Linux <linux@arm.linux.org.uk> wrote:

> On Mon, Feb 02, 2015 at 03:18:24PM -0800, Andrew Morton wrote:
> > I'm a bit surprised that nobody helped out with the Kconfig text. 
> > I queued the below.  Looks OK?
> > 
> > --- a/lib/Kconfig~a
> > +++ a/lib/Kconfig
> > @@ -18,9 +18,8 @@ config HAVE_ARCH_BITREVERSE
> >  	default n
> >  	depends on BITREVERSE
> >  	help
> > -	  This option provides an config for the architecture which have instruction
> > -	  can do bitreverse operation, we use the hardware instruction if the architecture
> > -	  have this capability.
> > +	  This option enables the use of hardware bit-reversal instructions on
> > +	  architectures which support such operations.
> 
> Looks fine to me.  How are we going to handle this change (and the bool
> bit as well?)  Is it something you want me to merge, or will you send
> these changes towards the end of the merge window?

Yep, I can take care of them.

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2015-02-02 23:40 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-02 14:59 [PATCH linux-next] lib: Kconfig: use bool instead of boolean Christoph Jaeger
2015-02-02 22:27 ` Andrew Morton
2015-02-02 22:37   ` Paul Bolle
2015-02-02 22:46     ` Andrew Morton
2015-02-02 22:52       ` Paul Bolle
2015-02-02 22:53       ` Randy Dunlap
2015-02-02 22:59       ` Stephen Rothwell
2015-02-02 23:05   ` Russell King - ARM Linux
2015-02-02 23:18     ` Andrew Morton
2015-02-02 23:30       ` Russell King - ARM Linux
2015-02-02 23:40         ` Andrew Morton
2015-02-02 23:12   ` Christoph Jaeger
2015-02-02 23:24     ` Andrew Morton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).