Deleted Added
full compact
ufsmount.h (207736) ufsmount.h (213664)
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

--- 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 * @(#)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

--- 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 * @(#)ufsmount.h 8.6 (Berkeley) 3/30/95
30 * $FreeBSD: head/sys/ufs/ufs/ufsmount.h 207736 2010-05-07 00:41:12Z mckusick $
30 * $FreeBSD: head/sys/ufs/ufs/ufsmount.h 213664 2010-10-10 07:05:47Z kib $
31 */
32
33#ifndef _UFS_UFS_UFSMOUNT_H_
34#define _UFS_UFS_UFSMOUNT_H_
35
36#include <sys/buf.h> /* XXX For struct workhead. */
37
38/*
39 * Arguments to mount UFS-based filesystems
40 */
41struct ufs_args {
42 char *fspec; /* block special device to mount */
31 */
32
33#ifndef _UFS_UFS_UFSMOUNT_H_
34#define _UFS_UFS_UFSMOUNT_H_
35
36#include <sys/buf.h> /* XXX For struct workhead. */
37
38/*
39 * Arguments to mount UFS-based filesystems
40 */
41struct ufs_args {
42 char *fspec; /* block special device to mount */
43 struct export_args export; /* network export information */
43 struct oexport_args export; /* network export information */
44};
45
46#ifdef _KERNEL
47
48#ifdef MALLOC_DECLARE
49MALLOC_DECLARE(M_UFSMNT);
50#endif
51

--- 96 unchanged lines hidden ---
44};
45
46#ifdef _KERNEL
47
48#ifdef MALLOC_DECLARE
49MALLOC_DECLARE(M_UFSMNT);
50#endif
51

--- 96 unchanged lines hidden ---