Deleted Added
full compact
pseudofs.h (230132) pseudofs.h (230249)
1/*-
2 * Copyright (c) 2001 Dag-Erling Co��dan Sm��rgrav
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

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

20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
1/*-
2 * Copyright (c) 2001 Dag-Erling Co��dan Sm��rgrav
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

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

20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * $FreeBSD: head/sys/fs/pseudofs/pseudofs.h 230132 2012-01-15 13:23:18Z uqs $
28 * $FreeBSD: head/sys/fs/pseudofs/pseudofs.h 230249 2012-01-17 01:08:01Z mckusick $
29 */
30
31#ifndef _PSEUDOFS_H_INCLUDED
32#define _PSEUDOFS_H_INCLUDED
33
34/*
35 * Opaque structures
36 */

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

237 struct pfs_node *pn_nodes; /* (o) */
238 struct pfs_node *pn_next; /* (p) */
239};
240
241/*
242 * VFS interface
243 */
244int pfs_mount (struct pfs_info *pi, struct mount *mp);
29 */
30
31#ifndef _PSEUDOFS_H_INCLUDED
32#define _PSEUDOFS_H_INCLUDED
33
34/*
35 * Opaque structures
36 */

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

237 struct pfs_node *pn_nodes; /* (o) */
238 struct pfs_node *pn_next; /* (p) */
239};
240
241/*
242 * VFS interface
243 */
244int pfs_mount (struct pfs_info *pi, struct mount *mp);
245int pfs_cmount (struct mntarg *ma, void *data, int flags);
245int pfs_cmount (struct mntarg *ma, void *data, uint64_t flags);
246int pfs_unmount (struct mount *mp, int mntflags);
247int pfs_root (struct mount *mp, int flags,
248 struct vnode **vpp);
249int pfs_statfs (struct mount *mp, struct statfs *sbp);
250int pfs_init (struct pfs_info *pi, struct vfsconf *vfc);
251int pfs_uninit (struct pfs_info *pi, struct vfsconf *vfc);
252
253/*

--- 57 unchanged lines hidden ---
246int pfs_unmount (struct mount *mp, int mntflags);
247int pfs_root (struct mount *mp, int flags,
248 struct vnode **vpp);
249int pfs_statfs (struct mount *mp, struct statfs *sbp);
250int pfs_init (struct pfs_info *pi, struct vfsconf *vfc);
251int pfs_uninit (struct pfs_info *pi, struct vfsconf *vfc);
252
253/*

--- 57 unchanged lines hidden ---