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