kernel: backport patches for fq_codel queue memory limit support
Use it to replace the reduction in max packets/flows Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
7bd10f9a2a
commit
17de501daa
@ -0,0 +1,182 @@
|
|||||||
|
From: Eric Dumazet <edumazet@google.com>
|
||||||
|
Date: Fri, 6 May 2016 08:55:12 -0700
|
||||||
|
Subject: [PATCH] fq_codel: add memory limitation per queue
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
|
On small embedded routers, one wants to control maximal amount of
|
||||||
|
memory used by fq_codel, instead of controlling number of packets or
|
||||||
|
bytes, since GRO/TSO make these not practical.
|
||||||
|
|
||||||
|
Assuming skb->truesize is accurate, we have to keep track of
|
||||||
|
skb->truesize sum for skbs in queue.
|
||||||
|
|
||||||
|
This patch adds a new TCA_FQ_CODEL_MEMORY_LIMIT attribute.
|
||||||
|
|
||||||
|
I chose a default value of 32 MBytes, which looks reasonable even
|
||||||
|
for heavy duty usages. (Prior fq_codel users should not be hurt
|
||||||
|
when they upgrade their kernels)
|
||||||
|
|
||||||
|
Two fields are added to tc_fq_codel_qd_stats to report :
|
||||||
|
- Current memory usage
|
||||||
|
- Number of drops caused by memory limits
|
||||||
|
|
||||||
|
# tc qd replace dev eth1 root est 1sec 4sec fq_codel memory_limit 4M
|
||||||
|
..
|
||||||
|
# tc -s -d qd sh dev eth1
|
||||||
|
qdisc fq_codel 8008: root refcnt 257 limit 10240p flows 1024
|
||||||
|
quantum 1514 target 5.0ms interval 100.0ms memory_limit 4Mb ecn
|
||||||
|
Sent 2083566791363 bytes 1376214889 pkt (dropped 4994406, overlimits 0
|
||||||
|
requeues 21705223)
|
||||||
|
rate 9841Mbit 812549pps backlog 3906120b 376p requeues 21705223
|
||||||
|
maxpacket 68130 drop_overlimit 4994406 new_flow_count 28855414
|
||||||
|
ecn_mark 0 memory_used 4190048 drop_overmemory 4994406
|
||||||
|
new_flows_len 1 old_flows_len 177
|
||||||
|
|
||||||
|
Signed-off-by: Eric Dumazet <edumazet@google.com>
|
||||||
|
Cc: Jesper Dangaard Brouer <brouer@redhat.com>
|
||||||
|
Cc: Dave Täht <dave.taht@gmail.com>
|
||||||
|
Cc: Sebastian Möller <moeller0@gmx.de>
|
||||||
|
Signed-off-by: David S. Miller <davem@davemloft.net>
|
||||||
|
---
|
||||||
|
|
||||||
|
--- a/include/uapi/linux/pkt_sched.h
|
||||||
|
+++ b/include/uapi/linux/pkt_sched.h
|
||||||
|
@@ -712,6 +712,7 @@ enum {
|
||||||
|
TCA_FQ_CODEL_QUANTUM,
|
||||||
|
TCA_FQ_CODEL_CE_THRESHOLD,
|
||||||
|
TCA_FQ_CODEL_DROP_BATCH_SIZE,
|
||||||
|
+ TCA_FQ_CODEL_MEMORY_LIMIT,
|
||||||
|
__TCA_FQ_CODEL_MAX
|
||||||
|
};
|
||||||
|
|
||||||
|
@@ -736,6 +737,8 @@ struct tc_fq_codel_qd_stats {
|
||||||
|
__u32 new_flows_len; /* count of flows in new list */
|
||||||
|
__u32 old_flows_len; /* count of flows in old list */
|
||||||
|
__u32 ce_mark; /* packets above ce_threshold */
|
||||||
|
+ __u32 memory_usage; /* in bytes */
|
||||||
|
+ __u32 drop_overmemory;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct tc_fq_codel_cl_stats {
|
||||||
|
--- a/net/sched/sch_fq_codel.c
|
||||||
|
+++ b/net/sched/sch_fq_codel.c
|
||||||
|
@@ -58,8 +58,11 @@ struct fq_codel_sched_data {
|
||||||
|
u32 perturbation; /* hash perturbation */
|
||||||
|
u32 quantum; /* psched_mtu(qdisc_dev(sch)); */
|
||||||
|
u32 drop_batch_size;
|
||||||
|
+ u32 memory_limit;
|
||||||
|
struct codel_params cparams;
|
||||||
|
struct codel_stats cstats;
|
||||||
|
+ u32 memory_usage;
|
||||||
|
+ u32 drop_overmemory;
|
||||||
|
u32 drop_overlimit;
|
||||||
|
u32 new_flow_count;
|
||||||
|
|
||||||
|
@@ -141,6 +144,7 @@ static unsigned int fq_codel_drop(struct
|
||||||
|
unsigned int maxbacklog = 0, idx = 0, i, len;
|
||||||
|
struct fq_codel_flow *flow;
|
||||||
|
unsigned int threshold;
|
||||||
|
+ unsigned int mem = 0;
|
||||||
|
|
||||||
|
/* Queue is full! Find the fat flow and drop packet(s) from it.
|
||||||
|
* This might sound expensive, but with 1024 flows, we scan
|
||||||
|
@@ -165,11 +169,13 @@ static unsigned int fq_codel_drop(struct
|
||||||
|
do {
|
||||||
|
skb = dequeue_head(flow);
|
||||||
|
len += qdisc_pkt_len(skb);
|
||||||
|
+ mem += skb->truesize;
|
||||||
|
kfree_skb(skb);
|
||||||
|
} while (++i < max_packets && len < threshold);
|
||||||
|
|
||||||
|
flow->dropped += i;
|
||||||
|
q->backlogs[idx] -= len;
|
||||||
|
+ q->memory_usage -= mem;
|
||||||
|
sch->qstats.drops += i;
|
||||||
|
sch->qstats.backlog -= len;
|
||||||
|
sch->q.qlen -= i;
|
||||||
|
@@ -191,6 +197,7 @@ static int fq_codel_enqueue(struct sk_bu
|
||||||
|
unsigned int idx, prev_backlog, prev_qlen;
|
||||||
|
struct fq_codel_flow *flow;
|
||||||
|
int uninitialized_var(ret);
|
||||||
|
+ bool memory_limited;
|
||||||
|
|
||||||
|
idx = fq_codel_classify(skb, sch, &ret);
|
||||||
|
if (idx == 0) {
|
||||||
|
@@ -213,7 +220,9 @@ static int fq_codel_enqueue(struct sk_bu
|
||||||
|
flow->deficit = q->quantum;
|
||||||
|
flow->dropped = 0;
|
||||||
|
}
|
||||||
|
- if (++sch->q.qlen <= sch->limit)
|
||||||
|
+ q->memory_usage += skb->truesize;
|
||||||
|
+ memory_limited = q->memory_usage > q->memory_limit;
|
||||||
|
+ if (++sch->q.qlen <= sch->limit && !memory_limited)
|
||||||
|
return NET_XMIT_SUCCESS;
|
||||||
|
|
||||||
|
prev_backlog = sch->qstats.backlog;
|
||||||
|
@@ -227,7 +236,8 @@ static int fq_codel_enqueue(struct sk_bu
|
||||||
|
ret = fq_codel_drop(sch, q->drop_batch_size);
|
||||||
|
|
||||||
|
q->drop_overlimit += prev_qlen - sch->q.qlen;
|
||||||
|
-
|
||||||
|
+ if (memory_limited)
|
||||||
|
+ q->drop_overmemory += prev_qlen - sch->q.qlen;
|
||||||
|
/* As we dropped packet(s), better let upper stack know this */
|
||||||
|
qdisc_tree_reduce_backlog(sch, prev_qlen - sch->q.qlen,
|
||||||
|
prev_backlog - sch->qstats.backlog);
|
||||||
|
@@ -296,6 +306,7 @@ begin:
|
||||||
|
list_del_init(&flow->flowchain);
|
||||||
|
goto begin;
|
||||||
|
}
|
||||||
|
+ q->memory_usage -= skb->truesize;
|
||||||
|
qdisc_bstats_update(sch, skb);
|
||||||
|
flow->deficit -= qdisc_pkt_len(skb);
|
||||||
|
/* We cant call qdisc_tree_reduce_backlog() if our qlen is 0,
|
||||||
|
@@ -343,6 +354,7 @@ static const struct nla_policy fq_codel_
|
||||||
|
[TCA_FQ_CODEL_QUANTUM] = { .type = NLA_U32 },
|
||||||
|
[TCA_FQ_CODEL_CE_THRESHOLD] = { .type = NLA_U32 },
|
||||||
|
[TCA_FQ_CODEL_DROP_BATCH_SIZE] = { .type = NLA_U32 },
|
||||||
|
+ [TCA_FQ_CODEL_MEMORY_LIMIT] = { .type = NLA_U32 },
|
||||||
|
};
|
||||||
|
|
||||||
|
static int fq_codel_change(struct Qdisc *sch, struct nlattr *opt)
|
||||||
|
@@ -397,7 +409,11 @@ static int fq_codel_change(struct Qdisc
|
||||||
|
if (tb[TCA_FQ_CODEL_DROP_BATCH_SIZE])
|
||||||
|
q->drop_batch_size = min(1U, nla_get_u32(tb[TCA_FQ_CODEL_DROP_BATCH_SIZE]));
|
||||||
|
|
||||||
|
- while (sch->q.qlen > sch->limit) {
|
||||||
|
+ if (tb[TCA_FQ_CODEL_MEMORY_LIMIT])
|
||||||
|
+ q->memory_limit = min(1U << 31, nla_get_u32(tb[TCA_FQ_CODEL_MEMORY_LIMIT]));
|
||||||
|
+
|
||||||
|
+ while (sch->q.qlen > sch->limit ||
|
||||||
|
+ q->memory_usage > q->memory_limit) {
|
||||||
|
struct sk_buff *skb = fq_codel_dequeue(sch);
|
||||||
|
|
||||||
|
q->cstats.drop_len += qdisc_pkt_len(skb);
|
||||||
|
@@ -442,6 +458,7 @@ static int fq_codel_init(struct Qdisc *s
|
||||||
|
|
||||||
|
sch->limit = 10*1024;
|
||||||
|
q->flows_cnt = 1024;
|
||||||
|
+ q->memory_limit = 32 << 20; /* 32 MBytes */
|
||||||
|
q->drop_batch_size = 64;
|
||||||
|
q->quantum = psched_mtu(qdisc_dev(sch));
|
||||||
|
q->perturbation = prandom_u32();
|
||||||
|
@@ -502,6 +519,8 @@ static int fq_codel_dump(struct Qdisc *s
|
||||||
|
q->quantum) ||
|
||||||
|
nla_put_u32(skb, TCA_FQ_CODEL_DROP_BATCH_SIZE,
|
||||||
|
q->drop_batch_size) ||
|
||||||
|
+ nla_put_u32(skb, TCA_FQ_CODEL_MEMORY_LIMIT,
|
||||||
|
+ q->memory_limit) ||
|
||||||
|
nla_put_u32(skb, TCA_FQ_CODEL_FLOWS,
|
||||||
|
q->flows_cnt))
|
||||||
|
goto nla_put_failure;
|
||||||
|
@@ -530,6 +549,8 @@ static int fq_codel_dump_stats(struct Qd
|
||||||
|
st.qdisc_stats.ecn_mark = q->cstats.ecn_mark;
|
||||||
|
st.qdisc_stats.new_flow_count = q->new_flow_count;
|
||||||
|
st.qdisc_stats.ce_mark = q->cstats.ce_mark;
|
||||||
|
+ st.qdisc_stats.memory_usage = q->memory_usage;
|
||||||
|
+ st.qdisc_stats.drop_overmemory = q->drop_overmemory;
|
||||||
|
|
||||||
|
list_for_each(pos, &q->new_flows)
|
||||||
|
st.qdisc_stats.new_flows_len++;
|
@ -0,0 +1,40 @@
|
|||||||
|
From: Eric Dumazet <edumazet@google.com>
|
||||||
|
Date: Sun, 15 May 2016 18:16:38 -0700
|
||||||
|
Subject: [PATCH] fq_codel: fix memory limitation drift
|
||||||
|
|
||||||
|
memory_usage must be decreased in dequeue_func(), not in
|
||||||
|
fq_codel_dequeue(), otherwise packets dropped by Codel algo
|
||||||
|
are missing this decrease.
|
||||||
|
|
||||||
|
Also we need to clear memory_usage in fq_codel_reset()
|
||||||
|
|
||||||
|
Fixes: 95b58430abe7 ("fq_codel: add memory limitation per queue")
|
||||||
|
Signed-off-by: Eric Dumazet <edumazet@google.com>
|
||||||
|
---
|
||||||
|
|
||||||
|
--- a/net/sched/sch_fq_codel.c
|
||||||
|
+++ b/net/sched/sch_fq_codel.c
|
||||||
|
@@ -259,6 +259,7 @@ static struct sk_buff *dequeue(struct co
|
||||||
|
if (flow->head) {
|
||||||
|
skb = dequeue_head(flow);
|
||||||
|
q->backlogs[flow - q->flows] -= qdisc_pkt_len(skb);
|
||||||
|
+ q->memory_usage -= skb->truesize;
|
||||||
|
sch->q.qlen--;
|
||||||
|
}
|
||||||
|
return skb;
|
||||||
|
@@ -306,7 +307,6 @@ begin:
|
||||||
|
list_del_init(&flow->flowchain);
|
||||||
|
goto begin;
|
||||||
|
}
|
||||||
|
- q->memory_usage -= skb->truesize;
|
||||||
|
qdisc_bstats_update(sch, skb);
|
||||||
|
flow->deficit -= qdisc_pkt_len(skb);
|
||||||
|
/* We cant call qdisc_tree_reduce_backlog() if our qlen is 0,
|
||||||
|
@@ -343,6 +343,7 @@ static void fq_codel_reset(struct Qdisc
|
||||||
|
}
|
||||||
|
memset(q->backlogs, 0, q->flows_cnt * sizeof(u32));
|
||||||
|
sch->q.qlen = 0;
|
||||||
|
+ q->memory_usage = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static const struct nla_policy fq_codel_policy[TCA_FQ_CODEL_MAX + 1] = {
|
@ -1,13 +1,11 @@
|
|||||||
--- a/net/sched/sch_fq_codel.c
|
--- a/net/sched/sch_fq_codel.c
|
||||||
+++ b/net/sched/sch_fq_codel.c
|
+++ b/net/sched/sch_fq_codel.c
|
||||||
@@ -440,8 +440,8 @@ static int fq_codel_init(struct Qdisc *s
|
@@ -459,7 +459,7 @@ static int fq_codel_init(struct Qdisc *s
|
||||||
struct fq_codel_sched_data *q = qdisc_priv(sch);
|
|
||||||
int i;
|
|
||||||
|
|
||||||
- sch->limit = 10*1024;
|
sch->limit = 10*1024;
|
||||||
- q->flows_cnt = 1024;
|
q->flows_cnt = 1024;
|
||||||
+ sch->limit = 1024;
|
- q->memory_limit = 32 << 20; /* 32 MBytes */
|
||||||
+ q->flows_cnt = 128;
|
+ q->memory_limit = 4 << 20; /* 4 MBytes */
|
||||||
q->drop_batch_size = 64;
|
q->drop_batch_size = 64;
|
||||||
q->quantum = psched_mtu(qdisc_dev(sch));
|
q->quantum = psched_mtu(qdisc_dev(sch));
|
||||||
q->perturbation = prandom_u32();
|
q->perturbation = prandom_u32();
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
--- a/net/sched/sch_fq_codel.c
|
--- a/net/sched/sch_fq_codel.c
|
||||||
+++ b/net/sched/sch_fq_codel.c
|
+++ b/net/sched/sch_fq_codel.c
|
||||||
@@ -211,7 +211,6 @@ static int fq_codel_enqueue(struct sk_bu
|
@@ -218,7 +218,6 @@ static int fq_codel_enqueue(struct sk_bu
|
||||||
list_add_tail(&flow->flowchain, &q->new_flows);
|
list_add_tail(&flow->flowchain, &q->new_flows);
|
||||||
q->new_flow_count++;
|
q->new_flow_count++;
|
||||||
flow->deficit = q->quantum;
|
flow->deficit = q->quantum;
|
||||||
- flow->dropped = 0;
|
- flow->dropped = 0;
|
||||||
}
|
}
|
||||||
if (++sch->q.qlen <= sch->limit)
|
q->memory_usage += skb->truesize;
|
||||||
return NET_XMIT_SUCCESS;
|
memory_limited = q->memory_usage > q->memory_limit;
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
device, it has to decide which ones to send first, which ones to
|
device, it has to decide which ones to send first, which ones to
|
||||||
--- a/net/sched/sch_fq_codel.c
|
--- a/net/sched/sch_fq_codel.c
|
||||||
+++ b/net/sched/sch_fq_codel.c
|
+++ b/net/sched/sch_fq_codel.c
|
||||||
@@ -654,7 +654,7 @@ static const struct Qdisc_class_ops fq_c
|
@@ -676,7 +676,7 @@ static const struct Qdisc_class_ops fq_c
|
||||||
.walk = fq_codel_walk,
|
.walk = fq_codel_walk,
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -22,7 +22,7 @@
|
|||||||
.cl_ops = &fq_codel_class_ops,
|
.cl_ops = &fq_codel_class_ops,
|
||||||
.id = "fq_codel",
|
.id = "fq_codel",
|
||||||
.priv_size = sizeof(struct fq_codel_sched_data),
|
.priv_size = sizeof(struct fq_codel_sched_data),
|
||||||
@@ -670,6 +670,7 @@ static struct Qdisc_ops fq_codel_qdisc_o
|
@@ -692,6 +692,7 @@ static struct Qdisc_ops fq_codel_qdisc_o
|
||||||
.dump_stats = fq_codel_dump_stats,
|
.dump_stats = fq_codel_dump_stats,
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user