Skip to content

Commit d0e482c

Browse files
okanatovkleikamp
authored andcommitted
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 <[email protected]> Signed-off-by: Dave Kleikamp <[email protected]>
1 parent 25e70c6 commit d0e482c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/jfs/jfs_umount.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ int jfs_umount(struct super_block *sb)
8787
dbUnmount(ipbmap, 0);
8888

8989
diFreeSpecial(ipbmap);
90-
sbi->ipimap = NULL;
90+
sbi->ipbmap = NULL;
9191

9292
/*
9393
* Make sure all metadata makes it to disk before we mark

0 commit comments

Comments
 (0)