Deleted Added
full compact
vnode.h (232152) vnode.h (232317)
1/*-
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 13 unchanged lines hidden (view full) ---

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)vnode.h 8.7 (Berkeley) 2/4/94
1/*-
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 13 unchanged lines hidden (view full) ---

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)vnode.h 8.7 (Berkeley) 2/4/94
30 * $FreeBSD: head/sys/sys/vnode.h 232152 2012-02-25 10:15:41Z trociny $
30 * $FreeBSD: head/sys/sys/vnode.h 232317 2012-02-29 21:38:31Z trociny $
31 */
32
33#ifndef _SYS_VNODE_H_
34#define _SYS_VNODE_H_
35
36#include <sys/bufobj.h>
37#include <sys/queue.h>
38#include <sys/lock.h>

--- 659 unchanged lines hidden (view full) ---

698int vop_stdadvlock(struct vop_advlock_args *ap);
699int vop_stdadvlockasync(struct vop_advlockasync_args *ap);
700int vop_stdadvlockpurge(struct vop_advlockpurge_args *ap);
701int vop_stdallocate(struct vop_allocate_args *ap);
702int vop_stdpathconf(struct vop_pathconf_args *);
703int vop_stdpoll(struct vop_poll_args *);
704int vop_stdvptocnp(struct vop_vptocnp_args *ap);
705int vop_stdvptofh(struct vop_vptofh_args *ap);
31 */
32
33#ifndef _SYS_VNODE_H_
34#define _SYS_VNODE_H_
35
36#include <sys/bufobj.h>
37#include <sys/queue.h>
38#include <sys/lock.h>

--- 659 unchanged lines hidden (view full) ---

698int vop_stdadvlock(struct vop_advlock_args *ap);
699int vop_stdadvlockasync(struct vop_advlockasync_args *ap);
700int vop_stdadvlockpurge(struct vop_advlockpurge_args *ap);
701int vop_stdallocate(struct vop_allocate_args *ap);
702int vop_stdpathconf(struct vop_pathconf_args *);
703int vop_stdpoll(struct vop_poll_args *);
704int vop_stdvptocnp(struct vop_vptocnp_args *ap);
705int vop_stdvptofh(struct vop_vptofh_args *ap);
706int vop_stdunp_bind(struct vop_unp_bind_args *ap);
707int vop_stdunp_connect(struct vop_unp_connect_args *ap);
708int vop_stdunp_detach(struct vop_unp_detach_args *ap);
706int vop_eopnotsupp(struct vop_generic_args *ap);
707int vop_ebadf(struct vop_generic_args *ap);
708int vop_einval(struct vop_generic_args *ap);
709int vop_enoent(struct vop_generic_args *ap);
710int vop_enotty(struct vop_generic_args *ap);
711int vop_null(struct vop_generic_args *ap);
712int vop_panic(struct vop_generic_args *ap);
713

--- 95 unchanged lines hidden ---
709int vop_eopnotsupp(struct vop_generic_args *ap);
710int vop_ebadf(struct vop_generic_args *ap);
711int vop_einval(struct vop_generic_args *ap);
712int vop_enoent(struct vop_generic_args *ap);
713int vop_enotty(struct vop_generic_args *ap);
714int vop_null(struct vop_generic_args *ap);
715int vop_panic(struct vop_generic_args *ap);
716

--- 95 unchanged lines hidden ---