From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: Re: Re: [PATCH 6.18.y] drm/vkms: Fix ABBA deadlock in vblank disable and timer callback Date: Tue, 26 May 2026 07:07:31 +1000 Message-ID: In-Reply-To: <2026051633-skyward-parrot-cdd3@gregkh> References: <20260525131610.608273-1-w15303746062@163.com> <2026051633-skyward-parrot-cdd3@gregkh> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review *(cherry-pick of 79ae8510b5b81b9500370f89c619b50ca9c0990f)* Simple one-liner increasing the vblank wait timeout from 100ms to 1000ms: ```c - msecs_to_jiffies(100)); + msecs_to_jiffies(1000)); ``` This is needed because the vblank timer now synchronizes to the display refresh rate rather than firing ASAP. At low refresh rates (e.g., 1 Hz which some virtual displays may use), 100ms would timeout before the next vblank. The `Fixes:` tag correctly references patch 1 of this series. No issues. --- --- Generated by Claude Code Patch Reviewer