spec_fsync: don't assert that 'vp' holds the block device open. If it's

not open, there shouldn't be dirty buffers so vinvalbuf() is harmless.
This commit is contained in:
ad 2008-01-24 21:05:52 +00:00
parent 6da461f692
commit f9a31c8cd0
1 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: spec_vnops.c,v 1.112 2008/01/24 17:32:55 ad Exp $ */
/* $NetBSD: spec_vnops.c,v 1.113 2008/01/24 21:05:52 ad Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@ -65,7 +65,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: spec_vnops.c,v 1.112 2008/01/24 17:32:55 ad Exp $");
__KERNEL_RCSID(0, "$NetBSD: spec_vnops.c,v 1.113 2008/01/24 21:05:52 ad Exp $");
#include <sys/param.h>
#include <sys/proc.h>
@ -779,7 +779,6 @@ spec_fsync(void *v)
struct vnode *vp = ap->a_vp;
if (vp->v_type == VBLK) {
KASSERT(vp == vp->v_specnode->sn_dev->sd_bdevvp);
vflushbuf(vp, (ap->a_flags & FSYNC_WAIT) != 0);
}
return (0);