> -----Original Message-----
> From: Intel-wired-lan <intel-wired-lan-boun...@osuosl.org> On Behalf Of Kurt 
> Kanzenbach
> Sent: 17 February 2025 17:01
> To: Nguyen, Anthony L <anthony.l.ngu...@intel.com>; Kitszel, Przemyslaw 
> <przemyslaw.kits...@intel.com>
> Cc: Andrew Lunn <andrew+net...@lunn.ch>; David S. Miller 
> <da...@davemloft.net>; Eric Dumazet <eduma...@google.com>; Jakub Kicinski 
> <k...@kernel.org>; Paolo Abeni <pab...@redhat.com>; Sebastian Andrzej Siewior 
> <bige...@linutronix.de>; Damato, Joe <jdam...@fastly.com>; Gerhard Engleder 
> <gerh...@engleder-embedded.com>; intel-wired-...@lists.osuosl.org; 
> net...@vger.kernel.org; Kurt Kanzenbach <k...@linutronix.de>
> Subject: [Intel-wired-lan] [PATCH iwl-next v2 1/4] igb: Link IRQs to NAPI 
> instances
>
> Link IRQs to NAPI instances via netdev-genl API. This allows users to query 
> that information via netlink:
>
> |$ ./tools/net/ynl/pyynl/cli.py --spec 
> Documentation/netlink/specs/netdev.yaml \
> |                               --dump napi-get --json='{"ifindex": 2}'
> |[{'defer-hard-irqs': 0,
> |  'gro-flush-timeout': 0,
> |  'id': 8204,
> |  'ifindex': 2,
> |  'irq': 127,
> |  'irq-suspend-timeout': 0},
> | {'defer-hard-irqs': 0,
> |  'gro-flush-timeout': 0,
> |  'id': 8203,
> |  'ifindex': 2,
> |  'irq': 126,
> |  'irq-suspend-timeout': 0},
> | {'defer-hard-irqs': 0,
> |  'gro-flush-timeout': 0,
> |  'id': 8202,
> |  'ifindex': 2,
> |  'irq': 125,
> |  'irq-suspend-timeout': 0},
> | {'defer-hard-irqs': 0,
> |  'gro-flush-timeout': 0,
> |  'id': 8201,
> |  'ifindex': 2,
> |  'irq': 124,
> |  'irq-suspend-timeout': 0}]
> |$ cat /proc/interrupts | grep enp2s0
> |123:          0          1 IR-PCI-MSIX-0000:02:00.0   0-edge      enp2s0
> |124:          0          7 IR-PCI-MSIX-0000:02:00.0   1-edge      
> enp2s0-TxRx-0
> |125:          0          0 IR-PCI-MSIX-0000:02:00.0   2-edge      
> enp2s0-TxRx-1
> |126:          0          5 IR-PCI-MSIX-0000:02:00.0   3-edge      
> enp2s0-TxRx-2
> |127:          0          0 IR-PCI-MSIX-0000:02:00.0   4-edge      
> enp2s0-TxRx-3
>
> Reviewed-by: Joe Damato <jdam...@fastly.com>
> Signed-off-by: Kurt Kanzenbach <k...@linutronix.de>
> ---
> drivers/net/ethernet/intel/igb/igb_main.c | 3 +++
> 1 file changed, 3 insertions(+)
>

Tested-by: Rinitha S <sx.rini...@intel.com> (A Contingent worker at Intel)

Reply via email to