mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
vfs: hide the getvnode NULL mp message behind DIAGNOSTIC
Since crossmp vnode changes the message was being printed on each boot. Reported by: trasz Discussed with: kib
This commit is contained in:
parent
3111723c09
commit
067115e050
1 changed files with 4 additions and 2 deletions
|
|
@ -1489,12 +1489,14 @@ alloc:
|
|||
vp->v_op = vops;
|
||||
v_init_counters(vp);
|
||||
vp->v_bufobj.bo_ops = &buf_ops_bio;
|
||||
#ifdef DIAGNOSTIC
|
||||
if (mp == NULL && vops != &dead_vnodeops)
|
||||
printf("NULL mp in getnewvnode()\n");
|
||||
#endif
|
||||
#ifdef MAC
|
||||
mac_vnode_init(vp);
|
||||
if (mp != NULL && (mp->mnt_flag & MNT_MULTILABEL) == 0)
|
||||
mac_vnode_associate_singlelabel(mp, vp);
|
||||
else if (mp == NULL && vops != &dead_vnodeops)
|
||||
printf("NULL mp in getnewvnode()\n");
|
||||
#endif
|
||||
if (mp != NULL) {
|
||||
vp->v_bufobj.bo_bsize = mp->mnt_stat.f_iosize;
|
||||
|
|
|
|||
Loading…
Reference in a new issue