]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
fat: no need to reset EOF in ent_put for FAT32
authorNamjae Jeon <linkinjeon@gmail.com>
Thu, 13 Sep 2012 01:01:24 +0000 (11:01 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 13 Sep 2012 07:28:15 +0000 (17:28 +1000)
#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>
fs/fat/fatent.c

index 67fd2374472038d967516f5ea420fa78e10125a4..260705c58062cc425b8c656434883de98e1b9e2a 100644 (file)
@@ -186,9 +186,6 @@ static void fat16_ent_put(struct fat_entry *fatent, int new)
 
 static void fat32_ent_put(struct fat_entry *fatent, int new)
 {
-       if (new == FAT_ENT_EOF)
-               new = EOF_FAT32;
-
        WARN_ON(new & 0xf0000000);
        new |= le32_to_cpu(*fatent->u.ent32_p) & ~0x0fffffff;
        *fatent->u.ent32_p = cpu_to_le32(new);