[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20150107084125.GB22048@quack.suse.cz>
Date: Wed, 7 Jan 2015 09:41:25 +0100
From: Jan Kara <jack@...e.cz>
To: kbuild test robot <fengguang.wu@...el.com>
Cc: Tejun Heo <tj@...nel.org>, kbuild-all@...org,
Jens Axboe <axboe@...nel.dk>, Jan Kara <jack@...e.cz>,
Andrew Morton <akpm@...ux-foundation.org>,
Linux Memory Management List <linux-mm@...ck.org>,
"Paul E. McKenney" <paulmck@...ux.vnet.ibm.com>,
Maxim Patlasov <MPatlasov@...allels.com>,
Johannes Weiner <hannes@...xchg.org>,
Derek Basehore <dbasehore@...omium.org>,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] writeback: fix simple_return.cocci warnings
On Wed 07-01-15 12:25:35, Wu Fengguang wrote:
> mm/backing-dev.c:513:1-4: WARNING: end returns can be simpified and declaration on line 502 can be dropped
>
> Simplify a trivial if-return sequence. Possibly combine with a
> preceding function call.
> Generated by: scripts/coccinelle/misc/simple_return.cocci
>
> Signed-off-by: Fengguang Wu <fengguang.wu@...el.com>
Looks good.
Reviewed-by: Jan Kara <jack@...e.cz>
Honza
> ---
>
> backing-dev.c | 8 +-------
> 1 file changed, 1 insertion(+), 7 deletions(-)
>
> --- a/mm/backing-dev.c
> +++ b/mm/backing-dev.c
> @@ -499,8 +499,6 @@ static void bdi_wb_exit(struct bdi_write
>
> int bdi_init(struct backing_dev_info *bdi)
> {
> - int err;
> -
> bdi->dev = NULL;
>
> bdi->min_ratio = 0;
> @@ -510,11 +508,7 @@ int bdi_init(struct backing_dev_info *bd
> INIT_LIST_HEAD(&bdi->bdi_list);
> INIT_LIST_HEAD(&bdi->work_list);
>
> - err = bdi_wb_init(&bdi->wb, bdi);
> - if (err)
> - return err;
> -
> - return 0;
> + return bdi_wb_init(&bdi->wb, bdi);
> }
> EXPORT_SYMBOL(bdi_init);
>
--
Jan Kara <jack@...e.cz>
SUSE Labs, CR
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists