Commit 07c0c5d8 authored by Al Viro's avatar Al Viro

ext4: initialization of ext4_li_mtx needs to be done earlier

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 88187398
...@@ -5055,6 +5055,9 @@ static int __init ext4_init_fs(void) ...@@ -5055,6 +5055,9 @@ static int __init ext4_init_fs(void)
{ {
int i, err; int i, err;
ext4_li_info = NULL;
mutex_init(&ext4_li_mtx);
ext4_check_flag_values(); ext4_check_flag_values();
for (i = 0; i < EXT4_WQ_HASH_SZ; i++) { for (i = 0; i < EXT4_WQ_HASH_SZ; i++) {
...@@ -5093,8 +5096,6 @@ static int __init ext4_init_fs(void) ...@@ -5093,8 +5096,6 @@ static int __init ext4_init_fs(void)
if (err) if (err)
goto out; goto out;
ext4_li_info = NULL;
mutex_init(&ext4_li_mtx);
return 0; return 0;
out: out:
unregister_as_ext2(); unregister_as_ext2();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment