diff options
author | Jan Schmidt <list.btrfs@jan-o-sch.net> | 2012-03-23 12:14:20 -0400 |
---|---|---|
committer | Jan Schmidt <list.btrfs@jan-o-sch.net> | 2012-03-27 08:51:17 -0400 |
commit | e565d4b962948e70f37f417603caf131a773621b (patch) | |
tree | e29c3f956cfae30d4b455801579e20b64fd060e3 /fs/btrfs | |
parent | a175423c831ea582c06784d1e172d2ce1d79923a (diff) |
Btrfs: actually call btrfs_init_lockdep
btrfs_init_lockdep only makes our lockdep class names look prettier, thus
it did never hurt we forgot to actually call it. This turns our lockdep
identifier strings from lockdep auto-set #[id] into really pretty
"btrfs-fs-01" or "btrfs-csum-03".
Signed-off-by: Jan Schmidt <list.btrfs@jan-o-sch.net>
Diffstat (limited to 'fs/btrfs')
-rw-r--r-- | fs/btrfs/super.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 61717a4eb14f..5239003d453e 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c | |||
@@ -1404,6 +1404,8 @@ static int __init init_btrfs_fs(void) | |||
1404 | if (err) | 1404 | if (err) |
1405 | goto unregister_ioctl; | 1405 | goto unregister_ioctl; |
1406 | 1406 | ||
1407 | btrfs_init_lockdep(); | ||
1408 | |||
1407 | printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION); | 1409 | printk(KERN_INFO "%s loaded\n", BTRFS_BUILD_VERSION); |
1408 | return 0; | 1410 | return 0; |
1409 | 1411 | ||