mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 16:50:25 -04:00
Fix argument ordering in vn_printf().
MFC after: 3 days
This commit is contained in:
parent
0ceadbf05d
commit
d925c2e800
1 changed files with 2 additions and 2 deletions
|
|
@ -3071,8 +3071,8 @@ vn_printf(struct vnode *vp, const char *fmt, ...)
|
|||
"cleanbuf %d dirtybuf %d\n",
|
||||
vp->v_object, vp->v_object->ref_count,
|
||||
vp->v_object->resident_page_count,
|
||||
vp->v_bufobj.bo_dirty.bv_cnt,
|
||||
vp->v_bufobj.bo_clean.bv_cnt);
|
||||
vp->v_bufobj.bo_clean.bv_cnt,
|
||||
vp->v_bufobj.bo_dirty.bv_cnt);
|
||||
printf(" ");
|
||||
lockmgr_printinfo(vp->v_vnlock);
|
||||
if (vp->v_data != NULL)
|
||||
|
|
|
|||
Loading…
Reference in a new issue