Lines Matching refs:oparms
1170 CIFS_open(const unsigned int xid, struct cifs_open_parms *oparms, int *oplock, in CIFS_open() argument
1179 struct cifs_sb_info *cifs_sb = oparms->cifs_sb; in CIFS_open()
1180 struct cifs_tcon *tcon = oparms->tcon; in CIFS_open()
1183 int create_options = oparms->create_options; in CIFS_open()
1184 int desired_access = oparms->desired_access; in CIFS_open()
1185 int disposition = oparms->disposition; in CIFS_open()
1186 const char *path = oparms->path; in CIFS_open()
1267 oparms->fid->netfid = rsp->Fid; in CIFS_open()
1268 oparms->fid->access = desired_access; in CIFS_open()
5313 struct cifs_open_parms oparms; in CIFSSMBSetPathInfoFB() local
5317 oparms.tcon = tcon; in CIFSSMBSetPathInfoFB()
5318 oparms.cifs_sb = cifs_sb; in CIFSSMBSetPathInfoFB()
5319 oparms.desired_access = GENERIC_WRITE; in CIFSSMBSetPathInfoFB()
5320 oparms.create_options = cifs_create_options(cifs_sb, 0); in CIFSSMBSetPathInfoFB()
5321 oparms.disposition = FILE_OPEN; in CIFSSMBSetPathInfoFB()
5322 oparms.path = fileName; in CIFSSMBSetPathInfoFB()
5323 oparms.fid = &fid; in CIFSSMBSetPathInfoFB()
5324 oparms.reconnect = false; in CIFSSMBSetPathInfoFB()
5326 rc = CIFS_open(xid, &oparms, &oplock, NULL); in CIFSSMBSetPathInfoFB()