From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 79A1C196C7C for ; Fri, 3 Jul 2026 01:07:25 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783040846; cv=none; b=OJLwZqHgsLvoTU0GUmj2uPUFbuE4LXfW80qIOz+j7xdtQsp/tZ1lq1o2PInd/+mk3HbdmLi4kXQf2qe+kwoHCjJcVoKrlQWnWgfoQhMmuiT6UeeMp+46Cg76cTygcEC8H5C5WwWcdnKobVeXjBz+C0RTf8LP8J3OQuBz+XU0fw0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783040846; c=relaxed/simple; bh=TBy4bhXr23lhNMTFWbpGJ8PIIdJbM0z3JZjtatbSsj8=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=uNr4wxri809qTF5ZkYWQcnr/ejilvd5E2FrZhv0+TUz2e6AylfmKfRZFU3G9fcIWrvcz5W13Ad/RyR0VGxCqGxaXBbzAzGQmUF27vAIa/ww0YDfwbYe/3Zu6OY8/RfFLcEepIXYJkt7vFj0Ok5N8/V8U9lOdzvEtauqjLWGnok8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=BW45mtE4; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="BW45mtE4" Received: by smtp.kernel.org (Postfix) with ESMTPSA id EE3791F000E9; Fri, 3 Jul 2026 01:07:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1783040845; bh=xxk4IRdkdS80Y7ozvEETiJ30SiAsseLRUpsNlm+4sOY=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=BW45mtE4H5s0tpJqRXcyn5jti6mOh3VdEy1DFWMHoNWR63ueooW7yTWytN1dGndU3 kj8Sbn2QJFBva87+DL+kUGCfJDO6IdG8HdJDFG0slK0rDhq32B9n5r7LnpVi/dDlRG 2WIGwHPa4V+udlDj8GZ+88tWi6+4fR3VXZpnNeHOfnfR+QURBy6RNcaWSQ8RwBuO30 UgyaElCenY1qVny99hWD2Gwhtlj5gv+Wsm2hJhIq3JRybonx6svogQ8lyJsjfDRIv+ 4I3DjP/4KHYMxmXg4L87U/vTJt6JuXbGjDPX/olGUVyo8MJeUk6S0rRPbKRPQGYIiv o701+E6kAtK6w== Date: Thu, 2 Jul 2026 18:07:20 -0700 From: Nathan Chancellor To: Harry Wentland , Leo Li , Rodrigo Siqueira , Alex Deucher , Christian =?iso-8859-1?Q?K=F6nig?= , Fangzhi Zuo Cc: amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, Alex Hung Subject: Re: [PATCH v2] drm/amd/display: Shorten hdmi_frl_status_polling_workqueue Message-ID: <20260703010720.GA2950778@ax162> References: <20260618-amdgpu-fix-wq_name_len-warning-v2-1-ef0e2e6f5be7@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260618-amdgpu-fix-wq_name_len-warning-v2-1-ef0e2e6f5be7@kernel.org> Ping? This is an obvious fix. Is this being ignored because of the Sashiko comments? On Thu, Jun 18, 2026 at 09:52:14AM -0700, Nathan Chancellor wrote: > There is a warning when creating the hdmi_frl_status_polling_wq > workqueue because "hdmi_frl_status_polling_workqueue" excceds > WQ_NAME_LEN: > > workqueue: name exceeds WQ_NAME_LEN. Truncating to: hdmi_frl_status_polling_workque > > Shorten the workqueue name to "hdmi_frl_status_polling_wq" like the > structure member to avoid the warning. > > Fixes: 5c9b8b27a883 ("drm/amd/display: Tie FRL support into amdgpu_dm") > Reviewed-by: Alex Hung > Signed-off-by: Nathan Chancellor > --- > Changes in v2: > - Rebase to solve conflicts with 0e967e086e75 ("drm/amd/display: Extract > connector and encoder code to amdgpu_dm_connector"). > - Pick up Alex's Reviewed-by. > - Link to v1: https://patch.msgid.link/20260604-amdgpu-fix-wq_name_len-warning-v1-1-eb5415b45b27@kernel.org > --- > drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c > index 2e74ff94dcac..881626f0f258 100644 > --- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c > +++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c > @@ -834,9 +834,9 @@ static int amdgpu_dm_init(struct amdgpu_device *adev) > } > if (adev->dm.dc->caps.max_links > 0) { > adev->dm.hdmi_frl_status_polling_wq = > - create_singlethread_workqueue("hdmi_frl_status_polling_workqueue"); > + create_singlethread_workqueue("hdmi_frl_status_polling_wq"); > if (!adev->dm.hdmi_frl_status_polling_wq) > - drm_err(adev_to_drm(adev), "failed to initialize hdmi_frl_status_polling_workqueue\n"); > + drm_err(adev_to_drm(adev), "failed to initialize hdmi_frl_status_polling_wq\n"); > } > if (dc_is_dmub_outbox_supported(adev->dm.dc)) { > init_completion(&adev->dm.dmub_aux_transfer_done); > > --- > base-commit: 991fd2cb908bf5d35a496760519442d6e9f8763d > change-id: 20260604-amdgpu-fix-wq_name_len-warning-63c8012e0c2b > > Best regards, > -- > Cheers, > Nathan > -- Cheers, Nathan