diff options
| author | Justin T. Gibbs <gibbs@FreeBSD.org> | 1995-01-04 23:48:04 +0000 |
|---|---|---|
| committer | Justin T. Gibbs <gibbs@FreeBSD.org> | 1995-01-04 23:48:04 +0000 |
| commit | 61acca9f2faa35b42aebe2517f102edf1491c979 (patch) | |
| tree | 8fc2fde69f99f1828c80b2c32f4dbda75040d31b | |
| parent | 1a451e33ef71a312ed8a136ef12f3224d3a61ff1 (diff) | |
Notes
| -rw-r--r-- | sys/ufs/ufs/ufs_inode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/ufs/ufs/ufs_inode.c b/sys/ufs/ufs/ufs_inode.c index 8c2d07d7f6ce..c3e4c51e4f29 100644 --- a/sys/ufs/ufs/ufs_inode.c +++ b/sys/ufs/ufs/ufs_inode.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)ufs_inode.c 8.4 (Berkeley) 1/21/94 - * $Id: ufs_inode.c,v 1.4 1994/10/08 06:57:24 phk Exp $ + * $Id: ufs_inode.c,v 1.5 1994/10/15 04:08:44 ache Exp $ */ #include <sys/param.h> @@ -88,7 +88,7 @@ ufs_inactive(ap) int mode, error; if (prtactive && vp->v_usecount != 0) - vprint("ffs_inactive: pushing active", vp); + vprint("ufs_inactive: pushing active", vp); /* Get rid of inodes related to stale file handles. */ if (ip->i_mode == 0) { @@ -100,7 +100,7 @@ ufs_inactive(ap) error = 0; #ifdef DIAGNOSTIC if (VOP_ISLOCKED(vp)) - panic("ffs_inactive: locked inode"); + panic("ufs_inactive: locked inode"); if (curproc) ip->i_lockholder = curproc->p_pid; else |
