On wb_congested_get_create() failure, cgwb_create() forgot to set @ret
to -ENOMEM ending up returning 0.  Fix it so that it returns -ENOMEM.

Signed-off-by: Tejun Heo <t...@kernel.org>
Reported-by: Dan Carpenter <dan.carpen...@oracle.com>
---
 mm/backing-dev.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/mm/backing-dev.c b/mm/backing-dev.c
index 887d72a8..436bb53 100644
--- a/mm/backing-dev.c
+++ b/mm/backing-dev.c
@@ -554,8 +554,10 @@ static int cgwb_create(struct backing_dev_info *bdi,
                goto err_ref_exit;
 
        wb->congested = wb_congested_get_create(bdi, blkcg_css->id, gfp);
-       if (!wb->congested)
+       if (!wb->congested) {
+               ret = -ENOMEM;
                goto err_fprop_exit;
+       }
 
        wb->memcg_css = memcg_css;
        wb->blkcg_css = blkcg_css;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to