浏览代码

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
 	 */