[PATCH] ath10k: Add debugfs support to get per peer tids log via tracing

2017-01-29 Thread c_mkenna
From: Maharaja Kennadyrajan This patch provides support to get per peer tids log. echo 1 > /sys/kernel/debug/ieee80211/phyX/netdev\:wlanX/stations/ XX:XX/peer_debug_trigger These logs will be the part of FWLOGS which we collect the logs via tracing interface. Here we will get the peer tigd logs

Re: [PATCH 2/6] wl1251: Use request_firmware_prefer_user() for loading NVS calibration data

2017-01-29 Thread Luis R. Rodriguez
On Fri, Jan 27, 2017 at 02:11:46PM +0100, Pali Rohár wrote: > So there are only two options: > > 1) Disallow it and so these users will have non-working wifi. > > 2) Allow those data to be used as fallback mechanism. There is one "custom fallback" user in kernel which we recently determined was

pull-request: wireless-drivers 2017-01-29

2017-01-29 Thread Kalle Valo
Hi Dave, small but important fixes for 4.10. Hopefully is the last pull request for 4.10. Please let me know if there are any problems. Kalle The following changes since commit 60f59ce0278557f7896d5158ae6d12a4855a72cc: rtlwifi: rtl_usb: Fix missing entry in USB driver's private data (2016-12

Re: [PATCH] rt2x00: fix clk_get call

2017-01-29 Thread Kalle Valo
Stanislaw Gruszka writes: > clk_get() takes two arguments and might return ERR_PTR(), so we > have to nullify pointer on that case, to do not break further call > to clk_get_rate(). > > Reported-by: Felix Fietkau > Fixes: 34db70b92fae5 ("rt2x00: add copy of clk for soc devices") > Signed-off-by:

Re: [regression] iwlwifi: crash in iwl_parse_tlv_firmware()

2017-01-29 Thread Kalle Valo
Kalle Valo writes: > updated the kernel on my test laptop and noticed that now iwlwifi > crashes every time during boot. This is with tag ath-201701271935 > ath.git master branch, which essentially is wt-2017-01-27 from > wireless-testing plus latest ath patches. > > I tried v4.10-rc5 and iwlwifi

[regression] iwlwifi: crash in iwl_parse_tlv_firmware()

2017-01-29 Thread Kalle Valo
Hi, updated the kernel on my test laptop and noticed that now iwlwifi crashes every time during boot. This is with tag ath-201701271935 ath.git master branch, which essentially is wt-2017-01-27 from wireless-testing plus latest ath patches. I tried v4.10-rc5 and iwlwifi didn't crash so my guess i

[PATCH] rt2x00: fix clk_get call

2017-01-29 Thread Stanislaw Gruszka
clk_get() takes two arguments and might return ERR_PTR(), so we have to nullify pointer on that case, to do not break further call to clk_get_rate(). Reported-by: Felix Fietkau Fixes: 34db70b92fae5 ("rt2x00: add copy of clk for soc devices") Signed-off-by: Stanislaw Gruszka --- drivers/net/wire

Re: [PATCH v4 1/3] rt2x00: add copy of clk for soc devices

2017-01-29 Thread Stanislaw Gruszka
On Sat, Jan 28, 2017 at 08:39:15PM +0100, Felix Fietkau wrote: > > rt2x00dev->hw = hw; > > rt2x00dev->irq = platform_get_irq(pdev, 0); > > rt2x00dev->name = pdev->dev.driver->name; > > + rt2x00dev->clk = clk_get(&pdev->dev); > This looks broken, clk_get takes two parameters, not just