Skip to content

Commit

Permalink
OCPBUGS-31876: Enable UDP aggregation on s390x
Browse files Browse the repository at this point in the history
Reverts the changes to disable UDP aggregation made in:
* daef1a6
* 919dba8
which specifically disable UDP aggregation on s390x.

This works now, since https://issues.redhat.com/browse/OCPBUGS-18935
is fixed.

Signed-off-by: Dominik Werle <dwerle@redhat.com>
  • Loading branch information
werled committed Apr 22, 2024
1 parent 6e245a0 commit f11f49a
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions pkg/network/ovn_kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import (
"os"
"path/filepath"
"reflect"
goruntime "runtime"
"strconv"
"strings"
"time"
Expand Down Expand Up @@ -695,11 +694,6 @@ func bootstrapOVNHyperShiftConfig(hc *hypershift.HyperShiftConfig, kubeClient cn
func getDisableUDPAggregation(cl crclient.Reader) bool {
disable := false

// Disable by default on s390x because it sometimes doesn't work there; see OCPBUGS-2532
if goruntime.GOARCH == "s390x" {
disable = true
}

cm := &corev1.ConfigMap{}
if err := cl.Get(context.TODO(), types.NamespacedName{
Namespace: "openshift-network-operator",
Expand Down

0 comments on commit f11f49a

Please sign in to comment.