mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
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: Oleg Kanatov <okanatov@gmail.com> Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
This commit is contained in:
parent
25e70c6162
commit
d0e482c45c
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ int jfs_umount(struct super_block *sb)
|
||||||
dbUnmount(ipbmap, 0);
|
dbUnmount(ipbmap, 0);
|
||||||
|
|
||||||
diFreeSpecial(ipbmap);
|
diFreeSpecial(ipbmap);
|
||||||
sbi->ipimap = NULL;
|
sbi->ipbmap = NULL;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Make sure all metadata makes it to disk before we mark
|
* Make sure all metadata makes it to disk before we mark
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue