From mboxrd@z Thu Jan 1 00:00:00 1970 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 830E184A35; Tue, 15 Jul 2025 13:42:08 +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=1752586928; cv=none; b=CXJbo673W5dr3MoqHtrrhzD80HPOxpCWjY9zaqXXic731S0XoHUpML9uzIqJ0iIUWIUeULjg6EDHE+HZFmbMSxkvOZsKQYaoHMyW8YEhHtkQeAlivIEQYCZS1A1GqaIEfL8f2P0j7EdPbp45emxkuZowQsgPixSfROsgB3nZU7w= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1752586928; c=relaxed/simple; bh=QwV/iPneJSSRo+a+qPMu2wHqio/1iES4CdYtPP/ZKR4=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=oVI4+csrycovWDjQaI4hx9EyI6jyhxMEOAYRm/OuLoD7z69j2fdUfj3x4t8rgGMcUscifbnXOi5Auacf1AVxPNRnULLrrmbLukWvvdAIhcG+/nisi24FN9d89FOI78vCj/49TTG6XGsweGwyTZoeQSIdr573FFeNkVR/3PotkVc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=vlugcJ87; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="vlugcJ87" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C0B42C4CEE3; Tue, 15 Jul 2025 13:42:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1752586928; bh=QwV/iPneJSSRo+a+qPMu2wHqio/1iES4CdYtPP/ZKR4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=vlugcJ87wBpjgRo9dQhO7oZN2nqpqbpr2tkbiPExht/K9vgWXlPqmGbAE7lKobAYZ uce7H2YwjcdZDlBt6IouHRF72kJcDvBt6tVn2QKuRYJVwmW9VQQyWHbhWIixm5Z03r HO5goEIGFL1/wryuLEJkj2bk5GUu0/O1XTlqm9Nk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Florian Fainelli , Jan Kiszka , Kieran Bingham , Andrew Morton Subject: [PATCH 6.15 102/192] scripts/gdb: fix interrupts display after MCP on x86 Date: Tue, 15 Jul 2025 15:13:17 +0200 Message-ID: <20250715130818.984649273@linuxfoundation.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20250715130814.854109770@linuxfoundation.org> References: <20250715130814.854109770@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Florian Fainelli commit 7627b459aa0737bdd62a8591a1481cda467f20e3 upstream. The text line would not be appended to as it should have, it should have been a '+=' but ended up being a '==', fix that. Link: https://lkml.kernel.org/r/20250623164153.746359-1-florian.fainelli@broadcom.com Fixes: b0969d7687a7 ("scripts/gdb: print interrupts") Signed-off-by: Florian Fainelli Cc: Jan Kiszka Cc: Kieran Bingham Cc: Signed-off-by: Andrew Morton Signed-off-by: Greg Kroah-Hartman --- scripts/gdb/linux/interrupts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/scripts/gdb/linux/interrupts.py +++ b/scripts/gdb/linux/interrupts.py @@ -142,7 +142,7 @@ def x86_show_interupts(prec): if constants.LX_CONFIG_X86_MCE: text += x86_show_mce(prec, "&mce_exception_count", "MCE", "Machine check exceptions") - text == x86_show_mce(prec, "&mce_poll_count", "MCP", "Machine check polls") + text += x86_show_mce(prec, "&mce_poll_count", "MCP", "Machine check polls") text += show_irq_err_count(prec)