On 26/03/2017 00:50, Jakub Kicinski wrote: > On Wed, 8 Mar 2017 16:03:51 +0200, Gal Pressman wrote: >> This ethtool patch adds support to set and get the current RSS hash >> function for the device through the new hfunc mask field in the >> ethtool_rxfh struct. Kernel supported hash function names are queried >> with ETHTOOL_GSTRINGS - each string is corresponding with a bit in hfunc >> mask according to its index in the string-set. >> >> Signed-off-by: Eyal Perry <eya...@mellanox.com> >> Signed-off-by: Gal Pressman <g...@mellanox.com> >> Reviewed-by: Saeed Mahameed <sae...@mellanox.com> > Hi John, > > It seems you have applied both my earlier patch with get support and > this: > > adbaa18b9bc1 ("ethtool: Support for configurable RSS hash function") > b932835d2302 ("ethtool: print hash function with ethtool > -x|--show-rxfh-indir") > > Now we print the RSS function twice: > > RX flow hash indirection table for em4 with 4 RX ring(s): > 0: [...] > RSS hash function: toeplitz <--- from my adbaa18b9bc1 > RSS hash key: > Operation not supported > RSS hash function: <--- from this patch > toeplitz: on > xor: off > crc32: off > > Reverting my patch is probably the easiest way forward, although I find > it more concise and easier to parse in test scripts :) Hi Jakub, Nice catch!
IMHO we should keep the output from my patch, as it is more informative. This way the user can query all hash functions supported by the kernel using -x flag, before trying to change them. I think it's nicer than "guessing" what's supported and what's not :).