Deleted Added
full compact
mount.h (138121) mount.h (138350)
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 138121 2004-11-26 19:28:39Z phk $
30 * $FreeBSD: head/sys/sys/mount.h 138350 2004-12-03 16:11:01Z phk $
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

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

559
560/*
561 * exported vnode operations
562 */
563int dounmount(struct mount *, int, struct thread *);
564int kernel_mount(struct iovec *, u_int, int);
565int kernel_vmount(int flags, ...);
566struct vfsconf *vfs_byname(const char *);
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

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

559
560/*
561 * exported vnode operations
562 */
563int dounmount(struct mount *, int, struct thread *);
564int kernel_mount(struct iovec *, u_int, int);
565int kernel_vmount(int flags, ...);
566struct vfsconf *vfs_byname(const char *);
567struct vfsconf *vfs_byname_kld(const char *, struct thread *td, int *);
567void vfs_event_signal(fsid_t *, u_int32_t, intptr_t);
568int vfs_getopt(struct vfsoptlist *, const char *, void **, int *);
569int vfs_copyopt(struct vfsoptlist *, const char *, void *, int);
570int vfs_mount(struct thread *, const char *, char *, int, void *);
571int vfs_setpublicfs /* set publicly exported fs */
572 (struct mount *, struct netexport *, struct export_args *);
573int vfs_lock(struct mount *); /* lock a vfs */
574void vfs_msync(struct mount *, int);

--- 73 unchanged lines hidden ---
568void vfs_event_signal(fsid_t *, u_int32_t, intptr_t);
569int vfs_getopt(struct vfsoptlist *, const char *, void **, int *);
570int vfs_copyopt(struct vfsoptlist *, const char *, void *, int);
571int vfs_mount(struct thread *, const char *, char *, int, void *);
572int vfs_setpublicfs /* set publicly exported fs */
573 (struct mount *, struct netexport *, struct export_args *);
574int vfs_lock(struct mount *); /* lock a vfs */
575void vfs_msync(struct mount *, int);

--- 73 unchanged lines hidden ---