• Maxime Chevallier's avatar
    net: mvpp2: cls: Support steering to RSS contexts · 14134773
    Maxime Chevallier authored
    When steering to an RXQ, we can perform an extra RSS step to assign a
    queue from an RSS table.
    
    This is done by setting the RSS_EN attribute in the C2 engine. In that
    case, the RXQ that is assigned is the global RSS context id, that is
    then translated to an RSS table using the RXQ2RSS table.
    
    An example using ethtool to steer to RXQ 2 and 3 would be :
    
    ethtool -X eth0 weight 0 0 1 1 context new
    
    (This would print the allocated context id, let's say it's 1)
    
    ethtool -N eth0 flow-type udp4 dst-port 1234 context 1 loc 0
    
    The hash parameters are the ones that are globally configured for RSS :
    
    ethtool -N eth0 rx-flow-hash udp4 sdfn
    
    When an RSS context is removed while there are active classification
    rules using this context, these rules are removed.
    Signed-off-by: default avatarMaxime Chevallier <maxime.chevallier@bootlin.com>
    Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
    14134773
mvpp2_cls.c 47.2 KB