mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Only call bwillwrite() for logging to vnodes, as other fo_write() calls do.
MFC after: 1 week Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
f9c821083a
commit
8a81693ad5
1 changed files with 2 additions and 1 deletions
|
|
@ -59,7 +59,8 @@ filemon_output(struct filemon *filemon, char *msg, size_t len)
|
|||
auio.uio_td = curthread;
|
||||
auio.uio_offset = (off_t) -1;
|
||||
|
||||
bwillwrite();
|
||||
if (filemon->fp->f_type == DTYPE_VNODE)
|
||||
bwillwrite();
|
||||
|
||||
fo_write(filemon->fp, &auio, curthread->td_ucred, 0, curthread);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue