Browse Source

qcacld-3.0: Check for TCP proto in bypass_fisa API

Check for TCP proto in bypass_fisa API and deliver nbuf without fisa.
This will avoid additional processing and helps to deliver nbuf earlier.

Change-Id: I26a78e1204ddebab3a6c6e852ce6d289106dd110
CRs-Fixed: 2884112
Karthik Kantamneni 4 years ago
parent
commit
e1a2e01968
1 changed files with 2 additions and 1 deletions
  1. 2 1
      core/dp/txrx3.0/dp_fisa_rx.c

+ 2 - 1
core/dp/txrx3.0/dp_fisa_rx.c

@@ -1708,7 +1708,8 @@ invalid_fisa_assist:
 static bool dp_is_nbuf_bypass_fisa(qdf_nbuf_t nbuf)
 {
 	/* RX frame from non-regular path or DHCP packet */
-	if (qdf_nbuf_is_exc_frame(nbuf) ||
+	if (QDF_NBUF_CB_RX_TCP_PROTO(nbuf) ||
+	    qdf_nbuf_is_exc_frame(nbuf) ||
 	    qdf_nbuf_is_ipv4_dhcp_pkt(nbuf) ||
 	    qdf_nbuf_is_da_mcbc(nbuf))
 		return true;