Deleted Added
full compact
vnode.h (198703) vnode.h (209962)
1/*-
2 * Copyright (c) 2007 Pawel Jakub Dawidek <pjd@FreeBSD.org>
3 * 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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2007 Pawel Jakub Dawidek <pjd@FreeBSD.org>
3 * 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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/cddl/compat/opensolaris/sys/vnode.h 198703 2009-10-30 23:33:06Z pjd $
26 * $FreeBSD: head/sys/cddl/compat/opensolaris/sys/vnode.h 209962 2010-07-12 23:49:04Z mm $
27 */
28
29#ifndef _OPENSOLARIS_SYS_VNODE_H_
30#define _OPENSOLARIS_SYS_VNODE_H_
31
32struct vnode;
33struct vattr;
34

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

44#include <sys/mount.h>
45#include <sys/cred.h>
46#include <sys/fcntl.h>
47#include <sys/file.h>
48#include <sys/filedesc.h>
49#include <sys/syscallsubr.h>
50
51typedef struct vop_vector vnodeops_t;
27 */
28
29#ifndef _OPENSOLARIS_SYS_VNODE_H_
30#define _OPENSOLARIS_SYS_VNODE_H_
31
32struct vnode;
33struct vattr;
34

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

44#include <sys/mount.h>
45#include <sys/cred.h>
46#include <sys/fcntl.h>
47#include <sys/file.h>
48#include <sys/filedesc.h>
49#include <sys/syscallsubr.h>
50
51typedef struct vop_vector vnodeops_t;
52#define VOP_FID VOP_VPTOFH
52#define vop_fid vop_vptofh
53#define vop_fid_args vop_vptofh_args
54#define a_fid a_fhp
55
56#define IS_XATTRDIR(dvp) (0)
57
58#define v_count v_usecount
59

--- 232 unchanged lines hidden ---
53#define vop_fid vop_vptofh
54#define vop_fid_args vop_vptofh_args
55#define a_fid a_fhp
56
57#define IS_XATTRDIR(dvp) (0)
58
59#define v_count v_usecount
60

--- 232 unchanged lines hidden ---