Re: [PATCH net 1/1] net: ipa: pass the correct size when freeing DMA memory

2020-12-04 Thread Jakub Kicinski
On Thu, 3 Dec 2020 17:28:16 -0600 Bjorn Andersson wrote: > > When the coherent memory is freed in gsi_trans_pool_exit_dma(), we > > are mistakenly passing the size of a single element in the pool > > rather than the actual allocated size. Fix this bug. > > > > Fixes: 9dd441e4ed575 ("soc: qcom:

Re: [PATCH net 1/1] net: ipa: pass the correct size when freeing DMA memory

2020-12-03 Thread Bjorn Andersson
On Thu 03 Dec 15:51 CST 2020, Alex Elder wrote: > When the coherent memory is freed in gsi_trans_pool_exit_dma(), we > are mistakenly passing the size of a single element in the pool > rather than the actual allocated size. Fix this bug. > > Fixes: 9dd441e4ed575 ("soc: qcom: ipa: GSI

[PATCH net 1/1] net: ipa: pass the correct size when freeing DMA memory

2020-12-03 Thread Alex Elder
When the coherent memory is freed in gsi_trans_pool_exit_dma(), we are mistakenly passing the size of a single element in the pool rather than the actual allocated size. Fix this bug. Fixes: 9dd441e4ed575 ("soc: qcom: ipa: GSI transactions") Reported-by: Stephen Boyd Tested-by: Sujit Kautkar