diff options
author | Jens Axboe <jens.axboe@oracle.com> | 2009-05-29 09:19:23 +0200 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-06-16 08:21:04 +0200 |
commit | a979eff1811a07f5fd331c5f6f727370747b42ad (patch) | |
tree | 0d01a02a3ad0ca590570feefc0e9be834b330b74 | |
parent | ad081f1430515d0b727eba99ec435a526c61a599 (diff) | |
download | linux-3.10-a979eff1811a07f5fd331c5f6f727370747b42ad.tar.gz linux-3.10-a979eff1811a07f5fd331c5f6f727370747b42ad.tar.bz2 linux-3.10-a979eff1811a07f5fd331c5f6f727370747b42ad.zip |
ubifs: register backing_dev_info
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
-rw-r--r-- | fs/ubifs/super.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index 3589eab02a2..3260b73abe2 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c @@ -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) |