2019-07-19 01:24:46

by Mao Wenan

[permalink] [raw]
Subject: [PATCH -next] infiniband: siw: remove set but not used variables 'rv'

Fixes gcc '-Wunused-but-set-variable' warning:

drivers/infiniband/sw/siw/siw_cm.c: In function siw_cep_set_inuse:
drivers/infiniband/sw/siw/siw_cm.c:223:6: warning: variable rv set but not used [-Wunused-but-set-variable]

It is not used since commit 6c52fdc244b5("rdma/siw: connection management")

Signed-off-by: Mao Wenan <[email protected]>
---
drivers/infiniband/sw/siw/siw_cm.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/infiniband/sw/siw/siw_cm.c b/drivers/infiniband/sw/siw/siw_cm.c
index a7cde98..9ce8a1b 100644
--- a/drivers/infiniband/sw/siw/siw_cm.c
+++ b/drivers/infiniband/sw/siw/siw_cm.c
@@ -220,13 +220,12 @@ static void siw_put_work(struct siw_cm_work *work)
static void siw_cep_set_inuse(struct siw_cep *cep)
{
unsigned long flags;
- int rv;
retry:
spin_lock_irqsave(&cep->lock, flags);

if (cep->in_use) {
spin_unlock_irqrestore(&cep->lock, flags);
- rv = wait_event_interruptible(cep->waitq, !cep->in_use);
+ wait_event_interruptible(cep->waitq, !cep->in_use);
if (signal_pending(current))
flush_signals(current);
goto retry;
--
2.7.4


2019-07-20 18:41:01

by Bernard Metzler

[permalink] [raw]
Subject: Re: [PATCH -next] infiniband: siw: remove set but not used variables 'rv'

-----"Mao Wenan" <[email protected]> wrote: -----

>To: <[email protected]>, <[email protected]>, <[email protected]>
>From: "Mao Wenan" <[email protected]>
>Date: 07/19/2019 03:24AM
>Cc: <[email protected]>, <[email protected]>,
><[email protected]>, "Mao Wenan" <[email protected]>
>Subject: [EXTERNAL] [PATCH -next] infiniband: siw: remove set but not
>used variables 'rv'
>
>Fixes gcc '-Wunused-but-set-variable' warning:
>
>drivers/infiniband/sw/siw/siw_cm.c: In function siw_cep_set_inuse:
>drivers/infiniband/sw/siw/siw_cm.c:223:6: warning: variable rv set
>but not used [-Wunused-but-set-variable]
>
>It is not used since commit 6c52fdc244b5("rdma/siw: connection
>management")
>
>Signed-off-by: Mao Wenan <[email protected]>
>---
> drivers/infiniband/sw/siw/siw_cm.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
>diff --git a/drivers/infiniband/sw/siw/siw_cm.c
>b/drivers/infiniband/sw/siw/siw_cm.c
>index a7cde98..9ce8a1b 100644
>--- a/drivers/infiniband/sw/siw/siw_cm.c
>+++ b/drivers/infiniband/sw/siw/siw_cm.c
>@@ -220,13 +220,12 @@ static void siw_put_work(struct siw_cm_work
>*work)
> static void siw_cep_set_inuse(struct siw_cep *cep)
> {
> unsigned long flags;
>- int rv;
> retry:
> spin_lock_irqsave(&cep->lock, flags);
>
> if (cep->in_use) {
> spin_unlock_irqrestore(&cep->lock, flags);
>- rv = wait_event_interruptible(cep->waitq, !cep->in_use);
>+ wait_event_interruptible(cep->waitq, !cep->in_use);
> if (signal_pending(current))
> flush_signals(current);
> goto retry;
>--
>2.7.4
>
>

Mao, many thanks for finding that. So, yes, 'rv' shall be removed.

Reviewed-by: Bernard Metzler <[email protected]>

2019-07-23 01:19:12

by Jason Gunthorpe

[permalink] [raw]
Subject: Re: [PATCH -next] infiniband: siw: remove set but not used variables 'rv'

On Fri, Jul 19, 2019 at 09:29:38AM +0800, Mao Wenan wrote:
> Fixes gcc '-Wunused-but-set-variable' warning:
>
> drivers/infiniband/sw/siw/siw_cm.c: In function siw_cep_set_inuse:
> drivers/infiniband/sw/siw/siw_cm.c:223:6: warning: variable rv set but not used [-Wunused-but-set-variable]
>
> It is not used since commit 6c52fdc244b5("rdma/siw: connection management")
>
> Signed-off-by: Mao Wenan <[email protected]>
> ---
> drivers/infiniband/sw/siw/siw_cm.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)

Applied to for-rc

Thanks,
Jason