Re: QCA9880 driver crash with FW 10.2.4-1.0-00029

2018-03-23 Thread Rosen Penev
On Thu, Mar 22, 2018 at 1:30 PM, Hauke Mehrtens wrote: > Hi, > > I am using a BT home Hub 5A (Lantiq VR9 MIPS BE SoC). The wifi provided > by the QCA9880 chip is unstable with OpenWrt master from 26. Feb 2018. > > With FW 10.2.4-1.0-00033 and 10.2.4-1.0-00037 the wifi stops

Re: [ath10k throughput] low throughput in multi-user mode

2018-03-23 Thread Ben Greear
On 03/22/2018 08:21 PM, gary wrote: Hi Ben, Thank you for your reply. My wireless driver is compat-wireless_2017-10-6, and kernel is 4.9.58. The test result with your firmware: Get throughput 1.13Gbps with 16 users. And get almost 0 with 32 users. Can you try an older kernel w/out

Re: [PATCH] ath10k: Implement get_expected_throughput callback

2018-03-23 Thread akolli
On 2018-03-23 19:14, Johannes Berg wrote: On Fri, 2018-03-23 at 19:11 +0530, ako...@codeaurora.org wrote: > > + > > + sinfo->expected_throughput = > > + > > ewma_sta_txrate_read(>ave_sta_txrate); > > + sinfo->filled |= > > BIT(NL80211_STA_INFO_EXPECTED_THROUGHPUT); > > +} Yes.

[PATCH v2] ath10k: Implement get_expected_throughput callback

2018-03-23 Thread Anilkumar Kolli
Enable support for 'drv_get_expected_throughput' callback. Export expected throughput if available to cfg80211/nl80211. Signed-off-by: Anilkumar Kolli Signed-off-by: Tamizh chelvam --- v2: - update the avg for all the transmitted frames(Sven) -

Re: [PATCH] ath10k: Implement get_expected_throughput callback

2018-03-23 Thread Johannes Berg
On Fri, 2018-03-23 at 19:11 +0530, ako...@codeaurora.org wrote: > > > > + > > > + sinfo->expected_throughput = > > > + > > > ewma_sta_txrate_read(>ave_sta_txrate); > > > + sinfo->filled |= > > > BIT(NL80211_STA_INFO_EXPECTED_THROUGHPUT); > > > +} > Yes.

Re: [PATCH] ath10k: Implement get_expected_throughput callback

2018-03-23 Thread akolli
Hi Sven, Thanks for the review. On 2018-03-23 13:39, Sven Eckelmann wrote: On Freitag, 23. März 2018 13:07:00 CET Anilkumar Kolli wrote: [...] +static u32 ath10k_get_expected_throughput(struct ieee80211_hw *hw, + struct ieee80211_sta *sta) +{ +

Re: [PATCH 01/13] ath10k: platform driver for WCN3990 SNOC WLAN module

2018-03-23 Thread govinds
On 2018-03-10 14:41, Kalle Valo wrote: writes: >> Kbuild bot found an odd problem with this patch: >> >> include/linux/dynamic_debug.h:77:14: error: 'KBUILD_MODNAME' >> undeclared (first use in this function); did you mean 'KBUILD_BASENAME'? >> >> Full report:

Re: [PATCH] ath10k: Implement get_expected_throughput callback

2018-03-23 Thread Sven Eckelmann
On Freitag, 23. März 2018 13:07:00 CET Anilkumar Kolli wrote: [...] > +static u32 ath10k_get_expected_throughput(struct ieee80211_hw *hw, > + struct ieee80211_sta *sta) > +{ > + struct ath10k_sta *arsta = (struct ath10k_sta *)sta->drv_priv; > +

[PATCH] ath10k: Implement get_expected_throughput callback

2018-03-23 Thread Anilkumar Kolli
Enable support for 'drv_get_expected_throughput' callback. Export expected throughput if available to cfg80211/nl80211. Signed-off-by: Anilkumar Kolli Signed-off-by: Tamizh chelvam --- drivers/net/wireless/ath/ath10k/core.h |5 +