[PATCH] NTB: Fix static check warning in perf_clear_test

4 views
Skip to first unread message

Jiasen Lin

unread,
Apr 9, 2020, 3:14:14 AM4/9/20
to linux-...@vger.kernel.org, linu...@googlegroups.com, jdm...@kudzu.us, dan.ca...@oracle.com, all...@gmail.com, dave....@intel.com, zhangp...@hygon.cn, linj...@hygon.cn
As pthr->dma_chan can't be NULL in this context, so there is
no need to check pthr->dma_chan.

Fixes: 99a06056124d ("NTB: ntb_perf: Fix address err in perf_copy_chunk")
Reported-by: Dan Carpenter <dan.ca...@oracle.com>
Signed-off-by: Jiasen Lin <linj...@hygon.cn>
---
drivers/ntb/test/ntb_perf.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/ntb/test/ntb_perf.c b/drivers/ntb/test/ntb_perf.c
index 972f6d9..f73b126 100644
--- a/drivers/ntb/test/ntb_perf.c
+++ b/drivers/ntb/test/ntb_perf.c
@@ -1010,8 +1010,8 @@ static void perf_clear_test(struct perf_thread *pthr)
pthr->perf->test_peer->dma_dst_addr,
pthr->perf->test_peer->outbuf_size,
DMA_FROM_DEVICE, 0);
- if (pthr->dma_chan)
- dma_release_channel(pthr->dma_chan);
+
+ dma_release_channel(pthr->dma_chan);

no_dma_notify:
atomic_dec(&perf->tsync);
--
2.7.4

Jon Mason

unread,
Apr 9, 2020, 2:08:36 PM4/9/20
to Jiasen Lin, linux-...@vger.kernel.org, linu...@googlegroups.com, dan.ca...@oracle.com, all...@gmail.com, dave....@intel.com, zhangp...@hygon.cn
On Thu, Apr 09, 2020 at 12:11:24AM -0700, Jiasen Lin wrote:
> As pthr->dma_chan can't be NULL in this context, so there is
> no need to check pthr->dma_chan.
>
> Fixes: 99a06056124d ("NTB: ntb_perf: Fix address err in perf_copy_chunk")
> Reported-by: Dan Carpenter <dan.ca...@oracle.com>
> Signed-off-by: Jiasen Lin <linj...@hygon.cn>

Pulled into my ntb branch.

Thanks,
Jon

> ---
> drivers/ntb/test/ntb_perf.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/ntb/test/ntb_perf.c b/drivers/ntb/test/ntb_perf.c
> index 972f6d9..f73b126 100644
> --- a/drivers/ntb/test/ntb_perf.c
> +++ b/drivers/ntb/test/ntb_perf.c
> @@ -1010,8 +1010,8 @@ static void perf_clear_test(struct perf_thread *pthr)
> pthr->perf->test_peer->dma_dst_addr,
> pthr->perf->test_peer->outbuf_size,
> DMA_FROM_DEVICE, 0);
> - if (pthr->dma_chan)
> - dma_release_channel(pthr->dma_chan);
> +
> + dma_release_channel(pthr->dma_chan);
>
> no_dma_notify:
> atomic_dec(&perf->tsync);
> --
> 2.7.4
>
> --
> You received this message because you are subscribed to the Google Groups "linux-ntb" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to linux-ntb+...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/linux-ntb/1586416284-3246-1-git-send-email-linjiasen%40hygon.cn.
Reply all
Reply to author
Forward
Message has been deleted
0 new messages