Deleted Added
full compact
ext2_mount.h (30285) ext2_mount.h (30354)
1/*
2 * Copyright (c) 1982, 1986, 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

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)ufsmount.h 8.6 (Berkeley) 3/30/95
1/*
2 * Copyright (c) 1982, 1986, 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

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)ufsmount.h 8.6 (Berkeley) 3/30/95
34 * $Id: ufsmount.h,v 1.8 1997/09/22 21:24:03 joerg Exp $
34 * $Id: ufsmount.h,v 1.9 1997/10/10 18:18:13 phk Exp $
35 */
36
37#ifndef _UFS_UFS_UFSMOUNT_H_
38#define _UFS_UFS_UFSMOUNT_H_
39
40/*
41 * Arguments to mount UFS-based filesystems
42 */

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

51struct mfs_args {
52 char *fspec; /* name to export for statfs */
53 struct export_args export; /* if exported MFSes are supported */
54 caddr_t base; /* base of file system in memory */
55 u_long size; /* size of file system */
56};
57
58#ifdef KERNEL
35 */
36
37#ifndef _UFS_UFS_UFSMOUNT_H_
38#define _UFS_UFS_UFSMOUNT_H_
39
40/*
41 * Arguments to mount UFS-based filesystems
42 */

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

51struct mfs_args {
52 char *fspec; /* name to export for statfs */
53 struct export_args export; /* if exported MFSes are supported */
54 caddr_t base; /* base of file system in memory */
55 u_long size; /* size of file system */
56};
57
58#ifdef KERNEL
59
60#ifdef MALLOC_DECLARE
61MALLOC_DECLARE(M_UFSMNT);
62#endif
63
59struct buf;
60struct inode;
61struct nameidata;
62struct timeval;
63struct ucred;
64struct uio;
65struct vnode;
66struct netexport;

--- 49 unchanged lines hidden ---
64struct buf;
65struct inode;
66struct nameidata;
67struct timeval;
68struct ucred;
69struct uio;
70struct vnode;
71struct netexport;

--- 49 unchanged lines hidden ---