Re: [OpenWrt-Devel] [PATCH] mac80211: Fix multi-bss operation issue on rt2800

2013-03-01 Thread Petr Štetiar
John Crispin [2013-02-28 09:56:53]: > i will push the script fix to BB later today. Thanks! -- ynezz ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] [PATCH] mac80211: Fix multi-bss operation issue on rt2800

2013-02-28 Thread Bastian Bittorf
* John Crispin [28.02.2013 10:50]: > o'rly ? on rt wisoc ? i think not no, other platform - i'am confused, that this a hardware issue?! if so, sorry for the noise... bye, bastian ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https

Re: [OpenWrt-Devel] [PATCH] mac80211: Fix multi-bss operation issue on rt2800

2013-02-28 Thread John Crispin
On 28/02/13 10:47, Bastian Bittorf wrote: * Petr Štetiar [28.02.2013 09:46]: and tried it on my Carambola (rt3350): wlan0 C4:93:00:11:01:88 wlan0-1 C6:93:00:11:01:89 Please note that upper byte C4/C6 which renders the wlan0 bssid unaccessible. Correct and working MAC sho

Re: [OpenWrt-Devel] [PATCH] mac80211: Fix multi-bss operation issue on rt2800

2013-02-28 Thread Bastian Bittorf
* Petr Štetiar [28.02.2013 09:46]: > and tried it on my Carambola (rt3350): > > wlan0 C4:93:00:11:01:88 > wlan0-1 C6:93:00:11:01:89 > > Please note that upper byte C4/C6 which renders the wlan0 bssid unaccessible. > Correct and working MAC should start with C4. Thanks. why?

Re: [OpenWrt-Devel] [PATCH] mac80211: Fix multi-bss operation issue on rt2800

2013-02-28 Thread John Crispin
On 27/02/13 21:39, Petr Štetiar wrote: Jo-Philipp Wich [2012-11-26 20:47:45]: I see this patch as an immediate fix for AA. I don't know, if it's ok to introduce such a generalization into the AA. It's up to you guys, I'll try to help as much as I can. Thanks. Sure, the help is appreciated.

Re: [OpenWrt-Devel] [PATCH] mac80211: Fix multi-bss operation issue on rt2800

2013-02-27 Thread Petr Štetiar
Jo-Philipp Wich [2012-11-26 20:47:45]: > > I see this patch as an immediate fix for AA. I don't know, if it's > > ok to introduce such a generalization into the AA. It's up to you > > guys, I'll try to help as much as I can. Thanks. > > Sure, the help is appreciated. Hi again, I've noticed few

Re: [OpenWrt-Devel] [PATCH] mac80211: Fix multi-bss operation issue on rt2800

2012-11-26 Thread Jo-Philipp Wich
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi. > But then it should be changed to is_rt2800(), right? Correct, I overlooked the inverted logic. > Sounds good, there's plan to add this into the AA? I was personally > thinking about such a generalization myself. No, it will most definitely no

Re: [OpenWrt-Devel] [PATCH] mac80211: Fix multi-bss operation issue on rt2800

2012-11-26 Thread Petr Štetiar
Jo-Philipp Wich [2012-11-26 19:53:52]: > This can be simplified to: > > is_not_rt2800() { > grep -sqE 'Ralink (RT3050|RT3052|RT3350|RT3352)' /proc/cpuinfo > } But then it should be changed to is_rt2800(), right? > Since Daniel Dickinson recently posted a series of patches to override > t

Re: [OpenWrt-Devel] [PATCH] mac80211: Fix multi-bss operation issue on rt2800

2012-11-26 Thread Jo-Philipp Wich
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi. > +is_not_rt2800() { + grep -E 'Ralink (RT3050|RT3052|RT3350|RT3352)' > /proc/cpuinfo >/dev/null && \ + return 1 || return 0 +} This can be simplified to: is_not_rt2800() { grep -sqE 'Ralink (RT3050|RT3052|RT3350|RT3352)'

[OpenWrt-Devel] [PATCH] mac80211: Fix multi-bss operation issue on rt2800

2012-11-26 Thread Petr Štetiar
As rt2800 hw can only be configured to mask the last three bits of the programmed MAC addresses, we can't change first byte of the MAC - otherwise it doesn't work. More information about this issue [1]. Should fix #12133. 1. http://marc.info/?l=linux-wireless&m=135387062429809&w=2 Thanks to Paul