Re: [PATCH] rtlwifi: Change long delays to sleeps

2016-02-19 Thread ByeoungWook Kim
2016-02-16 7:12 GMT+09:00 Larry Finger : > Routine rtl_addr_delay() uses delay statements in code that can > sleep. To improve system responsiveness, the various delay statements > are changed. > > In addition, routines rtl_rfreg_delay() and rtl_bb_delay() are >

Re: [PATCH 1/4] staging: wilc1000: move WILC_MULTICAST_TABLE_SIZE define to wilc_wlan_if.h file

2016-02-19 Thread Greg KH
On Fri, Feb 19, 2016 at 06:57:42PM +0900, Leo Kim wrote: > From: Chris Park > > This patch moves WILC_MULTICAST_TABLE_SIZE define to wilc_wlan_if.h file. > This define is used to three files(host_interface.c,host_interface.h, > linux_wlan.c) these files already include

Re: [PATCH 1/6] staging: wilc1000: removes wilc_dbg()

2016-02-19 Thread Greg KH
On Fri, Feb 19, 2016 at 05:37:07PM +0900, Leo Kim wrote: > This patch removes wilc_dbg function because it's not any more. > > Signed-off-by: Leo Kim > --- > drivers/staging/wilc1000/linux_wlan.c | 4 > drivers/staging/wilc1000/wilc_wfi_netdevice.h | 2 -- >

Re: [PATCH V2 01/24] staging: wilc1000: wilc_wlan.c: removes PRINT_ER

2016-02-19 Thread Greg KH
On Thu, Feb 18, 2016 at 08:30:01PM +0900, Leo Kim wrote: > This patches removes PRINT_ER that is unnecessary debug logs. > > Signed-off-by: Leo Kim > --- > drivers/staging/wilc1000/wilc_wlan.c | 2 -- > 1 file changed, 2 deletions(-) What changed in this series from v1? Why

Re: pull-request: wireless-drivers 2016-02-18

2016-02-19 Thread David Miller
From: Kalle Valo Date: Thu, 18 Feb 2016 17:28:14 +0200 > I have some important fixes I would like to get 4.5 still, more info in > the signed tag. Please let me know if you have problems. Pulled, thanks. -- To unsubscribe from this list: send the line "unsubscribe

Re: wpa_supplicant bridging problems

2016-02-19 Thread Jouni Malinen
On Thu, Feb 18, 2016 at 07:55:30PM -0800, J Mo wrote: > This was a bug already fixed in git. The Debian wpa_supplicant is > old (2.3). Source right now is pre-2.6. I compiled my own and it > works fine. > I suspect this was fixed in git commit > e6dd8196e5daf39e4204ef8ecd26dd50fdca6040, but there

Re: [PATCHv2 3/4] ARM: tegra: use build-in device properties with rfkill_gpio

2016-02-19 Thread Thierry Reding
On Thu, Feb 18, 2016 at 09:04:49PM +0100, Johannes Berg wrote: > On Tue, 2016-01-26 at 09:42 +0100, Johannes Berg wrote: > > On Mon, 2016-01-25 at 13:18 +0100, Thierry Reding wrote: > > >   > > > Johannes, I assume that you'll want to take this through your tree > > > because of the dependency? In

RE: [RFC 0/2] mac80211: add support for ht_caps mcs rxmask override

2016-02-19 Thread Cédric Debarge - ACKSYS
> What are you working on that you need this? We are working on critical industrial networks where a specific (generally high) bandwidth is required. Supressing low MCSs (that are not able to handle the desired bandwidth) allows us to be sure that the wireless link can sustain the requested

Re: [RFC] mac80211: add extap functionality

2016-02-19 Thread Felix Fietkau
On 2016-02-19 13:05, Grzegorz Bajorski wrote: > 2016-02-18 15:08 GMT+01:00 Felix Fietkau : >> On 2016-02-18 14:36, Grzegorz Bajorski wrote: >>> 2016-02-17 17:55 GMT+01:00 Felix Fietkau : On 2016-02-17 12:55, Grzegorz Bajorski wrote: > Client interface

Re: [PATCH] b43: fix memory leak

2016-02-19 Thread Sudip Mukherjee
On Friday 19 February 2016 01:14 PM, Kalle Valo wrote: Michael Büsch writes: On Thu, 18 Feb 2016 18:04:36 +0530 Sudip Mukherjee wrote: From: Sudip Mukherjee On error we jumped to the label bcma_out and returned the error

Re: [RFC] mac80211: add extap functionality

2016-02-19 Thread Grzegorz Bajorski
2016-02-18 15:08 GMT+01:00 Felix Fietkau : > On 2016-02-18 14:36, Grzegorz Bajorski wrote: >> 2016-02-17 17:55 GMT+01:00 Felix Fietkau : >>> On 2016-02-17 12:55, Grzegorz Bajorski wrote: Client interface briding was only possible when 4addr frames were used

[PATCH v2] mac80211: fix wiphy supported_band access

2016-02-19 Thread Lorenzo Bianconi
Fix wiphy supported_band access in tx radiotap parsing introduced in commit 5ec3aed9ba4c ("mac80211: Parse legacy and HT rate in injected frames"). In particular, info->band is always set to 0 (IEEE80211_BAND_2GHZ) since it has not assigned yet. This cause a kernel crash on 5GHz only devices. Move

Re: [PATCH 4/6] staging: wilc1000: removes unnecessary wilc_debug print log

2016-02-19 Thread Dan Carpenter
On Fri, Feb 19, 2016 at 05:37:10PM +0900, Leo Kim wrote: > This patch removes unnecessary wilc_debug print log. > The print log was written when if condition fail. > The condition is chip-id check function. > Also, replaces this condition with normal function. > > Signed-off-by: Leo Kim

[PATCH v2 2/2] mac80211: parse VHT info in injected frames

2016-02-19 Thread Lorenzo Bianconi
Add VHT radiotap parsing support to ieee80211_parse_tx_radiotap(). That capability has been tested using a d-link dir-860l rev b1 running OpenWrt trunk and mt76 driver Signed-off-by: Lorenzo Bianconi --- Documentation/networking/mac80211-injection.txt | 10

[PATCH v2 1/2] cfg80211: add radiotap VHT info to rtap_namespace_sizes

2016-02-19 Thread Lorenzo Bianconi
Add IEEE80211_RADIOTAP_VHT entry to rtap_namespace_sizes array in order to define alignment and size of VHT info in tx radiotap Signed-off-by: Lorenzo Bianconi --- net/wireless/radiotap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net/wireless/radiotap.c

[PATCH v2 0/2] add VHT radiotap parsing support to mac80211

2016-02-19 Thread Lorenzo Bianconi
Changelog: v2: - added cfg80211 patch to the patchset Lorenzo Bianconi (2): cfg80211: add radiotap VHT info to rtap_namespace_sizes mac80211: parse VHT info in injected frames Documentation/networking/mac80211-injection.txt | 10 net/mac80211/tx.c |

Re: [RFC 1/2] cfg80211: add radiotap VHT info to rtap_namespace_sizes

2016-02-19 Thread Lorenzo Bianconi
> On Wed, 2016-02-10 at 17:31 +0100, Lorenzo Bianconi wrote: >> Add IEEE80211_RADIOTAP_VHT entry to rtap_namespace_sizes array in >> order to >> define alignment and size of VHT info in tx radiotap >> > I think you forgot this patch in your [PATCH] resend, can you resend it > properly? Sorry, my

[PATCH 2/2] mac80211: add NEED_ALIGNED4_SKBS hw flag

2016-02-19 Thread Janusz Dziedzic
HW/driver should set NEED_ALIGNED4_SKBS flag in case require aligned skbs to four-byte boundaries. This affect only TX direction. Padding is added after ieee80211_hdr, before IV/LLC. Before we have to do memmove(hdrlen) twice in the dirver. Once before we pass this to HW and next in tx

[PATCH 1/2] mac80211: add hdrlen to ieee80211_tx_data

2016-02-19 Thread Janusz Dziedzic
Add hdrlen to ieee80211_tx_data and use this when wep/ccmd/tkip. This is preparation for aligned4 code. Signed-off-by: Janusz Dziedzic --- net/mac80211/ieee80211_i.h | 1 + net/mac80211/tx.c | 6 +++--- net/mac80211/util.c| 5 -

[PATCH 4/4] staging: wilc1000: removes linux_wlan_common.h file

2016-02-19 Thread Leo Kim
From: Chris Park This patch removes linux_wlan_common.h file and also removes the following preprocessor at files that include it: - #include 'linux_wlan_common.h' Signed-off-by: Chris Park Signed-off-by: Leo Kim ---

[PATCH 3/4] staging: wilc1000: remove useless define in linux_wlan_common.h file

2016-02-19 Thread Leo Kim
From: Chris Park This patch removes useless define in linux_wlan_common.h file Signed-off-by: Chris Park Signed-off-by: Leo Kim --- drivers/staging/wilc1000/linux_wlan_common.h | 32 1 file changed,

[PATCH 2/4] staging: wilc1000: move MODALIS and GPIO_NUM define to wilc_wlan.h file

2016-02-19 Thread Leo Kim
From: Chris Park This patch moves MODALIS and GPIO_NUM define to wilc_wlan.h file. MODALIS and GPIO_NUM define are used to two files (wilc_sdio.c, wilc_spi.c), these files already include wilc_wlan.h file in common. Signed-off-by: Chris Park

[PATCH 1/4] staging: wilc1000: move WILC_MULTICAST_TABLE_SIZE define to wilc_wlan_if.h file

2016-02-19 Thread Leo Kim
From: Chris Park This patch moves WILC_MULTICAST_TABLE_SIZE define to wilc_wlan_if.h file. This define is used to three files(host_interface.c,host_interface.h, linux_wlan.c) these files already include wilc_wlan_if.h file in common. Signed-off-by: Chris Park

[PATCH 6/6] staging: wilc1000: wilc_wlan_cfg_init: changes unused argument

2016-02-19 Thread Leo Kim
This patch changes the argument of the wilc_wlan_cfg_init function, wilc_debug to void type because wilc_debug function is not used any more. In addition, finally removes wilc_debug and related variables. Signed-off-by: Leo Kim --- drivers/staging/wilc1000/wilc_wlan.c |

[PATCH 3/6] staging: wilc1000: removes unnecessary wilc_debug print log

2016-02-19 Thread Leo Kim
This patch removes unnecessary wilc_debug print log and the check routine. Signed-off-by: Leo Kim --- drivers/staging/wilc1000/wilc_wlan.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/staging/wilc1000/wilc_wlan.c b/drivers/staging/wilc1000/wilc_wlan.c index

[PATCH 4/6] staging: wilc1000: removes unnecessary wilc_debug print log

2016-02-19 Thread Leo Kim
This patch removes unnecessary wilc_debug print log. The print log was written when if condition fail. The condition is chip-id check function. Also, replaces this condition with normal function. Signed-off-by: Leo Kim --- drivers/staging/wilc1000/wilc_wlan.c | 4 +--- 1 file

[PATCH 5/6] staging: wilc1000: removes unnecessary variable of wilc_mac_cfg_t structure

2016-02-19 Thread Leo Kim
This patch removes unnecessary variable of wilc_mac_cfg_t structure. The variable is debug print function pointer. Removes all what used this variable. Signed-off-by: Leo Kim --- drivers/staging/wilc1000/wilc_wlan_cfg.c | 7 --- 1 file changed, 7 deletions(-) diff --git

[PATCH 2/6] staging: wilc1000: replaces wilc_debug with netdev_err

2016-02-19 Thread Leo Kim
This patches replaces wilc_debug with netdev_err. Signed-off-by: Leo Kim --- drivers/staging/wilc1000/wilc_wlan.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/wilc1000/wilc_wlan.c b/drivers/staging/wilc1000/wilc_wlan.c index

[PATCH 1/6] staging: wilc1000: removes wilc_dbg()

2016-02-19 Thread Leo Kim
This patch removes wilc_dbg function because it's not any more. Signed-off-by: Leo Kim --- drivers/staging/wilc1000/linux_wlan.c | 4 drivers/staging/wilc1000/wilc_wfi_netdevice.h | 2 -- drivers/staging/wilc1000/wilc_wlan.c | 2 -- 3 files changed, 8