diff options
-rw-r--r-- | net/sched/sch_drr.c | 2 | ||||
-rw-r--r-- | net/sched/sch_qfq.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/sched/sch_drr.c b/net/sched/sch_drr.c index 9ce0b4fe23ff..71e50c80315f 100644 --- a/net/sched/sch_drr.c +++ b/net/sched/sch_drr.c | |||
@@ -352,7 +352,7 @@ static int drr_enqueue(struct sk_buff *skb, struct Qdisc *sch) | |||
352 | { | 352 | { |
353 | struct drr_sched *q = qdisc_priv(sch); | 353 | struct drr_sched *q = qdisc_priv(sch); |
354 | struct drr_class *cl; | 354 | struct drr_class *cl; |
355 | int err; | 355 | int err = 0; |
356 | 356 | ||
357 | cl = drr_classify(skb, sch, &err); | 357 | cl = drr_classify(skb, sch, &err); |
358 | if (cl == NULL) { | 358 | if (cl == NULL) { |
diff --git a/net/sched/sch_qfq.c b/net/sched/sch_qfq.c index e4723d31fdd5..25566208f12b 100644 --- a/net/sched/sch_qfq.c +++ b/net/sched/sch_qfq.c | |||
@@ -878,7 +878,7 @@ static int qfq_enqueue(struct sk_buff *skb, struct Qdisc *sch) | |||
878 | { | 878 | { |
879 | struct qfq_sched *q = qdisc_priv(sch); | 879 | struct qfq_sched *q = qdisc_priv(sch); |
880 | struct qfq_class *cl; | 880 | struct qfq_class *cl; |
881 | int err; | 881 | int err = 0; |
882 | 882 | ||
883 | cl = qfq_classify(skb, sch, &err); | 883 | cl = qfq_classify(skb, sch, &err); |
884 | if (cl == NULL) { | 884 | if (cl == NULL) { |