diff options
Diffstat (limited to 'fs/cifs/smb2ops.c')
-rw-r--r-- | fs/cifs/smb2ops.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/cifs/smb2ops.c b/fs/cifs/smb2ops.c index 1bc7d7e64cf5..f259e6cc8357 100644 --- a/fs/cifs/smb2ops.c +++ b/fs/cifs/smb2ops.c | |||
@@ -227,6 +227,7 @@ smb2_is_path_accessible(const unsigned int xid, struct cifs_tcon *tcon, | |||
227 | oparms.disposition = FILE_OPEN; | 227 | oparms.disposition = FILE_OPEN; |
228 | oparms.create_options = 0; | 228 | oparms.create_options = 0; |
229 | oparms.fid = &fid; | 229 | oparms.fid = &fid; |
230 | oparms.reconnect = false; | ||
230 | 231 | ||
231 | rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL); | 232 | rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL); |
232 | if (rc) { | 233 | if (rc) { |
@@ -460,6 +461,7 @@ smb2_query_dir_first(const unsigned int xid, struct cifs_tcon *tcon, | |||
460 | oparms.disposition = FILE_OPEN; | 461 | oparms.disposition = FILE_OPEN; |
461 | oparms.create_options = 0; | 462 | oparms.create_options = 0; |
462 | oparms.fid = fid; | 463 | oparms.fid = fid; |
464 | oparms.reconnect = false; | ||
463 | 465 | ||
464 | rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL); | 466 | rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL); |
465 | kfree(utf16_path); | 467 | kfree(utf16_path); |
@@ -546,6 +548,7 @@ smb2_queryfs(const unsigned int xid, struct cifs_tcon *tcon, | |||
546 | oparms.disposition = FILE_OPEN; | 548 | oparms.disposition = FILE_OPEN; |
547 | oparms.create_options = 0; | 549 | oparms.create_options = 0; |
548 | oparms.fid = &fid; | 550 | oparms.fid = &fid; |
551 | oparms.reconnect = false; | ||
549 | 552 | ||
550 | rc = SMB2_open(xid, &oparms, &srch_path, &oplock, NULL); | 553 | rc = SMB2_open(xid, &oparms, &srch_path, &oplock, NULL); |
551 | if (rc) | 554 | if (rc) |