aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2008-12-12 00:58:52 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2008-12-12 00:58:52 +0000
commit24b087e49ec676e1a5a14f1dd3ab0aaa39f0d8e8 (patch)
tree559a2321725ad863d3d6f62b901803cfa16b49ec
parentb9022449b34bead66e4e7a69923e435437f53a48 (diff)
Notes
-rw-r--r--sys/sys/vnode.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/sys/vnode.h b/sys/sys/vnode.h
index 9f5999357dea..de640908fa8e 100644
--- a/sys/sys/vnode.h
+++ b/sys/sys/vnode.h
@@ -659,6 +659,7 @@ int vop_stdvptofh(struct vop_vptofh_args *ap);
int vop_eopnotsupp(struct vop_generic_args *ap);
int vop_ebadf(struct vop_generic_args *ap);
int vop_einval(struct vop_generic_args *ap);
+int vop_enoent(struct vop_generic_args *ap);
int vop_enotty(struct vop_generic_args *ap);
int vop_null(struct vop_generic_args *ap);
int vop_panic(struct vop_generic_args *ap);
@@ -723,6 +724,7 @@ extern struct vop_vector default_vnodeops;
#define VOP_EBADF ((void*)(uintptr_t)vop_ebadf)
#define VOP_ENOTTY ((void*)(uintptr_t)vop_enotty)
#define VOP_EINVAL ((void*)(uintptr_t)vop_einval)
+#define VOP_ENOENT ((void*)(uintptr_t)vop_enoent)
#define VOP_EOPNOTSUPP ((void*)(uintptr_t)vop_eopnotsupp)
/* vfs_hash.c */