diff options
author | Marcin Slusarz <marcin.slusarz@gmail.com> | 2008-05-13 00:01:01 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2008-05-13 00:01:01 -0400 |
commit | ed5f037005d728de19a0f63678ac35b42064966d (patch) | |
tree | 3368d40cc7afbdc48f075e20b3cbcbba273b5ef0 | |
parent | 6353450a2deefaa79cdb4fd2b72830c7db610256 (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>
-rw-r--r-- | fs/cifs/cifssmb.c | 2 |
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 | ||