Răsfoiți Sursa

qcacld-3.0: Update deficient_desc when the TX pool is replenished

It's needed to update deficient_desc count when the deficient pools
are replenished, otherwise, when there are multiple interfaces and
do intetfaces on/off stress test, it's possible some interfaces will
run out of system tx pool descriptors when do ol_tx_flow_pool_resize,
and other interface can't get any available tx descriptors.

Change-Id: I07ded6c7f39637f6f2734edac5add8fef7bb8cf3
CRs-Fixed: 2857659
Qun Zhang 4 ani în urmă
părinte
comite
c07607873c
1 a modificat fișierele cu 2 adăugiri și 1 ștergeri
  1. 2 1
      core/dp/txrx/ol_txrx_flow_control.c

+ 2 - 1
core/dp/txrx/ol_txrx_flow_control.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015-2020 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2015-2021 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
@@ -1016,6 +1016,7 @@ int ol_tx_distribute_descs_to_deficient_pools_from_global_pool(void)
 				desc_move_count : dst_pool->deficient_desc;
 
 			desc_move_count -= temp_count;
+			dst_pool->deficient_desc -= temp_count;
 			for (i = 0; i < temp_count; i++) {
 				tx_desc = &temp_list->tx_desc;
 				temp_list = temp_list->next;