summaryrefslogtreecommitdiffstats
path: root/net/sched
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2017-03-16 15:02:15 -0400
committerDavid S. Miller <davem@davemloft.net>2017-03-16 15:02:15 -0400
commitcd918afd023a7c213a5b0a397c94c91c96b36e35 (patch)
tree5a10ba81a7ebb5fd35c9deb0d09f2da56a3fe7c0 /net/sched
parent2f771399a3a2c371c140ff33544a583c6fbc5fd9 (diff)
parenta5e6a3b0222fb19eaae424226533eadb0be20e93 (diff)
Merge branch 'sched-cleanups'
Or Gerlitz says: ==================== small set of sched cleanups Just two cleanups -- but for the 2nd one I think we need ack from Cong Wang to make sure this isn't actually a bug report.. changes from V1: - addressed comment from Sergei to use 12 hex digits etc ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched')
-rw-r--r--net/sched/act_ife.c4
-rw-r--r--net/sched/sch_fq_codel.c2
2 files changed, 2 insertions, 4 deletions
diff --git a/net/sched/act_ife.c b/net/sched/act_ife.c
index 71e7ff22f7c9..c75ea5c9102c 100644
--- a/net/sched/act_ife.c
+++ b/net/sched/act_ife.c
@@ -603,8 +603,8 @@ nla_put_failure:
603 return -1; 603 return -1;
604} 604}
605 605
606int find_decode_metaid(struct sk_buff *skb, struct tcf_ife_info *ife, 606static int find_decode_metaid(struct sk_buff *skb, struct tcf_ife_info *ife,
607 u16 metaid, u16 mlen, void *mdata) 607 u16 metaid, u16 mlen, void *mdata)
608{ 608{
609 struct tcf_meta_info *e; 609 struct tcf_meta_info *e;
610 610
diff --git a/net/sched/sch_fq_codel.c b/net/sched/sch_fq_codel.c
index 9f3a884d1590..097bbe9857a5 100644
--- a/net/sched/sch_fq_codel.c
+++ b/net/sched/sch_fq_codel.c
@@ -288,7 +288,6 @@ static struct sk_buff *fq_codel_dequeue(struct Qdisc *sch)
288 struct fq_codel_flow *flow; 288 struct fq_codel_flow *flow;
289 struct list_head *head; 289 struct list_head *head;
290 u32 prev_drop_count, prev_ecn_mark; 290 u32 prev_drop_count, prev_ecn_mark;
291 unsigned int prev_backlog;
292 291
293begin: 292begin:
294 head = &q->new_flows; 293 head = &q->new_flows;
@@ -307,7 +306,6 @@ begin:
307 306
308 prev_drop_count = q->cstats.drop_count; 307 prev_drop_count = q->cstats.drop_count;
309 prev_ecn_mark = q->cstats.ecn_mark; 308 prev_ecn_mark = q->cstats.ecn_mark;
310 prev_backlog = sch->qstats.backlog;
311 309
312 skb = codel_dequeue(sch, &sch->qstats.backlog, &q->cparams, 310 skb = codel_dequeue(sch, &sch->qstats.backlog, &q->cparams,
313 &flow->cvars, &q->cstats, qdisc_pkt_len, 311 &flow->cvars, &q->cstats, qdisc_pkt_len,