The patch titled locks: kill redundant local variable has been added to the -mm tree. Its filename is locks-kill-redundant-local-variable.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: locks: kill redundant local variable From: "J. Bruce Fields" <bfields@xxxxxxxxxxxx> There's no need for another variable local to this loop; we can use the variable (of the same name!) already declared at the top of the function, and not used till later (at which point it's initialized, so this is safe). Signed-off-by: J. Bruce Fields <bfields@xxxxxxxxxxxxxx> Signed-off-by: Trond Myklebust <Trond.Myklebust@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/locks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/locks.c~locks-kill-redundant-local-variable fs/locks.c --- a/fs/locks.c~locks-kill-redundant-local-variable +++ a/fs/locks.c @@ -819,7 +819,7 @@ static int __posix_lock_file(struct inod lock_kernel(); if (request->fl_type != F_UNLCK) { for_each_lock(inode, before) { - struct file_lock *fl = *before; + fl = *before; if (!IS_POSIX(fl)) continue; if (!posix_locks_conflict(request, fl)) _ Patches currently in -mm which might be from bfields@xxxxxxxxxxxx are origin.patch git-vfs-lease-api.patch locks-kill-redundant-local-variable.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