]> git.baikalelectronics.ru Git - kernel.git/commit
net: macb: Remove unnecessary alignment check for TSO
authorHarini Katakam <harini.katakam@xilinx.com>
Wed, 5 Feb 2020 12:38:11 +0000 (18:08 +0530)
committerDavid S. Miller <davem@davemloft.net>
Wed, 5 Feb 2020 13:46:03 +0000 (14:46 +0100)
commitfc3c73f45804a3c8fe7127c4f93fb6501171e0c4
tree27ce70768547c1caa4aae32337560234bd352dba
parent17c5eed489aa3eb48d422ce77ddf2238c3a7cee6
net: macb: Remove unnecessary alignment check for TSO

The IP TSO implementation does NOT require the length to be a
multiple of 8. That is only a requirement for UFO as per IP
documentation. Hence, exit macb_features_check function in the
beginning if the protocol is not UDP. Only when it is UDP,
proceed further to the alignment checks. Update comments to
reflect the same. Also remove dead code checking for protocol
TCP when calculating header length.

Fixes: ea218d5da8cd ("cadence: Add LSO support.")
Signed-off-by: Harini Katakam <harini.katakam@xilinx.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/cadence/macb_main.c