Fix two small typo's in comments in the nullfs vnops code.

Submitted by:	Jille Timmermans <jille quis cx>
This commit is contained in:
Ed Schouten 2008-09-11 20:15:34 +00:00
parent 289f40c67b
commit 19c5cd6288

View File

@ -625,7 +625,7 @@ null_islocked(struct vop_islocked_args *ap)
/* /*
* There is no way to tell that someone issued remove/rmdir operation * There is no way to tell that someone issued remove/rmdir operation
* on the underlying filesystem. For now we just have to release lowevrp * on the underlying filesystem. For now we just have to release lowervp
* as soon as possible. * as soon as possible.
* *
* Note, we can't release any resources nor remove vnode from hash before * Note, we can't release any resources nor remove vnode from hash before
@ -676,7 +676,7 @@ null_reclaim(struct vop_reclaim_args *ap)
lockmgr(vp->v_vnlock, LK_EXCLUSIVE | LK_INTERLOCK, VI_MTX(vp)); lockmgr(vp->v_vnlock, LK_EXCLUSIVE | LK_INTERLOCK, VI_MTX(vp));
vput(lowervp); vput(lowervp);
} else } else
panic("null_reclaim: reclaiming an node with now lowervp"); panic("null_reclaim: reclaiming a node with no lowervp");
FREE(xp, M_NULLFSNODE); FREE(xp, M_NULLFSNODE);
return (0); return (0);