Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "datapath: Avoid null deref when GSO is for verifying header i…
…ntegrity only." This reverts commit 00c7faf. In general, it should not be possible have a NULL return value from skb_gso_segment() since we're not actually trying to verify the header integrity. No other callers with similar needs have NULL checks. The actual cause of the problem was LRO packets, which OVS isn't equipped to handle. The commit 33e031e (datapath: Move LRO check from transmit to receive.) solves that problem by fixing the LRO check. In order to avoid possibly masking any other problems, this reverts the GSO check which should no longer be needed. Signed-off-by: Jesse Gross <[email protected]>
- Loading branch information