Home
last modified time | relevance | path

Searched refs:ofid (Results 1 – 4 of 4) sorted by relevance

/Linux-v5.4/fs/9p/
Dvfs_inode_dotl.c239 struct p9_fid *dfid, *ofid, *inode_fid; in v9fs_vfs_atomic_open_dotl() local
271 ofid = clone_fid(dfid); in v9fs_vfs_atomic_open_dotl()
272 if (IS_ERR(ofid)) { in v9fs_vfs_atomic_open_dotl()
273 err = PTR_ERR(ofid); in v9fs_vfs_atomic_open_dotl()
288 err = p9_client_create_dotl(ofid, name, v9fs_open_to_dotl_flags(flags), in v9fs_vfs_atomic_open_dotl()
342 file->private_data = ofid; in v9fs_vfs_atomic_open_dotl()
355 if (ofid) in v9fs_vfs_atomic_open_dotl()
356 p9_client_clunk(ofid); in v9fs_vfs_atomic_open_dotl()
Dvfs_inode.c647 struct p9_fid *dfid, *ofid, *fid; in v9fs_create() local
653 ofid = NULL; in v9fs_create()
664 ofid = clone_fid(dfid); in v9fs_create()
665 if (IS_ERR(ofid)) { in v9fs_create()
666 err = PTR_ERR(ofid); in v9fs_create()
671 err = p9_client_fcreate(ofid, name, perm, mode, extension); in v9fs_create()
700 return ofid; in v9fs_create()
702 if (ofid) in v9fs_create()
703 p9_client_clunk(ofid); in v9fs_create()
/Linux-v5.4/include/net/9p/
Dclient.h196 int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags, u32 mode,
/Linux-v5.4/net/9p/
Dclient.c1285 int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags, u32 mode, in p9_client_create_dotl() argument
1295 ofid->fid, name, flags, mode, in p9_client_create_dotl()
1297 clnt = ofid->clnt; in p9_client_create_dotl()
1299 if (ofid->mode != -1) in p9_client_create_dotl()
1302 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags, in p9_client_create_dotl()
1320 ofid->mode = mode; in p9_client_create_dotl()
1321 ofid->iounit = iounit; in p9_client_create_dotl()