From nobody Mon Feb 9 00:02:29 2026 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 38AC932AAA1; Mon, 19 Jan 2026 17:37:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768844273; cv=none; b=hRJmupoWdNurur5apg/iDP0UrNN6EApu89PsXw0Lkl0fvE4FT8Q55Y8CNfq9YLjG0G+WZqo/3+Qzp8cJzHW7HrZzax03Nuoz0mjO+S5r1tukmEDGf5CFeoheSUY24IvATSumliZH0bqfZhhUvgIGOYo06+nCKBNt0AJCQl0IbVE= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768844273; c=relaxed/simple; bh=dlkRPImrZHLGkEr79eYuSv8PXMFAfKCUT+ghYXPvzSI=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=bIVqf2F5jpFmcWoQsQC2UdaFh/YxzYoX1id0Upxtvwj3isOKaL9853tPrsr4v8qBGOym5+EgZPT8ORmdiZQgI5Hh0puygcQrgm2yyz5dGOLptFZiSLtk+cYbPEyf32ZqogA3f3px4MK931IDJkkoQcMQtXGkRKLN0GdYgoNkTeg= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=M/kSTDKp; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="M/kSTDKp" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 36C9DC116C6; Mon, 19 Jan 2026 17:37:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1768844272; bh=dlkRPImrZHLGkEr79eYuSv8PXMFAfKCUT+ghYXPvzSI=; h=Date:From:To:Cc:Subject:From; b=M/kSTDKp3ampYq2PhKsTb/fb6IKO3dW97o6YslD//iwkrR/e3BNyPHNezN+HJDeyo cmgkvXpCfHFEO+JUlUGDFAdl5YgowSqHDNpenTcLMkiFMAgoNeQvrs38oNbZQ2636u 6DZ7G3gC704N54qYlGvJu4G2lnilMEp7q1eLspa5VOxqS9Zs0t6gxGLjMnpy0rzl6c pOXKhQnLpsm4QVG5Q9SZYh869Fr7C6NELxRbyNRFk1PVn9dTA81teDj7hymKoLirQT ZGI+q6yzB6tbZThBL4VrKRmBu16qz9aUaXe97K02WC3f+0CL0Fph0ftPS2ulWmioi8 0Brm+7U2NsgBA== Date: Mon, 19 Jan 2026 17:37:48 +0000 From: Mark Brown To: Simona Vetter , Intel Graphics , DRI , Dmitry Baryshkov Cc: Thomas Zimmermann , Maxime Ripard , Linux Kernel Mailing List , Linux Next Mailing List Subject: linux-next: build failure after merge of the drm-misc tree Message-ID: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Hi all, After merging the drm-misc tree, today's linux-next build (x86_64 allmodconfig) failed like this: /tmp/next/build/drivers/gpu/drm/tests/drm_hdmi_state_helper_test.c: In func= tion 'drm_test_check_reject_hdr_infoframe_bpc_10': /tmp/next/build/drivers/gpu/drm/tests/drm_hdmi_state_helper_test.c:2926:49:= error: passing argument 6 of 'drm_property_replace_blob_from_id' makes int= eger from pointer without a cast [-Wint-conversion] 2926 | &replaced); | ^~~~~~~~~ | | | bool * {aka _Bool *} In file included from /tmp/next/build/include/drm/drm_connector.h:33, from /tmp/next/build/include/drm/drm_modes.h:33, from /tmp/next/build/include/drm/drm_crtc.h:32, from /tmp/next/build/include/drm/drm_atomic.h:31, from /tmp/next/build/drivers/gpu/drm/tests/drm_hdmi_state_= helper_test.c:7: /tmp/next/build/include/drm/drm_property.h:287:47: note: expected 'ssize_t'= {aka 'long int'} but argument is of type 'bool *' {aka '_Bool *'} 287 | ssize_t max_size, | ~~~~~~~~^~~~~~~~ /tmp/next/build/drivers/gpu/drm/tests/drm_hdmi_state_helper_test.c:2922:15:= error: too few arguments to function 'drm_property_replace_blob_from_id' 2922 | ret =3D drm_property_replace_blob_from_id(drm, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/next/build/include/drm/drm_property.h:282:5: note: declared here 282 | int drm_property_replace_blob_from_id(struct drm_device *dev, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Caused by commit 7436a87db99d5 (drm/tests: hdmi: check the infoframes behaviour) interacting with ca59e33f5a1f6 (drm/atomic: add max_size check to drm_property_replace_bl= ob_from_id()) I have applied a fixup: From 7e99cf59cfdd75f6815ab3eb0b0d8140878bcd6f Mon Sep 17 00:00:00 2001 From: Mark Brown Date: Mon, 19 Jan 2026 17:27:36 +0000 Subject: [PATCH] drm: Fix up incompatible API change Signed-off-by: Mark Brown --- drivers/gpu/drm/tests/drm_hdmi_state_helper_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/tests/drm_hdmi_state_helper_test.c b/drivers/g= pu/drm/tests/drm_hdmi_state_helper_test.c index d95786faf1817..dc1bda386387d 100644 --- a/drivers/gpu/drm/tests/drm_hdmi_state_helper_test.c +++ b/drivers/gpu/drm/tests/drm_hdmi_state_helper_test.c @@ -2921,7 +2921,7 @@ static void drm_test_check_reject_hdr_infoframe_bpc_1= 0(struct kunit *test) =20 ret =3D drm_property_replace_blob_from_id(drm, &new_conn_state->hdr_output_metadata, - hdr_blob->base.id, + hdr_blob->base.id, -1, sizeof(struct hdr_output_metadata), -1, &replaced); KUNIT_ASSERT_EQ(test, ret, 0); --=20 2.47.3