Home
last modified time | relevance | path

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

/Linux-v5.10/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.c593 struct p9_fid *dfid, *ofid, *fid; in v9fs_create() local
599 ofid = NULL; in v9fs_create()
610 ofid = clone_fid(dfid); in v9fs_create()
611 if (IS_ERR(ofid)) { in v9fs_create()
612 err = PTR_ERR(ofid); in v9fs_create()
617 err = p9_client_fcreate(ofid, name, perm, mode, extension); in v9fs_create()
646 return ofid; in v9fs_create()
648 if (ofid) in v9fs_create()
649 p9_client_clunk(ofid); in v9fs_create()
/Linux-v5.10/include/net/9p/
Dclient.h194 int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags, u32 mode,
/Linux-v5.10/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()