From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: dma-buf: Use trace_call__##name() at guarded tracepoint call sites Date: Wed, 25 Mar 2026 07:48:30 +1000 Message-ID: In-Reply-To: <20260323160052.17528-9-vineeth@bitbyteword.org> References: <20260323160052.17528-1-vineeth@bitbyteword.org> <20260323160052.17528-9-vineeth@bitbyteword.org> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review Both conversions are correct and trivial: ```c if (trace_dma_fence_wait_start_enabled()) { rcu_read_lock(); trace_call__dma_fence_wait_start(fence); rcu_read_unlock(); } ``` The RCU read lock bracketing around the tracepoint is unrelated to the tracepoint's own internal RCU handling and remains correct. No issues. --- Generated by Claude Code Patch Reviewer