Adjust for ktrace/lwp changes.

This commit is contained in:
thorpej 2003-06-29 02:16:59 +00:00
parent 1966c13215
commit 3a56e3ea7e
6 changed files with 18 additions and 18 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: coda_vfsops.c,v 1.23 2003/06/28 14:21:15 darrenr Exp $ */
/* $NetBSD: coda_vfsops.c,v 1.24 2003/06/29 02:17:00 thorpej Exp $ */
/*
*
@ -45,7 +45,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: coda_vfsops.c,v 1.23 2003/06/28 14:21:15 darrenr Exp $");
__KERNEL_RCSID(0, "$NetBSD: coda_vfsops.c,v 1.24 2003/06/29 02:17:00 thorpej Exp $");
#ifdef _LKM
#define NVCODA 4
@ -268,7 +268,7 @@ coda_mount(vfsp, path, data, ndp, l)
MARK_INT_SAT(CODA_MOUNT_STATS);
return set_statfs_info("/coda", UIO_SYSSPACE, "CODA", UIO_SYSSPACE, vfsp,
p);
l);
}
int

View File

@ -1,4 +1,4 @@
/* $NetBSD: fdesc_vfsops.c,v 1.40 2003/06/28 14:22:01 darrenr Exp $ */
/* $NetBSD: fdesc_vfsops.c,v 1.41 2003/06/29 02:16:59 thorpej Exp $ */
/*
* Copyright (c) 1992, 1993, 1995
@ -45,7 +45,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: fdesc_vfsops.c,v 1.40 2003/06/28 14:22:01 darrenr Exp $");
__KERNEL_RCSID(0, "$NetBSD: fdesc_vfsops.c,v 1.41 2003/06/29 02:16:59 thorpej Exp $");
#if defined(_KERNEL_OPT)
#include "opt_compat_netbsd.h"
@ -117,7 +117,7 @@ fdesc_mount(mp, path, data, ndp, l)
vfs_getnewfsid(mp);
error = set_statfs_info(path, UIO_USERSPACE, "fdesc", UIO_SYSSPACE,
mp, p);
mp, l);
VOP_UNLOCK(rvp, 0);
return error;
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: null_vfsops.c,v 1.40 2003/06/28 14:22:03 darrenr Exp $ */
/* $NetBSD: null_vfsops.c,v 1.41 2003/06/29 02:16:59 thorpej Exp $ */
/*
* Copyright (c) 1999 National Aeronautics & Space Administration
@ -78,7 +78,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: null_vfsops.c,v 1.40 2003/06/28 14:22:03 darrenr Exp $");
__KERNEL_RCSID(0, "$NetBSD: null_vfsops.c,v 1.41 2003/06/29 02:16:59 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -210,7 +210,7 @@ nullfs_mount(mp, path, data, ndp, l)
nmp->nullm_rootvp = vp;
error = set_statfs_info(path, UIO_USERSPACE, args.la.target,
UIO_USERSPACE, mp, p);
UIO_USERSPACE, mp, l);
#ifdef NULLFS_DIAGNOSTIC
printf("nullfs_mount: lower %s, alias at %s\n",
mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname);

View File

@ -1,4 +1,4 @@
/* $NetBSD: overlay_vfsops.c,v 1.14 2003/06/28 14:22:03 darrenr Exp $ */
/* $NetBSD: overlay_vfsops.c,v 1.15 2003/06/29 02:16:59 thorpej Exp $ */
/*
* Copyright (c) 1999, 2000 National Aeronautics & Space Administration
@ -78,7 +78,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: overlay_vfsops.c,v 1.14 2003/06/28 14:22:03 darrenr Exp $");
__KERNEL_RCSID(0, "$NetBSD: overlay_vfsops.c,v 1.15 2003/06/29 02:16:59 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -204,7 +204,7 @@ ov_mount(mp, path, data, ndp, l)
nmp->ovm_rootvp = vp;
error = set_statfs_info(path, UIO_USERSPACE, args.la.target,
UIO_USERSPACE, mp, p);
UIO_USERSPACE, mp, l);
#ifdef OVERLAYFS_DIAGNOSTIC
printf("ov_mount: lower %s, alias at %s\n",
mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname);

View File

@ -1,4 +1,4 @@
/* $NetBSD: portal_vfsops.c,v 1.34 2003/06/28 14:22:03 darrenr Exp $ */
/* $NetBSD: portal_vfsops.c,v 1.35 2003/06/29 02:17:00 thorpej Exp $ */
/*
* Copyright (c) 1992, 1993, 1995
@ -44,7 +44,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: portal_vfsops.c,v 1.34 2003/06/28 14:22:03 darrenr Exp $");
__KERNEL_RCSID(0, "$NetBSD: portal_vfsops.c,v 1.35 2003/06/29 02:17:00 thorpej Exp $");
#if defined(_KERNEL_OPT)
#include "opt_compat_netbsd.h"
@ -167,7 +167,7 @@ portal_mount(mp, path, data, ndp, l)
vfs_getnewfsid(mp);
return set_statfs_info(path, UIO_USERSPACE, args.pa_config,
UIO_USERSPACE, mp, p);
UIO_USERSPACE, mp, l);
}
int

View File

@ -1,4 +1,4 @@
/* $NetBSD: umap_vfsops.c,v 1.37 2003/06/28 14:22:05 darrenr Exp $ */
/* $NetBSD: umap_vfsops.c,v 1.38 2003/06/29 02:17:00 thorpej Exp $ */
/*
* Copyright (c) 1992, 1993
@ -45,7 +45,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: umap_vfsops.c,v 1.37 2003/06/28 14:22:05 darrenr Exp $");
__KERNEL_RCSID(0, "$NetBSD: umap_vfsops.c,v 1.38 2003/06/29 02:17:00 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -233,7 +233,7 @@ umapfs_mount(mp, path, data, ndp, l)
amp->umapm_rootvp = vp;
error = set_statfs_info(path, UIO_USERSPACE, args.umap_target,
UIO_USERSPACE, mp, p);
UIO_USERSPACE, mp, l);
#ifdef UMAPFS_DIAGNOSTIC
printf("umapfs_mount: lower %s, alias at %s\n",
mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname);