Parcourir la source

qcacmn: Null terminate the rx packets list

Add NULL termination to the list of rx frames
before passing them to the high level OS.

Change-Id: Ibc51f14b8b9ef2a8dff7147f4072910e11540093
CRs-Fixed: 1116939
Dhanashri Atre il y a 8 ans
Parent
commit
8b3f377928
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. 1 0
      dp/wifi3.0/dp_rx.h

+ 1 - 0
dp/wifi3.0/dp_rx.h

@@ -160,6 +160,7 @@ do {                                                \
 		qdf_nbuf_set_next((tail), (elem));  \
 	}                                           \
 	(tail) = (elem);                            \
+	qdf_nbuf_set_next((tail), NULL);            \
 } while (0)
 
 #endif /* _DP_RX_H */