]> Git Repo - J-linux.git/commitdiff
jfs: Fix a typo in function jfs_umount
authorOleg Kanatov <[email protected]>
Fri, 28 Oct 2022 12:16:39 +0000 (15:16 +0300)
committerDave Kleikamp <[email protected]>
Thu, 10 Nov 2022 21:08:00 +0000 (15:08 -0600)
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]>
fs/jfs/jfs_umount.c

index 95ebcd17ce757e0fd75795d66a4bd756db66e77b..8ec43f53f68655ed2663986800c22fb7e7173064 100644 (file)
@@ -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
This page took 0.059039 seconds and 4 git commands to generate.