From: Kaixu Xia <kaixuxia@xxxxxxxxxxx> The trace event xfs_dquot_dqalloc does not depend on the value uq, so move it to proper place. Signed-off-by: Kaixu Xia <kaixuxia@xxxxxxxxxxx> --- fs/xfs/xfs_qm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/xfs/xfs_qm.c b/fs/xfs/xfs_qm.c index 0b09096..5569af9 100644 --- a/fs/xfs/xfs_qm.c +++ b/fs/xfs/xfs_qm.c @@ -1631,6 +1631,8 @@ struct xfs_qm_isolate { if (!XFS_IS_QUOTA_RUNNING(mp) || !XFS_IS_QUOTA_ON(mp)) return 0; + trace_xfs_dquot_dqalloc(ip); + lockflags = XFS_ILOCK_EXCL; xfs_ilock(ip, lockflags); @@ -1714,8 +1716,6 @@ struct xfs_qm_isolate { pq = xfs_qm_dqhold(ip->i_pdquot); } } - if (uq) - trace_xfs_dquot_dqalloc(ip); xfs_iunlock(ip, lockflags); if (O_udqpp) -- 1.8.3.1