Re: [PATCH] dma-mapping: Fix sizeof() mismatch on tsk allocation

2020-11-26 Thread Christoph Hellwig
On Wed, Nov 25, 2020 at 06:49:19PM +, Colin Ian King wrote: > On 25/11/2020 18:29, Christoph Hellwig wrote: > > I'll fold this one in as well. > > > OK, so two SoB's disappear? Yes, and are replaced by an annotation about folded fixes, just like for all kinds of other commits.

Re: [PATCH] dma-mapping: Fix sizeof() mismatch on tsk allocation

2020-11-25 Thread Colin Ian King
On 25/11/2020 18:29, Christoph Hellwig wrote: > I'll fold this one in as well. > OK, so two SoB's disappear?

Re: [PATCH] dma-mapping: Fix sizeof() mismatch on tsk allocation

2020-11-25 Thread Christoph Hellwig
I'll fold this one in as well.

RE: [PATCH] dma-mapping: Fix sizeof() mismatch on tsk allocation

2020-11-25 Thread Song Bao Hua (Barry Song)
ger.kernel.org; linux-kernel@vger.kernel.org > Subject: [PATCH] dma-mapping: Fix sizeof() mismatch on tsk allocation > > From: Colin Ian King > > An incorrect sizeof() is being used, sizeof(tsk) is not correct, it should > be sizeof(*tsk). Fix it. > > Addresses-Cov

[PATCH] dma-mapping: Fix sizeof() mismatch on tsk allocation

2020-11-25 Thread Colin King
From: Colin Ian King An incorrect sizeof() is being used, sizeof(tsk) is not correct, it should be sizeof(*tsk). Fix it. Addresses-Coverity: ("Sizeof not portable (SIZEOF_MISMATCH)") Fixes: bfd2defed94d ("dma-mapping: add benchmark support for streaming DMA APIs") Signed-off-by: Colin Ian King