diff options
| author | Björn Baumbach <[email protected]> | 2014-06-10 12:03:26 +0200 |
|---|---|---|
| committer | Steve French <[email protected]> | 2014-06-16 13:50:11 -0500 |
| commit | a1d0b84c308d7fdfb67eb76498116a6c2fdda507 (patch) | |
| tree | f4f10b47230f0c83bd8f15ccde87ac60b41ff86a | |
| parent | 7171511eaec5bf23fb06078f59784a3a0626b38f (diff) | |
fs/cifs: fix regression in cifs_create_mf_symlink()
commit d81b8a40e2ece0a9ab57b1fe1798e291e75bf8fc
("CIFS: Cleanup cifs open codepath")
changed disposition to FILE_OPEN.
Signed-off-by: Björn Baumbach <[email protected]>
Signed-off-by: Stefan Metzmacher <[email protected]>
Reviewed-by: Stefan Metzmacher <[email protected]>
Cc: <[email protected]> # v3.14+
Cc: Pavel Shilovsky <[email protected]>
Cc: Steve French <[email protected]>
Signed-off-by: Steve French <[email protected]>
| -rw-r--r-- | fs/cifs/link.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/link.c b/fs/cifs/link.c index 264ece71bdb2..68559fd557fb 100644 --- a/fs/cifs/link.c +++ b/fs/cifs/link.c @@ -374,7 +374,7 @@ cifs_create_mf_symlink(unsigned int xid, struct cifs_tcon *tcon, oparms.cifs_sb = cifs_sb; oparms.desired_access = GENERIC_WRITE; oparms.create_options = create_options; - oparms.disposition = FILE_OPEN; + oparms.disposition = FILE_CREATE; oparms.path = path; oparms.fid = &fid; oparms.reconnect = false; |