Message ID | 20240810053728.2757709-12-kuba@kernel.org (mailing list archive) |
---|---|
State | Accepted |
Commit | 8ad3be135212a99fe16961de0e6d7d0ddd8268a2 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | ethtool: rss: driver tweaks and netlink context dumps | expand |
On Sat, 10 Aug 2024 at 06:41, Jakub Kicinski <kuba@kernel.org> 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> Reviewed-by: Donald Hunter <donald.hunter@gmail.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(+)