Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 42a0cee6 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: ipa: Drop the packet on receiving the Deaggregation exception"

parents 4be9cde6 58861379
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -1807,6 +1807,13 @@ begin:
			IPADBG("pad %d pkt_len %d len %d\n", pad_len_byte,
					status->pkt_len, len);

			if (status->exception ==
					IPA_HW_PKT_STATUS_EXCEPTION_DEAGGR) {
				IPADBG("Dropping packet on DeAggr Exception\n");
				skb_pull(skb, len + IPA_PKT_STATUS_SIZE);
				continue;
			}

			skb2 = skb_clone(skb, GFP_KERNEL);
			if (likely(skb2)) {
				if (skb->len < len + IPA_PKT_STATUS_SIZE) {