Symbol: p9_fid
sys/fs/p9fs/p9_client.c
1045
p9_client_file_create(struct p9_fid *fid, char *name, uint32_t perm, int mode,
sys/fs/p9fs/p9_client.c
1084
p9_client_statfs(struct p9_fid *fid, struct p9_statfs *stat)
sys/fs/p9fs/p9_client.c
1124
p9_client_renameat(struct p9_fid *oldfid, char *oldname, struct p9_fid *newfid,
sys/fs/p9fs/p9_client.c
1154
p9_create_symlink(struct p9_fid *fid, char *name, char *symtgt, gid_t gid)
sys/fs/p9fs/p9_client.c
1187
p9_create_hardlink(struct p9_fid *dfid, struct p9_fid *oldfid, char *name)
sys/fs/p9fs/p9_client.c
1210
p9_readlink(struct p9_fid *fid, char **target)
sys/fs/p9fs/p9_client.c
1239
p9_client_getattr(struct p9_fid *fid, struct p9_stat_dotl *stat_dotl,
sys/fs/p9fs/p9_client.c
1295
p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
sys/fs/p9fs/p9_client.c
404
struct p9_fid *
sys/fs/p9fs/p9_client.c
407
struct p9_fid *fid;
sys/fs/p9fs/p9_client.c
428
p9_fid_destroy(struct p9_fid *fid)
sys/fs/p9fs/p9_client.c
511
sizeof(struct p9_fid), NULL, NULL, NULL, NULL, UMA_ALIGN_PTR, 0);
sys/fs/p9fs/p9_client.c
600
struct p9_fid *
sys/fs/p9fs/p9_client.c
601
p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
sys/fs/p9fs/p9_client.c
605
struct p9_fid *fid;
sys/fs/p9fs/p9_client.c
647
p9_client_remove(struct p9_fid *fid)
sys/fs/p9fs/p9_client.c
669
p9_client_unlink(struct p9_fid *dfid, const char *name, int32_t flags)
sys/fs/p9fs/p9_client.c
694
p9_client_clunk(struct p9_fid *fid)
sys/fs/p9fs/p9_client.c
726
struct p9_fid *
sys/fs/p9fs/p9_client.c
727
p9_client_walk(struct p9_fid *oldfid, uint16_t nwnames, char **wnames,
sys/fs/p9fs/p9_client.c
731
struct p9_fid *fid;
sys/fs/p9fs/p9_client.c
814
p9_client_open(struct p9_fid *fid, int mode)
sys/fs/p9fs/p9_client.c
860
p9_client_readdir(struct p9_fid *fid, char *data, uint64_t offset,
sys/fs/p9fs/p9_client.c
916
p9_client_read(struct p9_fid *fid, uint64_t offset, uint32_t count, char *data)
sys/fs/p9fs/p9_client.c
982
p9_client_write(struct p9_fid *fid, uint64_t offset, uint32_t count, char *data)
sys/fs/p9fs/p9_client.h
106
STAILQ_ENTRY(p9_fid) fid_next; /* points to next fid in the list */
sys/fs/p9fs/p9_client.h
125
struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *fid,
sys/fs/p9fs/p9_client.h
130
int p9_client_open(struct p9_fid *fid, int mode);
sys/fs/p9fs/p9_client.h
131
int p9_client_close(struct p9_fid *fid);
sys/fs/p9fs/p9_client.h
132
struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwnames,
sys/fs/p9fs/p9_client.h
134
struct p9_fid *p9_fid_create(struct p9_client *clnt);
sys/fs/p9fs/p9_client.h
135
void p9_fid_destroy(struct p9_fid *fid);
sys/fs/p9fs/p9_client.h
138
int p9_client_clunk(struct p9_fid *fid);
sys/fs/p9fs/p9_client.h
140
int p9_client_readdir(struct p9_fid *fid, char *data, uint64_t offset, uint32_t count);
sys/fs/p9fs/p9_client.h
141
int p9_client_read(struct p9_fid *fid, uint64_t offset, uint32_t count, char *data);
sys/fs/p9fs/p9_client.h
142
int p9_client_write(struct p9_fid *fid, uint64_t offset, uint32_t count, char *data);
sys/fs/p9fs/p9_client.h
143
int p9_client_file_create(struct p9_fid *fid, char *name, uint32_t perm, int mode,
sys/fs/p9fs/p9_client.h
145
int p9_client_remove(struct p9_fid *fid);
sys/fs/p9fs/p9_client.h
146
int p9_client_unlink(struct p9_fid *dfid, const char *name, int32_t flags);
sys/fs/p9fs/p9_client.h
149
int p9_client_statfs(struct p9_fid *fid, struct p9_statfs *stat);
sys/fs/p9fs/p9_client.h
157
int p9_create_symlink(struct p9_fid *fid, char *name, char *symtgt, gid_t gid);
sys/fs/p9fs/p9_client.h
158
int p9_create_hardlink(struct p9_fid *dfid, struct p9_fid *oldfid, char *name);
sys/fs/p9fs/p9_client.h
159
int p9_readlink(struct p9_fid *fid, char **target);
sys/fs/p9fs/p9_client.h
160
int p9_client_renameat(struct p9_fid *oldfid, char *oldname, struct p9_fid *newfid, char *newname);
sys/fs/p9fs/p9_client.h
161
int p9_client_getattr(struct p9_fid *fid, struct p9_stat_dotl *stat_dotl,
sys/fs/p9fs/p9_client.h
163
int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr);
sys/fs/p9fs/p9fs.h
156
struct p9_fid *mnt_fid; /* to save nobody 's fid for unmounting as root user */
sys/fs/p9fs/p9fs.h
187
struct p9_fid *p9fs_init_session(struct mount *mp, int *error);
sys/fs/p9fs/p9fs.h
193
struct p9fs_node *parent, struct p9_fid *fid, struct vnode **vpp,
sys/fs/p9fs/p9fs.h
200
void p9fs_fid_remove(struct p9fs_node *np, struct p9_fid *vfid,
sys/fs/p9fs/p9fs.h
202
void p9fs_fid_add(struct p9fs_node *np, struct p9_fid *fid,
sys/fs/p9fs/p9fs.h
204
struct p9_fid *p9fs_get_fid(struct p9_client *clnt,
sys/fs/p9fs/p9fs.h
96
STAILQ_HEAD( ,p9_fid) vfid_list; /* vfid related to uid */
sys/fs/p9fs/p9fs.h
98
STAILQ_HEAD( ,p9_fid) vofid_list; /* vofid related to uid */
sys/fs/p9fs/p9fs_subr.c
192
struct p9_fid *fid, *tfid;
sys/fs/p9fs/p9fs_subr.c
195
STAILQ_REMOVE(&np->vfid_list, fid, p9_fid, fid_next);
sys/fs/p9fs/p9fs_subr.c
201
STAILQ_REMOVE(&np->vofid_list, fid, p9_fid, fid_next);
sys/fs/p9fs/p9fs_subr.c
210
p9fs_fid_remove(struct p9fs_node *np, struct p9_fid *fid, int fid_type)
sys/fs/p9fs/p9fs_subr.c
216
STAILQ_REMOVE(&np->vfid_list, fid, p9_fid, fid_next);
sys/fs/p9fs/p9fs_subr.c
221
STAILQ_REMOVE(&np->vofid_list, fid, p9_fid, fid_next);
sys/fs/p9fs/p9fs_subr.c
229
p9fs_fid_add(struct p9fs_node *np, struct p9_fid *fid, int fid_type)
sys/fs/p9fs/p9fs_subr.c
274
p9fs_compatible_mode(struct p9_fid *fid, int mode)
sys/fs/p9fs/p9fs_subr.c
299
static struct p9_fid *
sys/fs/p9fs/p9fs_subr.c
302
struct p9_fid *fid;
sys/fs/p9fs/p9fs_subr.c
338
struct p9_fid *
sys/fs/p9fs/p9fs_subr.c
343
struct p9_fid *fid, *oldfid;
sys/fs/p9fs/p9fs_subr.c
55
struct p9_fid *
sys/fs/p9fs/p9fs_subr.c
60
struct p9_fid *fid;
sys/fs/p9fs/p9fs_vfsops.c
257
struct p9fs_node *parent, struct p9_fid *fid, struct vnode **vpp,
sys/fs/p9fs/p9fs_vfsops.c
412
struct p9_fid *fid;
sys/fs/p9fs/p9fs_vfsops.c
512
struct p9_fid *vfid;
sys/fs/p9fs/p9fs_vfsops.c
553
struct p9_fid *vfid;
sys/fs/p9fs/p9fs_vnops.c
1183
struct p9_fid *vfid;
sys/fs/p9fs/p9fs_vnops.c
1303
struct p9_fid *vofid;
sys/fs/p9fs/p9fs_vnops.c
1317
struct p9_fid *vofid;
sys/fs/p9fs/p9fs_vnops.c
1553
struct p9_fid *vfid;
sys/fs/p9fs/p9fs_vnops.c
1655
struct p9_fid *dvfid, *newfid;
sys/fs/p9fs/p9fs_vnops.c
1726
struct p9_fid *dvfid, *oldvfid;
sys/fs/p9fs/p9fs_vnops.c
1764
struct p9_fid *dvfid;
sys/fs/p9fs/p9fs_vnops.c
179
struct p9_fid *newfid;
sys/fs/p9fs/p9fs_vnops.c
1809
struct p9_fid *vofid;
sys/fs/p9fs/p9fs_vnops.c
1914
p9fs_doio(struct vnode *vp, struct buf *bp, struct p9_fid *vofid, struct ucred *cr)
sys/fs/p9fs/p9fs_vnops.c
2108
struct p9_fid *olddirvfid, *newdirvfid ;
sys/fs/p9fs/p9fs_vnops.c
226
struct p9_fid *dvfid, *newfid;
sys/fs/p9fs/p9fs_vnops.c
2280
struct p9_fid *vfid;
sys/fs/p9fs/p9fs_vnops.c
429
struct p9_fid *dvfid, *ofid, *newfid;
sys/fs/p9fs/p9fs_vnops.c
675
struct p9_fid *vofid, *vfid;
sys/fs/p9fs/p9fs_vnops.c
753
struct p9_fid *vofid;
sys/fs/p9fs/p9fs_vnops.c
858
struct p9_fid *vfid;