summaryrefslogtreecommitdiffstats
path: root/sys/fs/unionfs/union_subr.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/fs/unionfs/union_subr.c')
-rw-r--r--sys/fs/unionfs/union_subr.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/fs/unionfs/union_subr.c b/sys/fs/unionfs/union_subr.c
index 2e74844..074958c 100644
--- a/sys/fs/unionfs/union_subr.c
+++ b/sys/fs/unionfs/union_subr.c
@@ -952,6 +952,8 @@ unionfs_vn_create_on_upper(struct vnode **vpp, struct vnode *udvp,
goto unionfs_vn_create_on_upper_free_out1;
}
vp->v_writecount++;
+ CTR3(KTR_VFS, "%s: vp %p v_writecount increased to %d", __func__, vp,
+ vp->v_writecount);
*vpp = vp;
unionfs_vn_create_on_upper_free_out1:
@@ -1087,6 +1089,8 @@ unionfs_copyfile(struct unionfs_node *unp, int docopy, struct ucred *cred,
}
VOP_CLOSE(uvp, FWRITE, cred, td);
uvp->v_writecount--;
+ CTR3(KTR_VFS, "%s: vp %p v_writecount decreased to %d", __func__, uvp,
+ uvp->v_writecount);
vn_finished_write(mp);
OpenPOWER on IntegriCloud