Explorar el Código

qcacld-3.0: Do RX GRO flush when detach the vdev device

If there are still RX packets pending in the napi gro_hash list, do RX GRO
flush after flushing the RX thread pending packets when detach the vdev to
avoid net_device might be invalid later which has been stored already in
the pending skb.

Change-Id: Iff0a5cf49c87b91b8cae3dbcb541d1cf0bc480a6
CRs-Fixed: 2598149
Tiger Yu hace 5 años
padre
commit
6bc77dc9c3
Se han modificado 1 ficheros con 6 adiciones y 1 borrados
  1. 6 1
      core/dp/txrx3.0/dp_rx_thread.c

+ 6 - 1
core/dp/txrx3.0/dp_rx_thread.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014-2019 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2014-2020 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -703,6 +703,11 @@ void dp_rx_thread_flush_by_vdev_id(struct dp_rx_thread *rx_thread,
 		}
 	}
 	qdf_nbuf_queue_head_unlock(&rx_thread->nbuf_queue);
+
+	if (qdf_atomic_read(&rx_thread->gro_flush_ind))
+		qdf_atomic_set(&rx_thread->gro_flush_ind, 0);
+
+	dp_rx_thread_gro_flush(rx_thread);
 }
 
 /**