mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
7a53edc390
Signed-off-by: Tad <tad@spotco.us>
68 lines
3.2 KiB
Diff
68 lines
3.2 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Stefan Assmann <sassmann@kpanic.de>
|
|
Date: Mon, 11 Mar 2019 17:09:49 +0100
|
|
Subject: [PATCH] wifi: resurrect mWifiLinkLayerStatsSupported counter
|
|
|
|
On devices with broken/not implemented LinkLayerStats
|
|
the counter mWifiLinkLayerStatsSupported prevents the following error
|
|
messages from appearing every 3 seconds.
|
|
|
|
03-08 10:43:02.616 389 389 E WifiHAL : wifi_get_link_stats: requestResponse Error:-3
|
|
03-08 10:43:02.617 2030 2206 E WifiVendorHal: getWifiLinkLayerStats(l.937) failed {.code = ERROR_NOT_SUPPORTED, .description = }
|
|
|
|
This partially reverts commit 1ba5b5858ffc04acbd317dc1f6789f1777d375e6.
|
|
|
|
Change-Id: I840f9d1304bf0a31e7a6b65db00a37dc3651e4b8
|
|
Signed-off-by: penglezos <panagiotisegl@gmail.com>
|
|
---
|
|
.../android/server/wifi/ClientModeImpl.java | 26 +++++++++----------
|
|
1 file changed, 13 insertions(+), 13 deletions(-)
|
|
|
|
diff --git a/service/java/com/android/server/wifi/ClientModeImpl.java b/service/java/com/android/server/wifi/ClientModeImpl.java
|
|
index 9ea75285d8..0ba938dcd7 100644
|
|
--- a/service/java/com/android/server/wifi/ClientModeImpl.java
|
|
+++ b/service/java/com/android/server/wifi/ClientModeImpl.java
|
|
@@ -344,6 +344,8 @@ public class ClientModeImpl extends StateMachine implements ClientMode {
|
|
private DetailedState mNetworkAgentState;
|
|
private final SupplicantStateTracker mSupplicantStateTracker;
|
|
|
|
+ private int mWifiLinkLayerStatsSupported = 4; // Temporary disable
|
|
+
|
|
// Indicates that framework is attempting to roam, set true on CMD_START_ROAM, set false when
|
|
// wifi connects or fails to connect
|
|
private boolean mIsAutoRoaming = false;
|
|
@@ -1409,22 +1411,20 @@ public class ClientModeImpl extends StateMachine implements ClientMode {
|
|
loge("getWifiLinkLayerStats called without an interface");
|
|
return null;
|
|
}
|
|
- mLastLinkLayerStatsUpdate = mClock.getWallClockMillis();
|
|
WifiLinkLayerStats stats = null;
|
|
- if (isPrimary()) {
|
|
+ mLastLinkLayerStatsUpdate = mClock.getWallClockMillis();
|
|
+ if (mWifiLinkLayerStatsSupported > 0) {
|
|
stats = mWifiNative.getWifiLinkLayerStats(mInterfaceName);
|
|
- } else {
|
|
- if (mVerboseLoggingEnabled) {
|
|
- Log.w(getTag(), "Can't getWifiLinkLayerStats on secondary iface");
|
|
+ if (stats == null) {
|
|
+ mWifiLinkLayerStatsSupported -= 1;
|
|
+ } else {
|
|
+ mOnTime = stats.on_time;
|
|
+ mTxTime = stats.tx_time;
|
|
+ mRxTime = stats.rx_time;
|
|
+ mRunningBeaconCount = stats.beacon_rx;
|
|
+ mWifiInfo.updatePacketRates(stats, mLastLinkLayerStatsUpdate);
|
|
}
|
|
- }
|
|
- if (stats != null) {
|
|
- mOnTime = stats.on_time;
|
|
- mTxTime = stats.tx_time;
|
|
- mRxTime = stats.rx_time;
|
|
- mRunningBeaconCount = stats.beacon_rx;
|
|
- mWifiInfo.updatePacketRates(stats, mLastLinkLayerStatsUpdate);
|
|
- } else {
|
|
+ } else { // LinkLayerStats are broken or unsupported
|
|
long mTxPkts = mFacade.getTxPackets(mInterfaceName);
|
|
long mRxPkts = mFacade.getRxPackets(mInterfaceName);
|
|
mWifiInfo.updatePacketRates(mTxPkts, mRxPkts, mLastLinkLayerStatsUpdate);
|