소스 검색

qcacld-3.0: Add the vdev ID check in stats ext command

Currently stats ext command is sent to FW without validating the
vdev ID and this resulted into crash.

To fix this issue, add the vdev ID check in the stats ext command.

CRs-Fixed: 3617296
Change-Id: I611cd271f229c247f9e6658528f5c0497b7c3d5f
SACHIN AHUJA 1 년 전
부모
커밋
812ad0579a
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      core/hdd/src/wlan_hdd_stats.c

+ 2 - 0
core/hdd/src/wlan_hdd_stats.c

@@ -5139,6 +5139,8 @@ static int __wlan_hdd_cfg80211_stats_ext_request(struct wiphy *wiphy,
 		return -EPERM;
 	}
 
+	if (wlan_hdd_validate_vdev_id(adapter->deflink->vdev_id))
+		return -EINVAL;
 	/**
 	 * HTT_DBG_EXT_STATS_PDEV_RX
 	 */