Home
last modified time | relevance | path

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

/Linux-v4.19/fs/9p/
Dvfs_inode_dotl.c254 struct p9_fid *dfid, *ofid, *inode_fid; in v9fs_vfs_atomic_open_dotl() local
286 ofid = clone_fid(dfid); in v9fs_vfs_atomic_open_dotl()
287 if (IS_ERR(ofid)) { in v9fs_vfs_atomic_open_dotl()
288 err = PTR_ERR(ofid); in v9fs_vfs_atomic_open_dotl()
303 err = p9_client_create_dotl(ofid, name, v9fs_open_to_dotl_flags(flags), in v9fs_vfs_atomic_open_dotl()
357 file->private_data = ofid; in v9fs_vfs_atomic_open_dotl()
370 if (ofid) in v9fs_vfs_atomic_open_dotl()
371 p9_client_clunk(ofid); in v9fs_vfs_atomic_open_dotl()
Dvfs_inode.c668 struct p9_fid *dfid, *ofid, *fid; in v9fs_create() local
674 ofid = NULL; in v9fs_create()
685 ofid = clone_fid(dfid); in v9fs_create()
686 if (IS_ERR(ofid)) { in v9fs_create()
687 err = PTR_ERR(ofid); in v9fs_create()
692 err = p9_client_fcreate(ofid, name, perm, mode, extension); in v9fs_create()
721 return ofid; in v9fs_create()
723 if (ofid) in v9fs_create()
724 p9_client_clunk(ofid); in v9fs_create()
/Linux-v4.19/include/net/9p/
Dclient.h245 int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags, u32 mode,
/Linux-v4.19/net/9p/
Dclient.c1282 int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags, u32 mode, in p9_client_create_dotl() argument
1292 ofid->fid, name, flags, mode, in p9_client_create_dotl()
1294 clnt = ofid->clnt; in p9_client_create_dotl()
1296 if (ofid->mode != -1) in p9_client_create_dotl()
1299 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags, in p9_client_create_dotl()
1317 ofid->mode = mode; in p9_client_create_dotl()
1318 ofid->iounit = iounit; in p9_client_create_dotl()