Loading fs/cifs/cifspdu.h +5 −3 Original line number Diff line number Diff line Loading @@ -35,9 +35,11 @@ #define BAD_PROT 0xFFFF /* SMB command codes */ /* Some commands have minimal (wct=0,bcc=0), or uninteresting, responses (ie which include no useful data other than the SMB error code itself). Knowing this helps avoid response buffer allocations and copy in some cases */ /* * Some commands have minimal (wct=0,bcc=0), or uninteresting, responses * (ie which include no useful data other than the SMB error code itself). * Knowing this helps avoid response buffer allocations and copy in some cases */ #define SMB_COM_CREATE_DIRECTORY 0x00 /* trivial response */ #define SMB_COM_DELETE_DIRECTORY 0x01 /* trivial response */ #define SMB_COM_CLOSE 0x04 /* triv req/rsp, timestamp ignored */ Loading fs/cifs/inode.c +1 −1 Original line number Diff line number Diff line Loading @@ -1359,7 +1359,7 @@ int cifs_setattr(struct dentry *direntry, struct iattr *attrs) 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; } Loading Loading
fs/cifs/cifspdu.h +5 −3 Original line number Diff line number Diff line Loading @@ -35,9 +35,11 @@ #define BAD_PROT 0xFFFF /* SMB command codes */ /* Some commands have minimal (wct=0,bcc=0), or uninteresting, responses (ie which include no useful data other than the SMB error code itself). Knowing this helps avoid response buffer allocations and copy in some cases */ /* * Some commands have minimal (wct=0,bcc=0), or uninteresting, responses * (ie which include no useful data other than the SMB error code itself). * Knowing this helps avoid response buffer allocations and copy in some cases */ #define SMB_COM_CREATE_DIRECTORY 0x00 /* trivial response */ #define SMB_COM_DELETE_DIRECTORY 0x01 /* trivial response */ #define SMB_COM_CLOSE 0x04 /* triv req/rsp, timestamp ignored */ Loading
fs/cifs/inode.c +1 −1 Original line number Diff line number Diff line Loading @@ -1359,7 +1359,7 @@ int cifs_setattr(struct dentry *direntry, struct iattr *attrs) 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; } Loading