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

Commit 2594e03b 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: fix handling IPA_STATUS_SUSPENDED_PACKET"

parents 5b4a2f09 fdd46a39
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -1721,8 +1721,11 @@ begin:
		if (status->status_opcode !=
			IPA_HW_STATUS_OPCODE_DROPPED_PACKET &&
			status->status_opcode !=
			IPA_HW_STATUS_OPCODE_PACKET) {
			IPAERR("unsupported opcode\n");
			IPA_HW_STATUS_OPCODE_PACKET &&
			status->status_opcode !=
			IPA_HW_STATUS_OPCODE_SUSPENDED_PACKET) {
			IPAERR("unsupported opcode(%d)\n",
				status->status_opcode);
			skb_pull(skb, IPA_PKT_STATUS_SIZE);
			continue;
		}
+1 −0
Original line number Diff line number Diff line
@@ -334,6 +334,7 @@ enum ipa_hw_status_opcode {
	IPA_HW_STATUS_OPCODE_PACKET = IPA_HW_STATUS_OPCODE_MIN,
	IPA_HW_STATUS_OPCODE_NEW_FRAG_RULE,
	IPA_HW_STATUS_OPCODE_DROPPED_PACKET,
	IPA_HW_STATUS_OPCODE_SUSPENDED_PACKET,
	IPA_HW_STATUS_OPCODE_MAX
};