vpp is not logically passed in IN with lookup, so INOUT -> OUT.

No functional change, but consistent with the rest.
This commit is contained in:
pooka 2008-11-15 19:08:12 +00:00
parent a597e786dd
commit e0a026a434

View File

@ -1,4 +1,4 @@
# $NetBSD: vnode_if.src,v 1.57 2008/01/25 14:32:15 ad Exp $
# $NetBSD: vnode_if.src,v 1.58 2008/11/15 19:08:12 pooka Exp $
#
# Copyright (c) 1992, 1993
# The Regents of the University of California. All rights reserved.
@ -82,7 +82,7 @@
#
vop_lookup {
IN struct vnode *dvp;
INOUT WILLMAKE struct vnode **vpp;
OUT WILLMAKE struct vnode **vpp;
IN struct componentname *cnp;
};