diff options
author | tjr <tjr@FreeBSD.org> | 2003-09-13 01:13:56 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2003-09-13 01:13:56 +0000 |
commit | 019aab94778c7a992e8d5ac7bc6ad6f4a4a7877c (patch) | |
tree | e22f3a8c3967238ad97d4f1ea830af298f05bc81 /sys/coda | |
parent | db9666a32f18e7f0c39e5bdeac64545717f0b1ba (diff) | |
download | FreeBSD-src-019aab94778c7a992e8d5ac7bc6ad6f4a4a7877c.zip FreeBSD-src-019aab94778c7a992e8d5ac7bc6ad6f4a4a7877c.tar.gz |
Move an overly verbose message under #ifdef CODA_VERBOSE.
Diffstat (limited to 'sys/coda')
-rw-r--r-- | sys/coda/coda_vfsops.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/coda/coda_vfsops.c b/sys/coda/coda_vfsops.c index fff32303..ff64429 100644 --- a/sys/coda/coda_vfsops.c +++ b/sys/coda/coda_vfsops.c @@ -253,7 +253,9 @@ coda_unmount(vfsp, mntflags, td) ASSERT_VOP_LOCKED(mi->mi_rootvp, "coda_unmount"); mi->mi_rootvp->v_vflag &= ~VV_ROOT; error = vflush(mi->mi_vfsp, 0, FORCECLOSE); +#ifdef CODA_VERBOSE printf("coda_unmount: active = %d, vflush active %d\n", active, error); +#endif error = 0; /* I'm going to take this out to allow lookups to go through. I'm * not sure it's important anyway. -- DCS 2/2/94 |