Skip to content

Commit

Permalink
Update go.mod and go.sum to latest version from networkservicemesh/sd…
Browse files Browse the repository at this point in the history
…k-vpp@main

PR link: networkservicemesh/sdk-vpp#452

Commit: 7958db6
Author: Ed Warnicke
Date: 2021-11-22 09:09:20 -0600
Message:
  - Fix for mtu issues with kernelvethpair (#452)
This *probably* fixes:
networkservicemesh/sdk#1148

The underlying issue was that the end of the vethpair to which
VPP was attaching with afpacket was not getting its MTU set correctly.
As a result, if an oversized packet was sent over it, it would be fragmented
by the kernel to a size that matches the mtu on the end of the veth pair
that was in the NSC network namespace.

The resulting packet would *still* be to large for the MTU of the end of the
vethpair attached to the VPP instance, and would be dropped there.

The second fragment, being smaller, would be smaller than the MTU of the
end of the vethpair to which VPP was attached with af-packet, and so get
through.

Signed-off-by: NSMBot <[email protected]>
  • Loading branch information
NSMBot committed Nov 22, 2021
1 parent 44edd26 commit 39c931d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require (
github.com/kelseyhightower/envconfig v1.4.0
github.com/networkservicemesh/api v1.0.1-0.20211110183123-3038992da61a
github.com/networkservicemesh/sdk v0.5.1-0.20211119122624-518ed724f8c6
github.com/networkservicemesh/sdk-vpp v0.0.0-20211122102654-9e624acf3393
github.com/networkservicemesh/sdk-vpp v0.0.0-20211122150920-7958db6def8c
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.8.1
github.com/spiffe/go-spiffe/v2 v2.0.0-beta.6
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ github.com/networkservicemesh/api v1.0.1-0.20211110183123-3038992da61a/go.mod h1
github.com/networkservicemesh/sdk v0.5.1-0.20211119122624-518ed724f8c6 h1:mVSWrUHcCPo6Q5PEuykLCP/Zi1xV940ldS2XXq7tmRU=
github.com/networkservicemesh/sdk v0.5.1-0.20211119122624-518ed724f8c6/go.mod h1:9ZCaoauLu+52PLj/BXnYH5w9Pk9jdhaeMA14zb0PUxA=
github.com/networkservicemesh/sdk-kernel v0.0.0-20211122102352-6faea432d568/go.mod h1:sDxemuiJE/VJIMNvj51Y5PFLoyBlQfz2sX7wmwe8aEQ=
github.com/networkservicemesh/sdk-vpp v0.0.0-20211122102654-9e624acf3393 h1:QBpdC156YrJvwJsHoTt52D9dGYIMJR4T0/hMmkU3Cbo=
github.com/networkservicemesh/sdk-vpp v0.0.0-20211122102654-9e624acf3393/go.mod h1:4Dg9ZW9JSIKVfRHr6JNFkJBhJ0YWIbbmXpXgpuSaXDk=
github.com/networkservicemesh/sdk-vpp v0.0.0-20211122150920-7958db6def8c h1:us9NuzGJiga806TcW1HRiJEqppuwy59ya4LDi01wdT0=
github.com/networkservicemesh/sdk-vpp v0.0.0-20211122150920-7958db6def8c/go.mod h1:4Dg9ZW9JSIKVfRHr6JNFkJBhJ0YWIbbmXpXgpuSaXDk=
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs=
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo=
Expand Down

0 comments on commit 39c931d

Please sign in to comment.