Lines Matching refs:oparms
186 struct cifs_open_parms oparms; in cifs_nt_open() local
235 oparms.tcon = tcon; in cifs_nt_open()
236 oparms.cifs_sb = cifs_sb; in cifs_nt_open()
237 oparms.desired_access = desired_access; in cifs_nt_open()
238 oparms.create_options = create_options; in cifs_nt_open()
239 oparms.disposition = disposition; in cifs_nt_open()
240 oparms.path = full_path; in cifs_nt_open()
241 oparms.fid = fid; in cifs_nt_open()
242 oparms.reconnect = false; in cifs_nt_open()
244 rc = server->ops->open(xid, &oparms, oplock, buf); in cifs_nt_open()
640 struct cifs_open_parms oparms; in cifs_reopen_file() local
693 oparms.reconnect = true; in cifs_reopen_file()
717 oparms.tcon = tcon; in cifs_reopen_file()
718 oparms.cifs_sb = cifs_sb; in cifs_reopen_file()
719 oparms.desired_access = desired_access; in cifs_reopen_file()
720 oparms.create_options = create_options; in cifs_reopen_file()
721 oparms.disposition = disposition; in cifs_reopen_file()
722 oparms.path = full_path; in cifs_reopen_file()
723 oparms.fid = &cfile->fid; in cifs_reopen_file()
724 oparms.reconnect = true; in cifs_reopen_file()
733 rc = server->ops->open(xid, &oparms, &oplock, NULL); in cifs_reopen_file()
734 if (rc == -ENOENT && oparms.reconnect == false) { in cifs_reopen_file()
736 rc = server->ops->open(xid, &oparms, &oplock, NULL); in cifs_reopen_file()
738 oparms.reconnect = true; in cifs_reopen_file()
772 if (oparms.reconnect) in cifs_reopen_file()