Deleted Added
full compact
vfs_export.c (331722) vfs_export.c (341074)
1/*-
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95
35 */
36
37#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 * (c) UNIX System Laboratories, Inc.
5 * All or some portions of this file are derived from material licensed
6 * to the University of California by American Telephone and Telegraph
7 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8 * the permission of UNIX System Laboratories, Inc.

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

30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95
35 */
36
37#include <sys/cdefs.h>
38__FBSDID("$FreeBSD: stable/11/sys/kern/vfs_export.c 331722 2018-03-29 02:50:57Z eadler $");
38__FBSDID("$FreeBSD: stable/11/sys/kern/vfs_export.c 341074 2018-11-27 16:51:18Z markj $");
39
40#include "opt_inet.h"
41#include "opt_inet6.h"
42
43#include <sys/param.h>
39
40#include "opt_inet.h"
41#include "opt_inet6.h"
42
43#include <sys/param.h>
44#include <sys/systm.h>
44#include <sys/dirent.h>
45#include <sys/jail.h>
46#include <sys/kernel.h>
47#include <sys/lock.h>
48#include <sys/malloc.h>
49#include <sys/mbuf.h>
50#include <sys/mount.h>
51#include <sys/mutex.h>
52#include <sys/rwlock.h>
53#include <sys/refcount.h>
54#include <sys/signalvar.h>
55#include <sys/socket.h>
45#include <sys/dirent.h>
46#include <sys/jail.h>
47#include <sys/kernel.h>
48#include <sys/lock.h>
49#include <sys/malloc.h>
50#include <sys/mbuf.h>
51#include <sys/mount.h>
52#include <sys/mutex.h>
53#include <sys/rwlock.h>
54#include <sys/refcount.h>
55#include <sys/signalvar.h>
56#include <sys/socket.h>
56#include <sys/systm.h>
57#include <sys/vnode.h>
58
59#include <netinet/in.h>
60#include <net/radix.h>
61
62static MALLOC_DEFINE(M_NETADDR, "export_host", "Export host address structure");
63
64static struct radix_node_head *vfs_create_addrlist_af(

--- 456 unchanged lines hidden ---
57#include <sys/vnode.h>
58
59#include <netinet/in.h>
60#include <net/radix.h>
61
62static MALLOC_DEFINE(M_NETADDR, "export_host", "Export host address structure");
63
64static struct radix_node_head *vfs_create_addrlist_af(

--- 456 unchanged lines hidden ---