Re: [PATCH] dma-mapping: fix an uninitialized pointer read due to typo in argp assignment

2020-11-25 Thread Christoph Hellwig
Ooops, that was my edit. I'll make sure to fold the fix into the original commit.

RE: [PATCH] dma-mapping: fix an uninitialized pointer read due to typo in argp assignment

2020-11-25 Thread Song Bao Hua (Barry Song)
ger.kernel.org; linux-kernel@vger.kernel.org > Subject: [PATCH] dma-mapping: fix an uninitialized pointer read due to typo in > argp assignment > > From: Colin Ian King > > The assignment of argp is currently using argp as the source because of > a typo. Fix this by as

[PATCH] dma-mapping: fix an uninitialized pointer read due to typo in argp assignment

2020-11-25 Thread Colin King
From: Colin Ian King The assignment of argp is currently using argp as the source because of a typo. Fix this by assigning it the value passed in arg instead. Addresses-Coverity: ("Uninitialized pointer read") Fixes: bfd2defed94d ("dma-mapping: add benchmark support for streaming DMA APIs") Sig