aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/sch_qfq.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2012-09-27 18:35:47 -0400
committerDavid S. Miller <davem@davemloft.net>2012-09-27 18:35:47 -0400
commitf54ba7798848ce1385a71b36a2c997422c82220a (patch)
treeb93f6a9e0d456602898817b8333a430b0e5929a8 /net/sched/sch_qfq.c
parente905ed57baa82e15ce9c158a8f1e81f171042504 (diff)
pkt_sched: Fix warning false positives.
GCC refuses to recognize that all error control flows do in fact set err to something. Add an explicit initialization to shut it up. net/sched/sch_drr.c: In function ‘drr_enqueue’: net/sched/sch_drr.c:359:11: warning: ‘err’ may be used uninitialized in this function [-Wmaybe-uninitialized] net/sched/sch_qfq.c: In function ‘qfq_enqueue’: net/sched/sch_qfq.c:885:11: warning: ‘err’ may be used uninitialized in this function [-Wmaybe-uninitialized] Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sched/sch_qfq.c')
-rw-r--r--net/sched/sch_qfq.c2
1 files changed, 1 insertions, 1 deletions
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) {