The patch titled Subject: fat: remove redundant assignment of 0 to slots has been added to the -mm tree. Its filename is fat-remove-redundant-assignment-of-0-to-slots.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/fat-remove-redundant-assignment-of-0-to-slots.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/fat-remove-redundant-assignment-of-0-to-slots.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Colin Ian King <colin.king@xxxxxxxxxxxxx> Subject: fat: remove redundant assignment of 0 to slots The variable slots is being assigned a value of zero that is never read, slots is being updated again a few lines later. Remove this redundant assignment. Cleans clang warning: Value stored to 'slots' is never read Link: http://lkml.kernel.org/r/20171017140258.22536-1-colin.king@xxxxxxxxxxxxx Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx> Acked-by: OGAWA Hirofumi <hirofumi@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/fat/dir.c | 1 - 1 file changed, 1 deletion(-) diff -puN fs/fat/dir.c~fat-remove-redundant-assignment-of-0-to-slots fs/fat/dir.c --- a/fs/fat/dir.c~fat-remove-redundant-assignment-of-0-to-slots +++ a/fs/fat/dir.c @@ -291,7 +291,6 @@ static int fat_parse_long(struct inode * } } parse_long: - slots = 0; ds = (struct msdos_dir_slot *)*de; id = ds->id; if (!(id & 0x40)) _ Patches currently in -mm which might be from colin.king@xxxxxxxxxxxxx are mm-rmap-remove-redundant-variable-cend.patch zram-make-function-zram_page_end_io-static.patch fat-remove-redundant-assignment-of-0-to-slots.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html