Deleted Added
full compact
portal.h (128019) portal.h (138290)
1/*
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software donated to Berkeley by
6 * Jan-Simon Pendry.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * @(#)portal.h 8.4 (Berkeley) 1/21/94
33 *
1/*
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software donated to Berkeley by
6 * Jan-Simon Pendry.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * @(#)portal.h 8.4 (Berkeley) 1/21/94
33 *
34 * $FreeBSD: head/sys/fs/portalfs/portal.h 128019 2004-04-07 20:46:16Z imp $
34 * $FreeBSD: head/sys/fs/portalfs/portal.h 138290 2004-12-01 23:16:38Z phk $
35 */
36
37struct portal_args {
38 char *pa_config; /* Config file */
39 int pa_socket; /* Socket to server */
40};
41
42struct portal_cred {

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

58 int pt_fileid; /* cookie */
59};
60
61#define VFSTOPORTAL(mp) ((struct portalmount *)((mp)->mnt_data))
62#define VTOPORTAL(vp) ((struct portalnode *)(vp)->v_data)
63
64#define PORTAL_ROOTFILEID 2
65
35 */
36
37struct portal_args {
38 char *pa_config; /* Config file */
39 int pa_socket; /* Socket to server */
40};
41
42struct portal_cred {

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

58 int pt_fileid; /* cookie */
59};
60
61#define VFSTOPORTAL(mp) ((struct portalmount *)((mp)->mnt_data))
62#define VTOPORTAL(vp) ((struct portalnode *)(vp)->v_data)
63
64#define PORTAL_ROOTFILEID 2
65
66extern vop_t **portal_vnodeop_p;
66extern struct vop_vector portal_vnodeops;
67#endif /* _KERNEL */
67#endif /* _KERNEL */