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@xxxxxxxxx> Looks good. Reviewed-by: Jan Kara <jack@xxxxxxx> 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@xxxxxxx> SUSE Labs, CR -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>