summaryrefslogtreecommitdiffstats
path: root/sys/kern
diff options
context:
space:
mode:
authorjeff <jeff@FreeBSD.org>2003-03-03 23:37:50 +0000
committerjeff <jeff@FreeBSD.org>2003-03-03 23:37:50 +0000
commit7880d78b5504f8df1d22b8539ee31167ccd22750 (patch)
treee18824dc0b69e200df4c2140de2307a59da3bb7b /sys/kern
parent6b990c6f87f435f42f8180e31077253348b7cb54 (diff)
downloadFreeBSD-src-7880d78b5504f8df1d22b8539ee31167ccd22750.zip
FreeBSD-src-7880d78b5504f8df1d22b8539ee31167ccd22750.tar.gz
- Correct the wchan in vop_stdfsync()
This is almost what bde asked for. There is some desire to have per fs wchans still but that is difficult giving the current arrangement of the code.
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/vfs_default.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/vfs_default.c b/sys/kern/vfs_default.c
index 0edcfe0..5c843f7 100644
--- a/sys/kern/vfs_default.c
+++ b/sys/kern/vfs_default.c
@@ -773,7 +773,7 @@ loop2:
while (vp->v_numoutput) {
vp->v_iflag |= VI_BWAIT;
msleep((caddr_t)&vp->v_numoutput, VI_MTX(vp),
- PRIBIO + 1, "spfsyn", 0);
+ PRIBIO + 1, "fsync", 0);
}
if (!TAILQ_EMPTY(&vp->v_dirtyblkhd)) {
/*
OpenPOWER on IntegriCloud