The patch titled Subject: fs/affs/inode.c: remove unneeded initialization has been added to the -mm tree. Its filename is fs-affs-inodec-remove-unneeded-initialization.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/fs-affs-inodec-remove-unneeded-initialization.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/fs-affs-inodec-remove-unneeded-initialization.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: Fabian Frederick <fabf@xxxxxxxxx> Subject: fs/affs/inode.c: remove unneeded initialization bh is initialized unconditionally in affs_add_entry() Signed-off-by: Fabian Frederick <fabf@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/affs/inode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/affs/inode.c~fs-affs-inodec-remove-unneeded-initialization fs/affs/inode.c --- a/fs/affs/inode.c~fs-affs-inodec-remove-unneeded-initialization +++ a/fs/affs/inode.c @@ -346,7 +346,7 @@ affs_add_entry(struct inode *dir, struct { struct super_block *sb = dir->i_sb; struct buffer_head *inode_bh = NULL; - struct buffer_head *bh = NULL; + struct buffer_head *bh; u32 block = 0; int retval; _ Patches currently in -mm which might be from fabf@xxxxxxxxx are fs-ext4-fsyncc-generic_file_fsync-call-based-on-barrier-flag.patch fs-affs-amigaffsc-remove-unneeded-initialization.patch fs-affs-inodec-remove-unneeded-initialization.patch fs-befs-btreec-remove-unneeded-initializations.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