Message ID | 20240806193317.1491822-12-kuba@kernel.org (mailing list archive) |
---|---|
State | Superseded |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | ethtool: rss: driver tweaks and netlink context dumps | expand |
On Tue, Aug 06, 2024 at 12:33:16PM -0700, Jakub Kicinski wrote: > Indirection table is dumped as a raw u32 array, decode it. > It's tempting to decode hash key, too, but it is an actual > bitstream, so leave it be for now. > > Signed-off-by: Jakub Kicinski <kuba@kernel.org> > --- > Documentation/netlink/specs/ethtool.yaml | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/Documentation/netlink/specs/ethtool.yaml b/Documentation/netlink/specs/ethtool.yaml > index 4c2334c213b0..1bbeaba5c644 100644 > --- a/Documentation/netlink/specs/ethtool.yaml > +++ b/Documentation/netlink/specs/ethtool.yaml > @@ -1022,6 +1022,7 @@ doc: Partial family for Ethtool Netlink. > - > name: indir > type: binary > + sub-type: u32 > - > name: hkey > type: binary > -- > 2.45.2 > Reviewed-by: Joe Damato <jdamato@fastly.com>
diff --git a/Documentation/netlink/specs/ethtool.yaml b/Documentation/netlink/specs/ethtool.yaml index 4c2334c213b0..1bbeaba5c644 100644 --- a/Documentation/netlink/specs/ethtool.yaml +++ b/Documentation/netlink/specs/ethtool.yaml @@ -1022,6 +1022,7 @@ doc: Partial family for Ethtool Netlink. - name: indir type: binary + sub-type: u32 - name: hkey type: binary
Indirection table is dumped as a raw u32 array, decode it. It's tempting to decode hash key, too, but it is an actual bitstream, so leave it be for now. Signed-off-by: Jakub Kicinski <kuba@kernel.org> --- Documentation/netlink/specs/ethtool.yaml | 1 + 1 file changed, 1 insertion(+)