diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-04-13 17:09:23 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-04-13 17:09:23 +0000 |
commit | 79085713a6f692f0c60863d240b2352b0df4c22b (patch) | |
tree | 7a865c0cbda930d4ae7bd634be27a7fcd84d08a8 /sys/nfs | |
parent | 749de29aa389aea8bf4dc738045291f1339a26ba (diff) |
Move the declaration of VN_KNOTE() into vnode.h instead of having
multiple defines all over;
ok tedu@
Diffstat (limited to 'sys/nfs')
-rw-r--r-- | sys/nfs/nfs_var.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/nfs/nfs_var.h b/sys/nfs/nfs_var.h index c4667fd8d45..5e2e85b3d49 100644 --- a/sys/nfs/nfs_var.h +++ b/sys/nfs/nfs_var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: nfs_var.h,v 1.24 2007/04/11 12:18:54 thib Exp $ */ +/* $OpenBSD: nfs_var.h,v 1.25 2007/04/13 17:09:22 thib Exp $ */ /* $NetBSD: nfs_var.h,v 1.3 1996/02/18 11:53:54 fvdl Exp $ */ /* @@ -285,9 +285,6 @@ int nfs_savenickauth(struct nfsmount *, struct ucred *, int, NFSKERBKEY_T, struct mbuf **, char **, struct mbuf *); /* nfs_kq.c */ - int nfs_kqfilter(void *); void nfs_kqinit(void); -#define VN_KNOTE(vp, b) \ - KNOTE(&vp->v_selectinfo.vsi_selinfo.si_note, (b)) |