From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.ilvokhin.com (mail.ilvokhin.com [178.62.254.231]) (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 B74D93D6CBF for ; Tue, 31 Mar 2026 14:23:00 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=178.62.254.231 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774966982; cv=none; b=s+igrzzEpK5X77CQNVSZGdJ1kuhz+W5SCI4F2Jg0970xTUW/1IX9rkCkDngzgjbn2T4J9iATm0bwnfxqtzayL2SglBEDit0jAtXp2Z5wnYuTlJTh0aYlxHlMI45k8PkWMnFcLUf4/wD0foHIVwn7uA1pKAlAT4dJGLnMtzTuz6o= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774966982; c=relaxed/simple; bh=z2gi3YdBPkAKtb/H/Vf9MlNdAZk5+seUAtqBqSKDjz8=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=J9LMNPvywfhUxsoULXVtFOf/vm23w1rZtYNUFAd7suSH+h/rv55FTzn6d8FbdJyPjexSWONj53KKRqeNCOrJvTGOhtNqMTaTtvJfa15yq5KREhXfZhTYsHG6MwyEyxX1uMYfhWj6C27AKg5LHj/ABpjkXxLf42GySMpnMdoutZ8= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=ilvokhin.com; spf=pass smtp.mailfrom=ilvokhin.com; dkim=pass (1024-bit key) header.d=ilvokhin.com header.i=@ilvokhin.com header.b=CYxeIisc; arc=none smtp.client-ip=178.62.254.231 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=ilvokhin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=ilvokhin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=ilvokhin.com header.i=@ilvokhin.com header.b="CYxeIisc" Received: from shell.ilvokhin.com (shell.ilvokhin.com [138.68.190.75]) (Authenticated sender: d@ilvokhin.com) by mail.ilvokhin.com (Postfix) with ESMTPSA id 0077ABE271; Tue, 31 Mar 2026 14:22:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ilvokhin.com; s=mail; t=1774966979; bh=dXCKAUuTBFwnrWt5TBaHqn3kba8zmGPQHHmvJ6jIxCk=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=CYxeIiscZSVacFk18rKvzQqTmV/lHxqFle0g/Dk5N0abqFBtmlpqKdBTNYBm9zmI/ CwzY2rNIhWcxM7vd1OZL5Z1xEVC2pIQFHRvK5cy6128qWxNCpm740B7jspfpzUdoCv CyblONBNkBYozz8d9/DD6zJhyuYJQFVbgIvUc44k= Date: Tue, 31 Mar 2026 14:22:57 +0000 From: Dmitry Ilvokhin To: Thomas Gleixner Cc: LKML , x86@kernel.org, Michael Kelley , Radu Rendec , Jan Kiszka , Kieran Bingham , Florian Fainelli , Marc Zyngier Subject: Re: [patch V4 14/15] genirq/proc: Runtime size the chip name Message-ID: References: <20260331071453.172185305@kernel.org> <20260331072419.483417758@kernel.org> 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=us-ascii Content-Disposition: inline In-Reply-To: <20260331072419.483417758@kernel.org> On Tue, Mar 31, 2026 at 09:26:35AM +0200, Thomas Gleixner wrote: > From: Thomas Gleixner > > The chip name column in the /proc/interrupt output is 8 characters and > right aligned, which causes visual clutter due to the fixed length and the > alignment. Many interrupt chips, e.g. PCI/MSI[X] have way longer names. > > Update the length when a chip is assigned to an interrupt and utilize this > information for the output. Align it left so all chip names start at the > begin of the column. > > Update the GDB script as well. > > Signed-off-by: Thomas Gleixner Reviewed-by: Dmitry Ilvokhin