]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
mqprio: cleanups
authorstephen hemminger <shemminger@vyatta.com>
Wed, 23 Feb 2011 09:06:51 +0000 (09:06 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 23 Feb 2011 22:11:32 +0000 (14:11 -0800)
* make qdisc_ops local
* add sparse annotation about expected unlock/unlock in dump_class_stats
* fix indentation

Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/sch_mqprio.c

index ace37f9f1cd05383d9dddd0cfbec73531676a959..ea17cbed29eff7215c062efe04c32de6bf513596 100644 (file)
@@ -311,7 +311,9 @@ static int mqprio_dump_class(struct Qdisc *sch, unsigned long cl,
 }
 
 static int mqprio_dump_class_stats(struct Qdisc *sch, unsigned long cl,
-                              struct gnet_dump *d)
+                                  struct gnet_dump *d)
+       __releases(d->lock)
+       __acquires(d->lock)
 {
        struct net_device *dev = qdisc_dev(sch);
 
@@ -389,7 +391,7 @@ static const struct Qdisc_class_ops mqprio_class_ops = {
        .dump_stats     = mqprio_dump_class_stats,
 };
 
-struct Qdisc_ops mqprio_qdisc_ops __read_mostly = {
+static struct Qdisc_ops mqprio_qdisc_ops __read_mostly = {
        .cl_ops         = &mqprio_class_ops,
        .id             = "mqprio",
        .priv_size      = sizeof(struct mqprio_sched),