aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorMarcin Slusarz <marcin.slusarz@gmail.com>2008-05-13 00:01:01 -0400
committerSteve French <sfrench@us.ibm.com>2008-05-13 00:01:01 -0400
commited5f037005d728de19a0f63678ac35b42064966d (patch)
tree3368d40cc7afbdc48f075e20b3cbcbba273b5ef0 /fs
parent6353450a2deefaa79cdb4fd2b72830c7db610256 (diff)
[CIFS] CIFSSMBPosixLock should return -EINVAL on error
all other codepaths in this function return negative values on errors Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com> Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/cifs/cifssmb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c
index 641cc8ffc51b..1cbe61524efc 100644
--- a/fs/cifs/cifssmb.c
+++ b/fs/cifs/cifssmb.c
@@ -1767,7 +1767,7 @@ CIFSSMBPosixLock(const int xid, struct cifsTconInfo *tcon,
1767 cFYI(1, ("Posix Lock")); 1767 cFYI(1, ("Posix Lock"));
1768 1768
1769 if (pLockData == NULL) 1769 if (pLockData == NULL)
1770 return EINVAL; 1770 return -EINVAL;
1771 1771
1772 rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB); 1772 rc = small_smb_init(SMB_COM_TRANSACTION2, 15, tcon, (void **) &pSMB);
1773 1773