Lines Matching refs:oparms

564 		struct cifs_open_parms oparms;
566 oparms.tcon = tcon;
567 oparms.cifs_sb = cifs_sb;
568 oparms.desired_access = FILE_READ_ATTRIBUTES;
569 oparms.create_options = cifs_create_options(cifs_sb, 0);
570 oparms.disposition = FILE_OPEN;
571 oparms.path = full_path;
572 oparms.fid = &fid;
573 oparms.reconnect = false;
576 tmprc = CIFS_open(xid, &oparms, &oplock, NULL);
697 cifs_open_file(const unsigned int xid, struct cifs_open_parms *oparms,
700 if (!(oparms->tcon->ses->capabilities & CAP_NT_SMBS))
701 return SMBLegacyOpen(xid, oparms->tcon, oparms->path,
702 oparms->disposition,
703 oparms->desired_access,
704 oparms->create_options,
705 &oparms->fid->netfid, oplock, buf,
706 oparms->cifs_sb->local_nls,
707 cifs_remap(oparms->cifs_sb));
708 return CIFS_open(xid, oparms, oplock, buf);
761 struct cifs_open_parms oparms;
794 oparms.tcon = tcon;
795 oparms.cifs_sb = cifs_sb;
796 oparms.desired_access = SYNCHRONIZE | FILE_WRITE_ATTRIBUTES;
797 oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR);
798 oparms.disposition = FILE_OPEN;
799 oparms.path = full_path;
800 oparms.fid = &fid;
801 oparms.reconnect = false;
804 rc = CIFS_open(xid, &oparms, &oplock, NULL);
949 struct cifs_open_parms oparms;
971 oparms.tcon = tcon;
972 oparms.cifs_sb = cifs_sb;
973 oparms.desired_access = FILE_READ_ATTRIBUTES;
974 oparms.create_options = cifs_create_options(cifs_sb,
976 oparms.disposition = FILE_OPEN;
977 oparms.path = full_path;
978 oparms.fid = &fid;
979 oparms.reconnect = false;
981 rc = CIFS_open(xid, &oparms, &oplock, NULL);
1038 struct cifs_open_parms oparms;
1094 oparms.tcon = tcon;
1095 oparms.cifs_sb = cifs_sb;
1096 oparms.desired_access = GENERIC_WRITE;
1097 oparms.create_options = cifs_create_options(cifs_sb, CREATE_NOT_DIR |
1099 oparms.disposition = FILE_CREATE;
1100 oparms.path = full_path;
1101 oparms.fid = &fid;
1102 oparms.reconnect = false;
1108 rc = tcon->ses->server->ops->open(xid, &oparms, &oplock, buf);