Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/fs/9p/
H A 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()
H A 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()
/OK3568_Linux_fs/kernel/net/9p/
H A Dclient.c1284 int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags, u32 mode, in p9_client_create_dotl() argument
1294 ofid->fid, name, flags, mode, in p9_client_create_dotl()
1296 clnt = ofid->clnt; in p9_client_create_dotl()
1298 if (ofid->mode != -1) in p9_client_create_dotl()
1301 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags, in p9_client_create_dotl()
1319 ofid->mode = mode; in p9_client_create_dotl()
1320 ofid->iounit = iounit; in p9_client_create_dotl()
/OK3568_Linux_fs/kernel/include/net/9p/
H A Dclient.h194 int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags, u32 mode,