* [PATCH] wireless extensions should default to Y
@ 2015-01-07 10:19 Pavel Machek
2015-01-07 10:41 ` Johannes Berg
0 siblings, 1 reply; 4+ messages in thread
From: Pavel Machek @ 2015-01-07 10:19 UTC (permalink / raw)
To: jikos, kernel list, Linus Torvalds
Cc: johannes, davem, linux-wireless, netdev
Do we need following patch on top of
24a0aa212ee2dbe44360288684478d76a8e20a0a revert?
I updated kernel today, and (probably because extensions were not
selectable before), the default choice was "N", which is wrong:
oldconfig should result in compatible choices being made, for example
to help bisect.
Signed-off-by: Pavel Machek <pavel@ucw.cz>
diff --git a/net/wireless/Kconfig b/net/wireless/Kconfig
index 29c8675..8951dba 100644
--- a/net/wireless/Kconfig
+++ b/net/wireless/Kconfig
@@ -177,6 +177,7 @@ config CFG80211_INTERNAL_REGDB
config CFG80211_WEXT
bool "cfg80211 wireless extensions compatibility"
depends on CFG80211
+ default y
select WEXT_CORE
help
Enable this option if you need old userspace for wireless
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] wireless extensions should default to Y
2015-01-07 10:19 [PATCH] wireless extensions should default to Y Pavel Machek
@ 2015-01-07 10:41 ` Johannes Berg
2015-01-07 11:03 ` Pavel Machek
0 siblings, 1 reply; 4+ messages in thread
From: Johannes Berg @ 2015-01-07 10:41 UTC (permalink / raw)
To: Pavel Machek
Cc: jikos, kernel list, Linus Torvalds, davem, linux-wireless, netdev
On Wed, 2015-01-07 at 11:19 +0100, Pavel Machek wrote:
> Do we need following patch on top of
> 24a0aa212ee2dbe44360288684478d76a8e20a0a revert?
>
> I updated kernel today, and (probably because extensions were not
> selectable before), the default choice was "N", which is wrong:
> oldconfig should result in compatible choices being made, for example
> to help bisect.
I don't believe we need this. It has been defaulting to N for a long
time, it's just that it got thrown out of your config due to building
inbetween the patch and its revert. Had you built only before and after
that wouldn't be an issue.
If we default to Y now we send the wrong signal. If you really need to
bisect something wext related you have far bigger issues I'd think, the
code hasn't changed *forever*.
johannes
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] wireless extensions should default to Y
2015-01-07 10:41 ` Johannes Berg
@ 2015-01-07 11:03 ` Pavel Machek
2015-01-07 11:06 ` Johannes Berg
0 siblings, 1 reply; 4+ messages in thread
From: Pavel Machek @ 2015-01-07 11:03 UTC (permalink / raw)
To: Johannes Berg
Cc: jikos, kernel list, Linus Torvalds, davem, linux-wireless, netdev
On Wed 2015-01-07 11:41:55, Johannes Berg wrote:
> On Wed, 2015-01-07 at 11:19 +0100, Pavel Machek wrote:
> > Do we need following patch on top of
> > 24a0aa212ee2dbe44360288684478d76a8e20a0a revert?
> >
> > I updated kernel today, and (probably because extensions were not
> > selectable before), the default choice was "N", which is wrong:
> > oldconfig should result in compatible choices being made, for example
> > to help bisect.
>
> I don't believe we need this. It has been defaulting to N for a long
> time, it's just that it got thrown out of your config due to building
> inbetween the patch and its revert. Had you built only before and after
> that wouldn't be an issue.
Well, I clearly hit the issue. If someone had _not_ build in between,
the "default y" does not change anything for him, as he will not be
asked thequestion. If someone starts config from scratch, Y is the
safe answer.
> If we default to Y now we send the wrong signal. If you really need to
> bisect something wext related you have far bigger issues I'd think, the
> code hasn't changed *forever*.
I am woried about bisecting something unrelated, and then wext coming
and breaking the bisect. But you are right that it will break the
bisect, anyway...
Pavel
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] wireless extensions should default to Y
2015-01-07 11:03 ` Pavel Machek
@ 2015-01-07 11:06 ` Johannes Berg
0 siblings, 0 replies; 4+ messages in thread
From: Johannes Berg @ 2015-01-07 11:06 UTC (permalink / raw)
To: Pavel Machek
Cc: jikos, kernel list, Linus Torvalds, davem, linux-wireless, netdev
On Wed, 2015-01-07 at 12:03 +0100, Pavel Machek wrote:
> On Wed 2015-01-07 11:41:55, Johannes Berg wrote:
> > On Wed, 2015-01-07 at 11:19 +0100, Pavel Machek wrote:
> > > Do we need following patch on top of
> > > 24a0aa212ee2dbe44360288684478d76a8e20a0a revert?
> > >
> > > I updated kernel today, and (probably because extensions were not
> > > selectable before), the default choice was "N", which is wrong:
> > > oldconfig should result in compatible choices being made, for example
> > > to help bisect.
> >
> > I don't believe we need this. It has been defaulting to N for a long
> > time, it's just that it got thrown out of your config due to building
> > inbetween the patch and its revert. Had you built only before and after
> > that wouldn't be an issue.
>
> Well, I clearly hit the issue. If someone had _not_ build in between,
> the "default y" does not change anything for him, as he will not be
> asked thequestion. If someone starts config from scratch, Y is the
> safe answer.
We've long stated that if really starting from scratch it's the wrong
thing to do and had a default N, so I don't really know why we'd revert
that only to make a short period of bisect slightly happier?
I really don't want to merge this patch and encourage more people to
build with wext enabled.
johannes
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-01-07 11:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-07 10:19 [PATCH] wireless extensions should default to Y Pavel Machek
2015-01-07 10:41 ` Johannes Berg
2015-01-07 11:03 ` Pavel Machek
2015-01-07 11:06 ` Johannes Berg
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).