linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCHv2] ath10k : Fix channel survey dump
@ 2018-08-09  6:35 Venkateswara Naralasetty
  2018-08-09 18:46 ` Peter Oh
  0 siblings, 1 reply; 7+ messages in thread
From: Venkateswara Naralasetty @ 2018-08-09  6:35 UTC (permalink / raw)
  To: Jasmine Strong; +Cc: Ben Greear, ath10k, linux-wireless, linux-wireless-owner

On 2018-08-01 00:03, Jasmine Strong wrote:
> On Tue, Jul 31, 2018 at 10:38 AM Ben Greear <greearb@candelatech.com>
> wrote:
> 
>> On 07/31/2018 05:11 AM, Venkateswara Naralasetty wrote:
>>> Channel active/busy time are showing incorrect(less than previous
>> or
>>> sometimes zero) for successive survey dump command.
>>> 
>>> example:
>>> Survey data from wlan0
>>> frequency:                      5180 MHz [in use]
>>> channel active time:            54995 ms
>>> channel busy time:              432 ms
>>> channel receive time:           0 ms
>>> channel transmit time:          59 ms
>>> Survey data from wlan0
>>> frequency:                      5180 MHz [in use]
>>> channel active time:            32592 ms
>>> channel busy time:              254 ms
>>> channel receive time:           0 ms
>>> channel transmit time:          0 ms
>>> 
>>> This patch fix this issue by assigning 'wmi_bss_survey_req_type'
>>> as 'WMI_BSS_SURVEY_REQ_TYPE_READ' which accumulate survey data in
>>> FW and send survey data to driver upon the driver request. Wrap
>> around
>>> is taken care by FW.
>>> 
>>> hardware used : QCA9984
>>> firmware ver  : ver 10.4-3.5.3-00057
>> 
>> Have you tested this on other firmwares?  I am pretty sure that at
>> least
>> some of them, probably 10.2, will have issues.
>> 
>> Maybe you could make this change specific to certain firmware that
>> is known to work with the change?
> 
> There are bigger problems with it than that;  even with firmwares that
> behave correctly,
> this changes the behavior that a lot of upper-layer software depends
> upon, and will likely
> make anything that actually uses the channel survey data misbehave.
> 
> It is therefore a breaking change for any device that actually
> implements ACS.
> 
> -J.

In ath9k driver also survey data being accumulated in driver and send 
survey data to user space is accumulated one. same thing we are 
implementing in FW(with WMI request type WMI_BSS_SURVEY_REQ_TYPE_READ) 
instead of doing it in driver.

Thanks,
Venkatesh.

^ permalink raw reply	[flat|nested] 7+ messages in thread
* [PATCHv2] ath10k : Fix channel survey dump
@ 2018-07-31 12:11 Venkateswara Naralasetty
  2018-07-31 17:37 ` Ben Greear
  0 siblings, 1 reply; 7+ messages in thread
From: Venkateswara Naralasetty @ 2018-07-31 12:11 UTC (permalink / raw)
  To: ath10k; +Cc: linux-wireless, Venkateswara Naralasetty

Channel active/busy time are showing incorrect(less than previous or
sometimes zero) for successive survey dump command.

example:
Survey data from wlan0
	frequency:                      5180 MHz [in use]
	channel active time:            54995 ms
	channel busy time:              432 ms
	channel receive time:           0 ms
	channel transmit time:          59 ms
Survey data from wlan0
	frequency:                      5180 MHz [in use]
	channel active time:            32592 ms
	channel busy time:              254 ms
	channel receive time:           0 ms
	channel transmit time:          0 ms

This patch fix this issue by assigning 'wmi_bss_survey_req_type'
as 'WMI_BSS_SURVEY_REQ_TYPE_READ' which accumulate survey data in
FW and send survey data to driver upon the driver request. Wrap around
is taken care by FW.

hardware used : QCA9984
firmware ver  : ver 10.4-3.5.3-00057

Signed-off-by: Venkateswara Naralasetty <vnaralas@codeaurora.org>
---
v2:
 * updated commit log.

 drivers/net/wireless/ath/ath10k/mac.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c
index f068e2b..db93ab1 100644
--- a/drivers/net/wireless/ath/ath10k/mac.c
+++ b/drivers/net/wireless/ath/ath10k/mac.c
@@ -6837,7 +6837,7 @@ ath10k_mac_update_bss_chan_survey(struct ath10k *ar,
 				  struct ieee80211_channel *channel)
 {
 	int ret;
-	enum wmi_bss_survey_req_type type = WMI_BSS_SURVEY_REQ_TYPE_READ_CLEAR;
+	enum wmi_bss_survey_req_type type = WMI_BSS_SURVEY_REQ_TYPE_READ;
 
 	lockdep_assert_held(&ar->conf_mutex);
 
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-08-10  0:53 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-09  6:35 [PATCHv2] ath10k : Fix channel survey dump Venkateswara Naralasetty
2018-08-09 18:46 ` Peter Oh
2018-08-09 22:26   ` Sven Eckelmann
  -- strict thread matches above, loose matches on Subject: below --
2018-07-31 12:11 Venkateswara Naralasetty
2018-07-31 17:37 ` Ben Greear
2018-07-31 18:33   ` Jasmine Strong
2018-08-01  8:47   ` Venkateswara Naralasetty

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).