Deleted Added
full compact
vfs_export.c (44679) vfs_export.c (46381)
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.

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95
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.

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

31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)vfs_subr.c 8.31 (Berkeley) 5/26/95
39 * $Id: vfs_subr.c,v 1.188 1999/02/25 05:22:29 dillon Exp $
39 * $Id: vfs_subr.c,v 1.189 1999/03/12 02:24:56 julian Exp $
40 */
41
42/*
43 * External virtual filesystem routines
44 */
45#include "opt_ddb.h"
46
47#include <sys/param.h>

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

129int rushjob; /* number of slots to run ASAP */
130
131static int syncer_delayno = 0;
132static long syncer_mask;
133LIST_HEAD(synclist, vnode);
134static struct synclist *syncer_workitem_pending;
135
136int desiredvnodes;
40 */
41
42/*
43 * External virtual filesystem routines
44 */
45#include "opt_ddb.h"
46
47#include <sys/param.h>

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

129int rushjob; /* number of slots to run ASAP */
130
131static int syncer_delayno = 0;
132static long syncer_mask;
133LIST_HEAD(synclist, vnode);
134static struct synclist *syncer_workitem_pending;
135
136int desiredvnodes;
137SYSCTL_INT(_kern, KERN_MAXVNODES, maxvnodes, CTLFLAG_RW, &desiredvnodes, 0, "");
137SYSCTL_INT(_kern, KERN_MAXVNODES, maxvnodes, CTLFLAG_RW,
138 &desiredvnodes, 0, "Maximum number of vnodes");
138
139static void vfs_free_addrlist __P((struct netexport *nep));
140static int vfs_free_netcred __P((struct radix_node *rn, void *w));
141static int vfs_hang_addrlist __P((struct mount *mp, struct netexport *nep,
142 struct export_args *argp));
143
144/*
145 * Initialize the vnode management data structures.

--- 2774 unchanged lines hidden ---
139
140static void vfs_free_addrlist __P((struct netexport *nep));
141static int vfs_free_netcred __P((struct radix_node *rn, void *w));
142static int vfs_hang_addrlist __P((struct mount *mp, struct netexport *nep,
143 struct export_args *argp));
144
145/*
146 * Initialize the vnode management data structures.

--- 2774 unchanged lines hidden ---