Deleted Added
full compact
mount.h (131593) mount.h (131691)
1/*
2 * Copyright (c) 1989, 1991, 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 * @(#)mount.h 8.21 (Berkeley) 5/20/95
1/*
2 * Copyright (c) 1989, 1991, 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 * @(#)mount.h 8.21 (Berkeley) 5/20/95
30 * $FreeBSD: head/sys/sys/mount.h 131593 2004-07-04 20:21:58Z alfred $
30 * $FreeBSD: head/sys/sys/mount.h 131691 2004-07-06 09:12:03Z alfred $
31 */
32
33#ifndef _SYS_MOUNT_H_
34#define _SYS_MOUNT_H_
35
36#include <sys/ucred.h>
37#include <sys/queue.h>
38#ifdef _KERNEL

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

549extern char *mountrootfsname;
550
551/*
552 * exported vnode operations
553 */
554int dounmount(struct mount *, int, struct thread *);
555int kernel_mount(struct iovec *, u_int, int);
556int kernel_vmount(int flags, ...);
31 */
32
33#ifndef _SYS_MOUNT_H_
34#define _SYS_MOUNT_H_
35
36#include <sys/ucred.h>
37#include <sys/queue.h>
38#ifdef _KERNEL

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

549extern char *mountrootfsname;
550
551/*
552 * exported vnode operations
553 */
554int dounmount(struct mount *, int, struct thread *);
555int kernel_mount(struct iovec *, u_int, int);
556int kernel_vmount(int flags, ...);
557void vfs_event_signal(fsid_t *, u_int32_t, void *);
557void vfs_event_signal(fsid_t *, u_int32_t, intptr_t);
558int vfs_getopt(struct vfsoptlist *, const char *, void **, int *);
559int vfs_copyopt(struct vfsoptlist *, const char *, void *, int);
560int vfs_mount(struct thread *, const char *, char *, int, void *);
561int vfs_nmount(struct thread *, int, struct uio *);
562int vfs_setpublicfs /* set publicly exported fs */
563 (struct mount *, struct netexport *, struct export_args *);
564int vfs_lock(struct mount *); /* lock a vfs */
565void vfs_msync(struct mount *, int);

--- 73 unchanged lines hidden ---
558int vfs_getopt(struct vfsoptlist *, const char *, void **, int *);
559int vfs_copyopt(struct vfsoptlist *, const char *, void *, int);
560int vfs_mount(struct thread *, const char *, char *, int, void *);
561int vfs_nmount(struct thread *, int, struct uio *);
562int vfs_setpublicfs /* set publicly exported fs */
563 (struct mount *, struct netexport *, struct export_args *);
564int vfs_lock(struct mount *); /* lock a vfs */
565void vfs_msync(struct mount *, int);

--- 73 unchanged lines hidden ---