From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id BE79AC433F5 for ; Wed, 13 Oct 2021 17:36:02 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 8ECCE610EA for ; Wed, 13 Oct 2021 17:36:02 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 8ECCE610EA Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=linutronix.de Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 3AA926EA9B; Wed, 13 Oct 2021 17:35:53 +0000 (UTC) Received: from galois.linutronix.de (Galois.linutronix.de [IPv6:2a0a:51c0:0:12e:550::1]) by gabe.freedesktop.org (Postfix) with ESMTPS id DF03E6EA7B; Wed, 13 Oct 2021 17:35:51 +0000 (UTC) Date: Wed, 13 Oct 2021 19:35:48 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1634146549; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=wQMLAq54XtPtiUmi3cuCL2sgXoin4T6JNV4B+n7cIbk=; b=LAhmieBm2yE9l0Rf4YWCbCuUDgMTcgFjMnqLPTf0UoDXrSla1JdozG2L13ndkLggbtid/x vo4L0/uWQ2s63qhCTvgVaNK5RcXPrNkpL8U1vMG2bz/6bINa62Vb3qEIQg83As7HeNCFau akzmAdXNZNNgY9FVf9eYCCpbJ0wA1ZRTtSiGc9qQfEiJ7AEPWerT+IzU/zzXNs7ewp9UG+ 9oi81dWXp53ZNGtI+q+KJwwbms1gRRgZnuKLB2h6tI5bouFEUGUw0NIYQZDxTSHtEoi1O9 z9mu5V6f5kizeZUkcM9hw27o6Mroz3wqZ4rjSTVesDIKbChIIIAj+oiGhTn8nQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1634146549; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=wQMLAq54XtPtiUmi3cuCL2sgXoin4T6JNV4B+n7cIbk=; b=cKFQBr4SmGhT9xlL4dJ26JYtmbU4D56qYWVQesU7gqxEcGmRXhqoa0S0GX9mnplHv+M2BU RnFNpoPjs2LL2yBA== From: Sebastian Andrzej Siewior To: Daniel Vetter Cc: dri-devel@lists.freedesktop.org, Maarten Lankhorst , intel-gfx@lists.freedesktop.org, Maxime Ripard , Thomas Zimmermann , David Airlie , Jani Nikula , Joonas Lahtinen , Rodrigo Vivi , Thomas Gleixner Message-ID: <20211013173548.nldcwheo4t52dgvp@linutronix.de> References: <20211005065151.828922-1-bigeasy@linutronix.de> <20211013123525.5nijgyx5ivnuujes@linutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Subject: Re: [Intel-gfx] [RFC PATCH] drm: Increase DRM_OBJECT_MAX_PROPERTY by 18. X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" On 2021-10-13 14:57:34 [+0200], Daniel Vetter wrote: > Hm there's a pile of commits there, and nothing immediately jumps to > light. The thing is, 18 is likely way too much, since if e.g. we have a > single new property on a plane and that pushes over the limit on all of > them, you get iirc 3x4 already simply because we have that many planes. > > So would be good to know the actual culprit. > > Can you pls try to bisect the above range, applying the patch as a fixup > locally (without commit, that will confuse git bisect a bit I think), so > we know what/where went wrong? c7fcbf2513973 -> does not boot c7fcbf2513973 + 2f425cf5242a0 -> boots, 18 x DRM_OBJECT_MAX_PROPERTY 6f11f37459d8f -> boots, 0 x DRM_OBJECT_MAX_PROPERTY 6f11f37459d8f + 2f425cf5242a0 -> boots, 18 x DRM_OBJECT_MAX_PROPERTY > I'm still confused why this isn't showing up anywhere in our intel ci ... > > Thanks, Daniel Sebastian