Re: [net-next v2 2/2] gve: Map NAPI instances to queues

From: Praveen Kaligineedi
Date: Tue Oct 01 2024 - 11:37:38 EST


On Mon, Sep 30, 2024 at 2:08 PM Joe Damato <jdamato@xxxxxxxxxx> wrote:
>
> Use the netdev-genl interface to map NAPI instances to queues so that
> this information is accessible to user programs via netlink.
>
> $ ./tools/net/ynl/cli.py --spec Documentation/netlink/specs/netdev.yaml \
> --dump queue-get --json='{"ifindex": 2}'
>
> [{'id': 0, 'ifindex': 2, 'napi-id': 8313, 'type': 'rx'},
> {'id': 1, 'ifindex': 2, 'napi-id': 8314, 'type': 'rx'},
> {'id': 2, 'ifindex': 2, 'napi-id': 8315, 'type': 'rx'},
> {'id': 3, 'ifindex': 2, 'napi-id': 8316, 'type': 'rx'},
> {'id': 4, 'ifindex': 2, 'napi-id': 8317, 'type': 'rx'},
> [...]
> {'id': 0, 'ifindex': 2, 'napi-id': 8297, 'type': 'tx'},
> {'id': 1, 'ifindex': 2, 'napi-id': 8298, 'type': 'tx'},
> {'id': 2, 'ifindex': 2, 'napi-id': 8299, 'type': 'tx'},
> {'id': 3, 'ifindex': 2, 'napi-id': 8300, 'type': 'tx'},
> {'id': 4, 'ifindex': 2, 'napi-id': 8301, 'type': 'tx'},
> [...]
>
> Signed-off-by: Joe Damato <jdamato@xxxxxxxxxx>

Reviewed-by: Praveen Kaligineedi <pkaligineedi@xxxxxxxxxx>