Lines Matching refs:oparms
185 struct cifs_open_parms oparms; in cifs_nt_open() local
227 oparms.tcon = tcon; in cifs_nt_open()
228 oparms.cifs_sb = cifs_sb; in cifs_nt_open()
229 oparms.desired_access = desired_access; in cifs_nt_open()
230 oparms.create_options = create_options; in cifs_nt_open()
231 oparms.disposition = disposition; in cifs_nt_open()
232 oparms.path = full_path; in cifs_nt_open()
233 oparms.fid = fid; in cifs_nt_open()
234 oparms.reconnect = false; in cifs_nt_open()
236 rc = server->ops->open(xid, &oparms, oplock, buf); in cifs_nt_open()
611 struct cifs_open_parms oparms; in cifs_reopen_file() local
664 oparms.reconnect = true; in cifs_reopen_file()
681 oparms.tcon = tcon; in cifs_reopen_file()
682 oparms.cifs_sb = cifs_sb; in cifs_reopen_file()
683 oparms.desired_access = desired_access; in cifs_reopen_file()
684 oparms.create_options = create_options; in cifs_reopen_file()
685 oparms.disposition = disposition; in cifs_reopen_file()
686 oparms.path = full_path; in cifs_reopen_file()
687 oparms.fid = &cfile->fid; in cifs_reopen_file()
688 oparms.reconnect = true; in cifs_reopen_file()
697 rc = server->ops->open(xid, &oparms, &oplock, NULL); in cifs_reopen_file()
698 if (rc == -ENOENT && oparms.reconnect == false) { in cifs_reopen_file()
700 rc = server->ops->open(xid, &oparms, &oplock, NULL); in cifs_reopen_file()
702 oparms.reconnect = true; in cifs_reopen_file()
736 if (oparms.reconnect) in cifs_reopen_file()