interface: disable autorate-ingress by default
authorStijn Tintel <stijn@linux-ipv6.be>
Fri, 4 Mar 2022 15:43:51 +0000 (17:43 +0200)
committerStijn Tintel <stijn@linux-ipv6.be>
Fri, 4 Mar 2022 18:22:49 +0000 (20:22 +0200)
Enabling autorate-ingress on a mostly idle host seems to result in the
ingress rate being lowered until traffic is barely possible at all.
Disable autorate-ingress by default to avoid people running into this
problem without explicitly enabling it.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
Acked-by: Felix Fietkau <nbd@nbd.name>
interface.c

index 5c2dfe89ad544a7554ab388f7265e02bd584e67a..4d53b00bed8e67ca31a07e35e936c7c534b668ad 100644 (file)
@@ -149,7 +149,7 @@ iface_config_set(struct qosify_iface *iface, struct blob_attr *attr)
        cfg->ingress = true;
        cfg->egress = true;
        cfg->host_isolate = true;
-       cfg->autorate_ingress = true;
+       cfg->autorate_ingress = false;
        cfg->nat = !iface->device;
 
        if ((cur = tb[IFACE_ATTR_BW_UP]) != NULL)