Skip to content

Commit

Permalink
unionfs: fix LINT build
Browse files Browse the repository at this point in the history
Fix a stale variable name that snuck into a tracepoint from an earlier
version of the change.

Fixes:		eb60ff1 "unionfs: rework locking scheme to only lock a single
vnode"
Reported by:	jenkins
  • Loading branch information
Jason A. Harmening authored and bsdjhb committed Oct 30, 2024
2 parents fcc3df5 + 9b50584 commit 9acb00f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sys/fs/unionfs/union_subr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1333,8 +1333,8 @@ unionfs_vn_create_on_upper(struct vnode **vpp, struct vnode *udvp,
goto unionfs_vn_create_on_upper_cleanup;
}
error = VOP_ADD_WRITECOUNT(uvp, 1);
CTR3(KTR_VFS, "%s: newvp %p v_writecount increased to %d",
__func__, newvp, newvp->v_writecount);
CTR3(KTR_VFS, "%s: vp %p v_writecount increased to %d",
__func__, uvp, uvp->v_writecount);
if (error == 0) {
*vpp = uvp;
} else {
Expand Down

0 comments on commit 9acb00f

Please sign in to comment.