Re: linux-only freshness auth problem??

2015-08-24 Thread Johannes Berg
Do you see any *kernel* messages after this? I'm half expecting to see that the beacon never arrives, or something like that? The kernel log is repeated. The next log line is again scanning start, since NetworkManager (or wpa_supplicant, I'm not familiar with the machinery involved)

Re: mac80211: When adding a new station, notify driver before adding to hash

2015-08-24 Thread Johannes Berg
On Fri, 2015-08-21 at 13:00 -0400, Marty Faltesek wrote: It's not IBSS and the stack is messed up, I guess because of statics. It's probably more likely this manually crafted stack: __queue_work(fails BUG_ON(!list_empty(work-entry));) NULL work causes this check fail. queue_work_on

Re: Getting started on switching rtl8188eu staging driver to LIB80211/MAC80211

2015-08-24 Thread Larry Finger
On 08/23/2015 06:40 PM, Sreenath Madasu wrote: Hi all, I want to work on the TODO tasks - switch to use LIB80211 - switch to use MAC80211 for staging driver rtl8188eu. How can I start? Where is the documentation? There is no specific documentation for this device, only what is available in

Re: [PATCH V2 3/7] brcmfmac: Increase nr of supported flowrings.

2015-08-24 Thread Arend van Spriel
On 08/19/2015 11:56 PM, Rafał Miłecki wrote: On 16 August 2015 at 08:55, Arend van Spriel ar...@broadcom.com wrote: From: Hante Meuleman meule...@broadcom.com Next generation devices will have firmware which will have more than 256 flowrings. This patch increases the maximum number of

[PATCH] rfkill: Copy all global state to other types

2015-08-24 Thread João Paulo Rechi Vita
When switching the state of all RFKill switches of type all we need to replicate the RFKILL_TYPE_ALL global state to all the other types global state, so it is used to initialize persistent RFKill switches on register. Signed-off-by: João Paulo Rechi Vita jprv...@endlessm.com ---

Re: mac80211: When adding a new station, notify driver before adding to hash

2015-08-24 Thread Johannes Berg
On Mon, 2015-08-24 at 12:12 -0400, Marty Faltesek wrote: Yes, that would address the issue in a simple way. Would this be applicable to any of the other ops vectors? I will create a patch. Possible, we'll have to check which ones are possible to get at from the RX (and possibly TX?) paths.

Re: mac80211: When adding a new station, notify driver before adding to hash

2015-08-24 Thread Marty Faltesek
Yes, that would address the issue in a simple way. Would this be applicable to any of the other ops vectors? I will create a patch. On Mon, Aug 24, 2015 at 8:38 AM, Johannes Berg johan...@sipsolutions.net wrote: On Fri, 2015-08-21 at 13:00 -0400, Marty Faltesek wrote: It's not IBSS and the

Re: bcmdhd: Concurrent use of wlan0 and virtual interface in managed mode

2015-08-24 Thread Arend van Spriel
On 08/23/2015 05:15 PM, Gucea Doru wrote: Hello, community As you are using bcmdhd I don't think this particular community cares a lot about it. But I will take the bait ;-) I'm a Master student doing my research on a subject related to Android and multiple paths between two nodes. What I

Re: [PATCH] net/wireless: enable wiphy device to suspend/resume asynchronously

2015-08-24 Thread Johannes Berg
On Mon, 2015-08-24 at 11:45 +0800, Fu, Zhonghui wrote: On 2015/8/17 16:46, Arend van Spriel wrote: + Rafael On 08/17/2015 09:29 AM, Johannes Berg wrote: On Mon, 2015-08-17 at 09:48 +0800, Fu, Zhonghui wrote: The suspend/resume timing of wiphy device and related devices

Re: [PATCH] iwlwifi: Deinline iwl_{read,write}{8,32}

2015-08-24 Thread Emmanuel Grumbach
I'll try to come up with a patch that is easier for me to read, but I am really busy right now. Ping me in a week if you have heard from me earlier. So how it is going with this patch? In hindsight, I would use a different name for the macro parameter here: #define

Re: [PATCH V2 3/7] brcmfmac: Increase nr of supported flowrings.

2015-08-24 Thread Rafał Miłecki
On 24 August 2015 at 16:15, Arend van Spriel ar...@broadcom.com wrote: On 08/19/2015 11:56 PM, Rafał Miłecki wrote: On 16 August 2015 at 08:55, Arend van Spriel ar...@broadcom.com wrote: From: Hante Meuleman meule...@broadcom.com Next generation devices will have firmware which will have

Re: pull request: iwlwifi-next 2015-08-23

2015-08-24 Thread Kalle Valo
Grumbach, Emmanuel emmanuel.grumb...@intel.com writes: one very last pull request for 4.3 before the merge windows opens. I hope it will make it. Let me know if you have issues with it. We got lucky as Linus released rc8 so we have few more days before the merge window :) But what about the

[PATCH 3/6] iwlwifi: correctly size command string arrays

2015-08-24 Thread Emmanuel Grumbach
From: Johannes Berg johannes.b...@intel.com The command string array is assumed to be indexable by a full u8, so it must have 256 entries (0-255), not just 255. A recent firmware change (apparently) started using the command 0xff for a notification to the host, causing the driver to crash in

[PATCH 6/6] iwlwifi: mvm: bump firmware API to 17

2015-08-24 Thread Emmanuel Grumbach
The driver is now able to handle -17.ucode. Signed-off-by: Emmanuel Grumbach emmanuel.grumb...@intel.com --- drivers/net/wireless/iwlwifi/iwl-7000.c | 2 +- drivers/net/wireless/iwlwifi/iwl-8000.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git

[PATCH 2/6] iwlwifi: mvm: update wakeup reason enum

2015-08-24 Thread Emmanuel Grumbach
From: Sara Sharon sara.sha...@intel.com when waking from d0i3 there is a wakeup reason. Enum in driver is not up to date with FW api - fix it. Signed-off-by: Sara Sharon sara.sha...@intel.com Signed-off-by: Emmanuel Grumbach emmanuel.grumb...@intel.com ---

[PATCH 1/6] iwlwifi: mvm: catch underflow error earlier

2015-08-24 Thread Emmanuel Grumbach
From: Dan Carpenter dan.carpen...@oracle.com My static checker complains that we don't check for underflows in iwl_dbgfs_fw_dbg_conf_write(). This is harmless because we have a sanity check in iwl_mvm_start_fw_dbg_conf(), but we may as well make this unsigned and silence the underflow warning.

[PATCH 4/6] iwlwifi: mvm: split debug message to avoid exceeding 110 characters

2015-08-24 Thread Emmanuel Grumbach
From: Ayala Beker ayala.be...@intel.com split long debug messages that may result warning in tracing. Fixes: 1a84e7716086 (iwlwifi: mvm: add debug info to schedule scan complete message.) Signed-off-by: Ayala Beker ayala.be...@intel.com Signed-off-by: Emmanuel Grumbach

[PATCH 5/6] iwlwifi: mvm: support new TX power command

2015-08-24 Thread Emmanuel Grumbach
From: Johannes Berg johannes.b...@intel.com Add support for the new (bigger) TX power command. This doesn't actually take advantage of the new capabilities (to set per-chain TX power limits) but makes the code compatible with newer firmware images expecting the larger command. Signed-off-by:

Re: [PATCH V2 1/7] brcmfmac: Add support for host platform NVRAM loading.

2015-08-24 Thread Kalle Valo
Arend van Spriel ar...@broadcom.com writes: Can you remove this patch from the series and apply the rest. Just verified over here the remaining patches apply cleanly on wireless-drivers-next. Hi Kalle, Just drop this series. I will send a V3 shortly. Ok, v2 dropped. -- Kalle Valo -- To

Re: pull request: iwlwifi-next 2015-08-23

2015-08-24 Thread Grumbach, Emmanuel
On 08/24/2015 10:53 PM, Kalle Valo wrote: Grumbach, Emmanuel emmanuel.grumb...@intel.com writes: one very last pull request for 4.3 before the merge windows opens. I hope it will make it. Let me know if you have issues with it. We got lucky as Linus released rc8 so we have few more days

Re: [PATCH] rfkill: Copy all global state to other types

2015-08-24 Thread João Paulo Rechi Vita
Hello Joe, thanks for your review. On 24 August 2015 at 20:28, Joe Perches j...@perches.com wrote: On Mon, 2015-08-24 at 12:01 -0400, João Paulo Rechi Vita wrote: When switching the state of all RFKill switches of type all we need to replicate the RFKILL_TYPE_ALL global state to all the other

Re: [PATCH] rfkill: Copy all global state to other types

2015-08-24 Thread Joe Perches
On Mon, 2015-08-24 at 12:01 -0400, João Paulo Rechi Vita wrote: When switching the state of all RFKill switches of type all we need to replicate the RFKILL_TYPE_ALL global state to all the other types global state, so it is used to initialize persistent RFKill switches on register. [] diff

Re: set channel from radiotap headers during injection

2015-08-24 Thread Allan Matthew
On Wed, Aug 19, 2015 at 1:43 PM, Allan Matthew allan...@gmail.com wrote: Understood, thanks for the help. Apologies for the poor formatting! Johannes- What about txpower? Should this be configurable through the radiotap headers? -- To unsubscribe from this list: send the line unsubscribe