qcacld-3.0: Move log level to info high if tx hits invalid station id

For sns test in some scenarios when tx hits invalid station id it will
print massive log so that it will lead to WD bark issue.

Move log level to lower info high from info if tx hits invalid station
id, also align with cld3.1 code.

Change-Id: I965033fc8232c8ead15ef06d26aa0d1d2b468e8a
CRs-Fixed: 2159529
This commit is contained in:
hqu 2017-12-21 18:48:46 +08:00 committed by snandini
parent 117c2031ee
commit 5e6b9866fd

View File

@ -603,7 +603,7 @@ static int __hdd_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
hdd_get_transmit_sta_id(adapter, skb, &STAId);
if (STAId >= WLAN_MAX_STA_COUNT) {
QDF_TRACE(QDF_MODULE_ID_HDD_DATA, QDF_TRACE_LEVEL_INFO,
QDF_TRACE(QDF_MODULE_ID_HDD_DATA, QDF_TRACE_LEVEL_INFO_HIGH,
"Invalid station id, transmit operation suspended");
goto drop_pkt;
}