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 9ABA631E857 for ; Tue, 24 Mar 2026 19:54:53 +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=1774382093; cv=none; b=G3keQ8Ax+XY2edQS+FsoOYVUp2jrAFS+cPy4dcievGolQk7OTGg2jGOD4dkARWjkgJsp8sXEA84GLySud8svJc3wAX5LoqHV8whR4MKVPzDfgAJk69qYaRCvwRZgJS636p4zJc5jZZORoF+xACDLrQpQXNg/BTyftGVQFFY1UAM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774382093; c=relaxed/simple; bh=r+2VM6ARMZze5vmjqt07FKcXxkSeYxbZszfN7oiVY+4=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=u8nJ8DNnYmM8M5/cUARy2LmCO0LwLKEnYF1kezkpkc8Snz+80N7LFMLiLIYXbNMyPDHqX1CKIc6CIcUNCVP2wTLWgPuKlZ1XkgwUA8hx2iGwV1JTJKWl2e0FTfvQaT539Ppo8f5TzobbjYYk0YkkO/JEN6DndfQfod2aRuX7FAA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=emopohsd; 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="emopohsd" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B5581C2BCB1; Tue, 24 Mar 2026 19:54:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1774382093; bh=r+2VM6ARMZze5vmjqt07FKcXxkSeYxbZszfN7oiVY+4=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=emopohsdOfaWwEoaFz4xfEHyLWV+COwrYB/fgwmy2EhEWPdQ+twnnVbbsXdBX/UPq zz3AE6pYmIElL4IjHX4d73tiB1l39EUaKS6LcFnZnNIrlEsRiFTT0sot6tnI8zEKVG ULlRK/5El589YFweXOGaTT3TXpdPAs6WC/c3exQPc81UPpwr+YQqsmeWdQMCjr7SVS uzNx+7y0MvHCr/nNhO4fxMwQQ1JGhG1EX0+W+sHkXe5oeZLgsaHoHaIY2DitpjvtZe y9EtCLCB58FKhZ2APeKkpuONn3dyn4QPzGWHRJp8ywpQoOZB6SNYE0GYkMMtrihSHe c4jsCl3Iry75g== From: Thomas Gleixner To: Radu Rendec , LKML Cc: x86@kernel.org, Dmitry Ilvokhin , Neil Horman Subject: Re: [patch v2 04/14] x86/irq: Make irqstats array based In-Reply-To: References: <20260320131108.344376329@kernel.org> <20260320132102.297759330@kernel.org> Date: Tue, 24 Mar 2026 20:54:50 +0100 Message-ID: <874im5gfzp.ffs@tglx> 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=utf-8 Content-Transfer-Encoding: quoted-printable On Mon, Mar 23 2026 at 15:24, Radu Rendec wrote: > On Fri, 2026-03-20 at 14:21 +0100, Thomas Gleixner wrote: >> =C2=A0arch/x86/include/asm/hardirq.h=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 |=C2= =A0=C2=A0 69 +++++----- > > I believe this breaks scripts/gdb/linux/interrupts.py, particularly the > x86_show_irqstat() function, which still expects individual members in > struct irq_cpustat_t. Uurg. I did not even know this exists. Let me try to polish the snake. >> =C2=A0arch/x86/kernel/irq.c=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2= =A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 |=C2=A0 247 ++++++++++++-----------= ------------- > > Nit: This moves the description text by one more space to the left (in > addition to the one in patch 1), and now the description is no longer > aligned to the generic interrupts. Fixed.