Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

fat: no need to reset EOF in ent_put for FAT32

#define FAT_ENT_EOF(EOF_FAT32)

there is no need to reset value of 'new' for FAT32 as the values is
already correct

Signed-off-by: Namjae Jeon <linkinjeon@gmail.com>
Signed-off-by: Amit Sahrawat <amit.sahrawat83@gmail.com>
Acked-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Namjae Jeon and committed by
Linus Torvalds
126ac051 441dff34

-3
-3
fs/fat/fatent.c
··· 186 186 187 187 static void fat32_ent_put(struct fat_entry *fatent, int new) 188 188 { 189 - if (new == FAT_ENT_EOF) 190 - new = EOF_FAT32; 191 - 192 189 WARN_ON(new & 0xf0000000); 193 190 new |= le32_to_cpu(*fatent->u.ent32_p) & ~0x0fffffff; 194 191 *fatent->u.ent32_p = cpu_to_le32(new);