Commit d0e482c4 authored by Oleg Kanatov's avatar Oleg Kanatov Committed by Dave Kleikamp

jfs: Fix a typo in function jfs_umount

When closing the block allocation map, an incorrect pointer
was NULL'ed. This commit fixes that.
Signed-off-by: default avatarOleg Kanatov <okanatov@gmail.com>
Signed-off-by: default avatarDave Kleikamp <dave.kleikamp@oracle.com>
parent 25e70c61
......@@ -87,7 +87,7 @@ int jfs_umount(struct super_block *sb)
dbUnmount(ipbmap, 0);
diFreeSpecial(ipbmap);
sbi->ipimap = NULL;
sbi->ipbmap = NULL;
/*
* Make sure all metadata makes it to disk before we mark
......
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