The patch titled Fix &&/& typo in cifs_setattr() has been added to the -mm tree. Its filename is fix--typo-in-cifs_setattr.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: Fix &&/& typo in cifs_setattr() From: Dirk Mueller <dmueller@xxxxxxx> This patch fixes a && vs. & typo in cifs_setattr(). Cc: Steven French <sfrench@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/cifs/inode.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN fs/cifs/inode.c~fix--typo-in-cifs_setattr fs/cifs/inode.c --- a/fs/cifs/inode.c~fix--typo-in-cifs_setattr +++ a/fs/cifs/inode.c @@ -1359,7 +1359,7 @@ int cifs_setattr(struct dentry *direntry and this check ensures that we are not being called from sys_utimes in which case we ought to fail the call back to the user when the server rejects the call */ - if((rc) && (attrs->ia_valid && + if((rc) && (attrs->ia_valid & (ATTR_MODE | ATTR_GID | ATTR_UID | ATTR_SIZE))) rc = 0; } _ Patches currently in -mm which might be from dmueller@xxxxxxx are fix--typo-in-cifs_setattr.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