Re: [ath9k-devel] [PATCH] ath10k: serialize CE completions properly

2013-05-13 Thread Kalle Valo
Michal Kazior michal.kaz...@tieto.com writes: This fixes memory leak when doing heavy TX. ath10k_pci_check_process_ce() was checking `compl_processing` and would call ath10k_pci_process_ce() if its false. The ath10k_pci_process_ce() would then set it to true if there's at least one

[ath9k-devel] [PATCH] ath10k: serialize CE completions properly

2013-05-10 Thread Michal Kazior
This fixes memory leak when doing heavy TX. ath10k_pci_check_process_ce() was checking `compl_processing` and would call ath10k_pci_process_ce() if its false. The ath10k_pci_process_ce() would then set it to true if there's at least one completion. The lock protecting the variable is not held