Changeset View
Changeset View
Standalone View
Standalone View
sys/sys/vnode.h
| Show First 20 Lines • Show All 624 Lines • ▼ Show 20 Lines | |||||
| int insmntque1(struct vnode *vp, struct mount *mp, | int insmntque1(struct vnode *vp, struct mount *mp, | ||||
| void (*dtr)(struct vnode *, void *), void *dtr_arg); | void (*dtr)(struct vnode *, void *), void *dtr_arg); | ||||
| int insmntque(struct vnode *vp, struct mount *mp); | int insmntque(struct vnode *vp, struct mount *mp); | ||||
| u_quad_t init_va_filerev(void); | u_quad_t init_va_filerev(void); | ||||
| int speedup_syncer(void); | int speedup_syncer(void); | ||||
| int vn_vptocnp(struct vnode **vp, struct ucred *cred, char *buf, | int vn_vptocnp(struct vnode **vp, struct ucred *cred, char *buf, | ||||
| u_int *buflen); | u_int *buflen); | ||||
| #define textvp_fullpath(p, rb, rfb) \ | #define textvp_fullpath(p, rb, rfb) \ | ||||
| vn_fullpath(FIRST_THREAD_IN_PROC(p), (p)->p_textvp, rb, rfb) | vn_fullpath(FIRST_THREAD_IN_PROC(p), (p)->p_textvp, 0, rb, rfb) | ||||
| int vn_fullpath(struct thread *td, struct vnode *vn, | int vn_fullpath(struct thread *td, struct vnode *vn, int lkflags, | ||||
| char **retbuf, char **freebuf); | char **retbuf, char **freebuf); | ||||
| int vn_fullpath_global(struct thread *td, struct vnode *vn, | int vn_fullpath_global(struct thread *td, struct vnode *vn, | ||||
| char **retbuf, char **freebuf); | char **retbuf, char **freebuf); | ||||
| struct vnode * | struct vnode * | ||||
| vn_dir_dd_ino(struct vnode *vp); | vn_dir_dd_ino(struct vnode *vp); | ||||
| int vn_commname(struct vnode *vn, char *buf, u_int buflen); | int vn_commname(struct vnode *vn, char *buf, u_int buflen); | ||||
| int vn_path_to_global_path(struct thread *td, struct vnode *vp, | int vn_path_to_global_path(struct thread *td, struct vnode *vp, | ||||
| char *path, u_int pathlen); | char *path, u_int pathlen); | ||||
| ▲ Show 20 Lines • Show All 226 Lines • Show Last 20 Lines | |||||