aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/cifs/file.c')
-rw-r--r--fs/cifs/file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c
index 774e3ac1208b..394cf28f080d 100644
--- a/fs/cifs/file.c
+++ b/fs/cifs/file.c
@@ -272,8 +272,8 @@ int cifs_open(struct inode *inode, struct file *file)
272 if (rc == 0) { 272 if (rc == 0) {
273 cFYI(1, "posix open succeeded"); 273 cFYI(1, "posix open succeeded");
274 274
275 pCifsFile = cifs_new_fileinfo(inode, netfid, file, 275 pCifsFile = cifs_new_fileinfo(netfid, file, tlink,
276 tlink, oplock); 276 oplock);
277 if (pCifsFile == NULL) { 277 if (pCifsFile == NULL) {
278 CIFSSMBClose(xid, tcon, netfid); 278 CIFSSMBClose(xid, tcon, netfid);
279 rc = -ENOMEM; 279 rc = -ENOMEM;
@@ -365,7 +365,7 @@ int cifs_open(struct inode *inode, struct file *file)
365 if (rc != 0) 365 if (rc != 0)
366 goto out; 366 goto out;
367 367
368 pCifsFile = cifs_new_fileinfo(inode, netfid, file, tlink, oplock); 368 pCifsFile = cifs_new_fileinfo(netfid, file, tlink, oplock);
369 if (pCifsFile == NULL) { 369 if (pCifsFile == NULL) {
370 rc = -ENOMEM; 370 rc = -ENOMEM;
371 goto out; 371 goto out;