net: Make RX-FCS and LRO mutually exclusive
authorGal Pressman <galp@mellanox.com>
Sun, 4 Mar 2018 12:12:04 +0000 (14:12 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 5 Mar 2018 15:25:51 +0000 (10:25 -0500)
commite6c6a92905210484a84a0cae5b013570b7a67b6f
tree2ba380e66afed15d82f3ef785f9eb0cddb575950
parente574c0eec56a746445cab3f8f7b9a0302dd101f5
net: Make RX-FCS and LRO mutually exclusive

LRO and RX-FCS offloads cannot be enabled at the same time since it is
not clear what should happen to the FCS of each coalesced packet.
The FCS is not really part of the TCP payload, hence cannot be merged
into one big packet. On the other hand, providing one big LRO packet
with one FCS contradicts the RX-FCS feature goal.

Use the fix features mechanism in order to prevent intersection of the
features and drop LRO in case RX-FCS is requested.

Enabling RX-FCS while LRO is enabled will result in:
$ ethtool -K ens6 rx-fcs on
Actual changes:
large-receive-offload: off [requested on]
rx-fcs: on

Signed-off-by: Gal Pressman <galp@mellanox.com>
Reviewed-by: Tariq Toukan <tariqt@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/dev.c