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
9561ba5adb
commit
e90da0df92
@ -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…
x
Reference in New Issue
Block a user