fat: fix using uninitialized fields of fat_inode/fsinfo_inode
authorOGAWA Hirofumi <[email protected]>
Fri, 10 Mar 2017 00:17:37 +0000 (16:17 -0800)
committerLinus Torvalds <[email protected]>
Fri, 10 Mar 2017 01:01:10 +0000 (17:01 -0800)
commitc0d0e351285161a515396b7b1ee53ec9ffd97e3c
tree10a446f71ea3e4ec0e82abadbda61bbdb79bdac1
parentca5b58ea3db88b5e69ba2a1f6bc3cf239cdcc64f
fat: fix using uninitialized fields of fat_inode/fsinfo_inode

Recently fallocate patch was merged and it uses
MSDOS_I(inode)->mmu_private at fat_evict_inode().  However,
fat_inode/fsinfo_inode that was introduced in past didn't initialize
MSDOS_I(inode) properly.

With those combinations, it became the cause of accessing random entry
in FAT area.

Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: OGAWA Hirofumi <[email protected]>
Reported-by: Moreno Bartalucci <[email protected]>
Tested-by: Moreno Bartalucci <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
fs/fat/inode.c