Skip to content

Commit

Permalink
kernel - Remove buffer flush debug message
Browse files Browse the repository at this point in the history
* Remove the "dirty bufs left after final pass" debug message.  This case
  can occur normally during heavy I/O, particularly with the concurrency
  DragonFly now allows.
  • Loading branch information
Matthew Dillon committed Nov 28, 2016
1 parent a6225b5 commit 93b5485
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sys/kern/vfs_subr.c
Expand Up @@ -731,8 +731,14 @@ vfsync(struct vnode *vp, int waitfor, int passes,
((info.skippedbufs > 1) ? "s" : ""));
}
}
#if 0
/*
* This case can occur normally because vnode lock might
* not be held.
*/
if (!RB_EMPTY(&vp->v_rbdirty_tree))
kprintf("dirty bufs left after final pass\n");
#endif
break;
}
lwkt_reltoken(&vp->v_token);
Expand Down

0 comments on commit 93b5485

Please sign in to comment.