Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cilium: Improve IPv6 BIG TCP probing #26303

Merged
merged 2 commits into from
Jun 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -272,4 +272,4 @@ replace (
sigs.k8s.io/controller-tools => github.com/cilium/controller-tools v0.6.2
)

replace github.com/vishvananda/netlink => github.com/cilium/netlink v1.0.1-0.20230615174352-7b1c17bf5e9e
replace github.com/vishvananda/netlink => github.com/cilium/netlink v1.0.1-0.20230616101939-19dab5b7a180
4 changes: 2 additions & 2 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/datapath/linux/bigtcp/bigtcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func haveIPv6MaxSize() bool {
if err != nil {
return false
}
if link.Attrs().GROMaxSize > 0 && link.Attrs().GSOMaxSize > 0 {
if link.Attrs().TSOMaxSize > 0 {
return true
}
return false
Expand Down
2 changes: 2 additions & 0 deletions vendor/github.com/vishvananda/netlink/link.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions vendor/github.com/vishvananda/netlink/link_linux.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -916,7 +916,7 @@ github.com/tklauser/go-sysconf
# github.com/tklauser/numcpus v0.6.0
## explicit; go 1.13
github.com/tklauser/numcpus
# github.com/vishvananda/netlink v1.2.1-beta.2.0.20230420174744-55c8b9515a01 => github.com/cilium/netlink v1.0.1-0.20230615174352-7b1c17bf5e9e
# github.com/vishvananda/netlink v1.2.1-beta.2.0.20230420174744-55c8b9515a01 => github.com/cilium/netlink v1.0.1-0.20230616101939-19dab5b7a180
## explicit; go 1.12
github.com/vishvananda/netlink
github.com/vishvananda/netlink/nl
Expand Down Expand Up @@ -1833,4 +1833,4 @@ sigs.k8s.io/yaml
# go.universe.tf/metallb => github.com/cilium/metallb v0.1.1-0.20220829170633-5d7dfb1129f7
# k8s.io/client-go => github.com/cilium/client-go v0.27.2-fix
# sigs.k8s.io/controller-tools => github.com/cilium/controller-tools v0.6.2
# github.com/vishvananda/netlink => github.com/cilium/netlink v1.0.1-0.20230615174352-7b1c17bf5e9e
# github.com/vishvananda/netlink => github.com/cilium/netlink v1.0.1-0.20230616101939-19dab5b7a180