mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 03:04:34 +01:00
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:
parent
a6ca6dfd60
commit
9b505845a3
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user