From: Filipe Manana Date: Fri, 17 Apr 2026 16:33:34 +0000 (+0100) Subject: btrfs: remove call to transaction commit trace in warn_about_uncommitted_trans() X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=fc5ed6652ded75c4d8f1d1feb038b1314039b9af;p=thirdparty%2Flinux.git btrfs: remove call to transaction commit trace in warn_about_uncommitted_trans() We are not committing a transaction there, plus in subsequent patches we want to change the argument for the trace event to be a transaction handle instead of fs_info and in this context we don't have a transaction handle (struct btrfs_trans_handle, only a struct btrfs_transaction). So remove the call to the trace point. Reviewed-by: Johannes Thumshirn Signed-off-by: Filipe Manana Signed-off-by: David Sterba --- diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c index 982df3e313119..62ef5ba69d372 100644 --- a/fs/btrfs/disk-io.c +++ b/fs/btrfs/disk-io.c @@ -4285,7 +4285,6 @@ static void warn_about_uncommitted_trans(struct btrfs_fs_info *fs_info) list_del_init(&trans->list); btrfs_put_transaction(trans); - trace_btrfs_transaction_commit(fs_info); } ASSERT(!found); }