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 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 smtp.lore.kernel.org (Postfix) with ESMTPS id 54028ED7B8E for ; Tue, 14 Apr 2026 08:57:01 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 13CAF10E5B2; Tue, 14 Apr 2026 08:57:01 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="cgOkcyWG"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.18]) by gabe.freedesktop.org (Postfix) with ESMTPS id 324FD10E5AD; Tue, 14 Apr 2026 08:56:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1776157019; x=1807693019; h=date:from:to:cc:subject:message-id:references: mime-version:content-transfer-encoding:in-reply-to; bh=IAYEMAAcDhJXEJZiFeEzud0D4z3cUhDlsTxVv63RHhg=; b=cgOkcyWGN2Y19B6sTAachqJgoyqKihJ3dNDyLIpI2VX3743xUX4kBvr8 MEZuuj6saP2x0WvvkE2o6q/Ngt0ePsifTgFg04ih3FmH/Osh+nMFs/1yN arvAzIVuWfHws6EShUkci+paelE1LvyL4cJttFkZXlHKVB3//ta8mi28g sI8IQ+WKAEFjVlvakhRxs1CPe133pNsXcBB0sQAHuyQmoxjfFXGq4mJia MQGAMQESSacDoReWYQAb0ACnu0EShmAKGz+iioSqd0bTaW03eurid3pEX MvTaWtYesGI2iU2vcnq3suJXAub0GLZsGxU9Z30dqJCWG25vSKBquv9d6 Q==; X-CSE-ConnectionGUID: dm/g8kl3RHCgmfCBDdrE2A== X-CSE-MsgGUID: Tkg4u5urT9OZF6vjo4zfUA== X-IronPort-AV: E=McAfee;i="6800,10657,11758"; a="76272284" X-IronPort-AV: E=Sophos;i="6.23,179,1770624000"; d="scan'208";a="76272284" Received: from orviesa002.jf.intel.com ([10.64.159.142]) by fmvoesa112.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Apr 2026 01:56:58 -0700 X-CSE-ConnectionGUID: rMdBiQpFRCmhi2e/Bublhg== X-CSE-MsgGUID: WsDy3yaAQ4CMyzUPFCiy4g== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.23,179,1770624000"; d="scan'208";a="260461845" Received: from fpallare-mobl4.ger.corp.intel.com (HELO localhost) ([10.245.245.189]) by orviesa002-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Apr 2026 01:56:55 -0700 Date: Tue, 14 Apr 2026 10:56:52 +0200 From: Andi Shyti To: Jouni =?iso-8859-15?Q?H=F6gander?= Cc: intel-gfx@lists.freedesktop.org, intel-xe@lists.freedesktop.org, stable@vger.kernel.org, Dan Carpenter Subject: Re: [PATCH] drm/i915/psr: Init variable to avoid early exit from et alignment loop Message-ID: References: <20260413112345.88853-1-jouni.hogander@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20260413112345.88853-1-jouni.hogander@intel.com> X-BeenThere: intel-xe@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel Xe graphics driver List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-xe-bounces@lists.freedesktop.org Sender: "Intel-xe" Hi Jouni, On Mon, Apr 13, 2026 at 02:23:45PM +0300, Jouni Högander wrote: > Uninitialized boolean variable may cause unwanted exit from et alignment > loop. Fix this by initializing it as false. > > Fixes: 681e12440d8b ("drm/i915/psr: Repeat Selective Update area alignment") > Cc: # v6.9+ > Signed-off-by: Jouni Högander Reported-by: Dan Carpenter Reviewed-by: Andi Shyti Thanks, Andi