Lines Matching refs:oparms
1208 CIFS_open(const unsigned int xid, struct cifs_open_parms *oparms, int *oplock, in CIFS_open() argument
1217 struct cifs_sb_info *cifs_sb = oparms->cifs_sb; in CIFS_open()
1218 struct cifs_tcon *tcon = oparms->tcon; in CIFS_open()
1221 int create_options = oparms->create_options; in CIFS_open()
1222 int desired_access = oparms->desired_access; in CIFS_open()
1223 int disposition = oparms->disposition; in CIFS_open()
1224 const char *path = oparms->path; in CIFS_open()
1305 oparms->fid->netfid = rsp->Fid; in CIFS_open()
1306 oparms->fid->access = desired_access; in CIFS_open()
5711 struct cifs_open_parms oparms; in CIFSSMBSetPathInfoFB() local
5715 oparms.tcon = tcon; in CIFSSMBSetPathInfoFB()
5716 oparms.cifs_sb = cifs_sb; in CIFSSMBSetPathInfoFB()
5717 oparms.desired_access = GENERIC_WRITE; in CIFSSMBSetPathInfoFB()
5718 oparms.create_options = cifs_create_options(cifs_sb, 0); in CIFSSMBSetPathInfoFB()
5719 oparms.disposition = FILE_OPEN; in CIFSSMBSetPathInfoFB()
5720 oparms.path = fileName; in CIFSSMBSetPathInfoFB()
5721 oparms.fid = &fid; in CIFSSMBSetPathInfoFB()
5722 oparms.reconnect = false; in CIFSSMBSetPathInfoFB()
5724 rc = CIFS_open(xid, &oparms, &oplock, NULL); in CIFSSMBSetPathInfoFB()