Skip to content

Commit 4dfb02d

Browse files
author
Darrick J. Wong
committed
xfs: fix mismerged tracepoints
At some point in between sending this patch to the list and merging it into for-next, the tracepoints got all mixed up because I've over-reliant on automated tools not sucking. The end result is that the tracepoints are all wrong, so fix them. Signed-off-by: Darrick J. Wong <djwong@kernel.org>
1 parent e2e63b0 commit 4dfb02d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

fs/xfs/libxfs/xfs_alloc.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3413,7 +3413,7 @@ xfs_alloc_vextent_start_ag(
34133413
args->agno = NULLAGNUMBER;
34143414
args->agbno = NULLAGBLOCK;
34153415

3416-
trace_xfs_alloc_vextent_first_ag(args);
3416+
trace_xfs_alloc_vextent_start_ag(args);
34173417

34183418
error = xfs_alloc_vextent_check_args(args, target, &minimum_agno);
34193419
if (error) {
@@ -3466,7 +3466,7 @@ xfs_alloc_vextent_first_ag(
34663466
args->agno = NULLAGNUMBER;
34673467
args->agbno = NULLAGBLOCK;
34683468

3469-
trace_xfs_alloc_vextent_start_ag(args);
3469+
trace_xfs_alloc_vextent_first_ag(args);
34703470

34713471
error = xfs_alloc_vextent_check_args(args, target, &minimum_agno);
34723472
if (error) {
@@ -3500,7 +3500,7 @@ xfs_alloc_vextent_exact_bno(
35003500
args->agno = XFS_FSB_TO_AGNO(mp, target);
35013501
args->agbno = XFS_FSB_TO_AGBNO(mp, target);
35023502

3503-
trace_xfs_alloc_vextent_near_bno(args);
3503+
trace_xfs_alloc_vextent_exact_bno(args);
35043504

35053505
error = xfs_alloc_vextent_check_args(args, target, &minimum_agno);
35063506
if (error) {
@@ -3538,7 +3538,7 @@ xfs_alloc_vextent_near_bno(
35383538
args->agno = XFS_FSB_TO_AGNO(mp, target);
35393539
args->agbno = XFS_FSB_TO_AGBNO(mp, target);
35403540

3541-
trace_xfs_alloc_vextent_exact_bno(args);
3541+
trace_xfs_alloc_vextent_near_bno(args);
35423542

35433543
error = xfs_alloc_vextent_check_args(args, target, &minimum_agno);
35443544
if (error) {

0 commit comments

Comments
 (0)