diff mbox

[ovs-dev] datapath-windows: Fix bug small bug in GRE

Message ID 1449872692-6320-1-git-send-email-aserdean@cloudbasesolutions.com
State Accepted
Headers show

Commit Message

Alin Serdean Dec. 11, 2015, 10:24 p.m. UTC
Allow GRE encapsulation to take place in the case we have a TCP payload
without LSO.

Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
---
 datapath-windows/ovsext/Gre.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Ben Pfaff Jan. 11, 2016, 5:40 p.m. UTC | #1
On Fri, Dec 11, 2015 at 10:24:49PM +0000, Alin Serdean wrote:
> Allow GRE encapsulation to take place in the case we have a TCP payload
> without LSO.
> 
> Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>

Thanks, applied to master and branch-2.5.
diff mbox

Patch

diff --git a/datapath-windows/ovsext/Gre.c b/datapath-windows/ovsext/Gre.c
index 3ebfda3..5abd4a4 100644
--- a/datapath-windows/ovsext/Gre.c
+++ b/datapath-windows/ovsext/Gre.c
@@ -161,7 +161,6 @@  OvsDoEncapGre(POVS_VPORT_ENTRY vport,
             default:
                 OVS_LOG_ERROR("Unknown LSO transmit type:%d",
                               tsoInfo.Transmit.Type);
-                return NDIS_STATUS_FAILURE;
         }
         OVS_LOG_TRACE("MSS %u packet len %u", mss,
                       packetLength);