ethtool_rx_flow_rule_create takes into parameter the ethtool flow spec,
which doesn't contain the rss context id. We therefore need to extract
it ourself before parsing the ethtool rule.
The FLOW_RSS flag is only set in info->fs.flow_type, and not
info->flow_type.
Signed-off-by: Maxime Chevallier <maxime.chevallier@bootlin.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
 
        input.fs = &info->fs;
 
+       /* We need to manually set the rss_ctx, since this info isn't present
+        * in info->fs
+        */
+       if (info->fs.flow_type & FLOW_RSS)
+               input.rss_ctx = info->rss_context;
+
        ethtool_rule = ethtool_rx_flow_rule_create(&input);
        if (IS_ERR(ethtool_rule)) {
                ret = PTR_ERR(ethtool_rule);