Lines Matching refs:oparms
1321 CIFS_open(const unsigned int xid, struct cifs_open_parms *oparms, int *oplock,
1330 struct cifs_sb_info *cifs_sb = oparms->cifs_sb;
1331 struct cifs_tcon *tcon = oparms->tcon;
1334 int create_options = oparms->create_options;
1335 int desired_access = oparms->desired_access;
1336 int disposition = oparms->disposition;
1337 const char *path = oparms->path;
1418 oparms->fid->netfid = rsp->Fid;
1419 oparms->fid->access = desired_access;
5818 struct cifs_open_parms oparms;
5822 oparms.tcon = tcon;
5823 oparms.cifs_sb = cifs_sb;
5824 oparms.desired_access = GENERIC_WRITE;
5825 oparms.create_options = cifs_create_options(cifs_sb, 0);
5826 oparms.disposition = FILE_OPEN;
5827 oparms.path = fileName;
5828 oparms.fid = &fid;
5829 oparms.reconnect = false;
5831 rc = CIFS_open(xid, &oparms, &oplock, NULL);