mirror of https://gitee.com/openkylin/linux.git
ubifs: register backing_dev_info
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
This commit is contained in:
parent
ad081f1430
commit
a979eff181
|
@ -1937,6 +1937,9 @@ static int ubifs_fill_super(struct super_block *sb, void *data, int silent)
|
|||
err = bdi_init(&c->bdi);
|
||||
if (err)
|
||||
goto out_close;
|
||||
err = bdi_register(&c->bdi, NULL, "ubifs");
|
||||
if (err)
|
||||
goto out_bdi;
|
||||
|
||||
err = ubifs_parse_options(c, data, 0);
|
||||
if (err)
|
||||
|
|
Loading…
Reference in New Issue