unionfs: fix LINT build

Fix a stale variable name that snuck into a tracepoint from an earlier
version of the change.

Fixes:		eb60ff1e "unionfs: rework locking scheme to only lock a single
vnode"
Reported by:	jenkins
This commit is contained in:
Jason A. Harmening 2024-07-12 22:38:02 -05:00
parent a6ca6dfd60
commit 9b505845a3

View File

@ -1333,8 +1333,8 @@ unionfs_vn_create_on_upper(struct vnode **vpp, struct vnode *udvp,
goto unionfs_vn_create_on_upper_cleanup; goto unionfs_vn_create_on_upper_cleanup;
} }
error = VOP_ADD_WRITECOUNT(uvp, 1); error = VOP_ADD_WRITECOUNT(uvp, 1);
CTR3(KTR_VFS, "%s: newvp %p v_writecount increased to %d", CTR3(KTR_VFS, "%s: vp %p v_writecount increased to %d",
__func__, newvp, newvp->v_writecount); __func__, uvp, uvp->v_writecount);
if (error == 0) { if (error == 0) {
*vpp = uvp; *vpp = uvp;
} else { } else {