Browse Source

Merge "dataipa: Added logic to handle APPS_LAN_COAL_CONS packet w/o EOT"

qctecmdr 2 years ago
parent
commit
161db6c189
1 changed files with 2 additions and 1 deletions
  1. 2 1
      drivers/platform/msm/ipa/ipa_v3/ipa_dp.c

+ 2 - 1
drivers/platform/msm/ipa/ipa_v3/ipa_dp.c

@@ -5250,7 +5250,8 @@ static struct sk_buff *handle_skb_completion(
 
 	/* Check added for handling LAN consumer packet without EOT flag */
 	if (notify->evt_id == GSI_CHAN_EVT_EOT ||
-		sys->ep->client == IPA_CLIENT_APPS_LAN_CONS) {
+		sys->ep->client == IPA_CLIENT_APPS_LAN_CONS ||
+		sys->ep->client == IPA_CLIENT_APPS_LAN_COAL_CONS) {
 		/* go over the list backward to save computations on updating length */
 		list_for_each_entry_safe_reverse(rx_pkt, tmp, head, link) {
 			rx_skb = rx_pkt->data.skb;