Skip to content

Commit

Permalink
sch_dsmark: use correct func name in print messages
Browse files Browse the repository at this point in the history
In dsmark_drop(), the function name printed by pr_debug
is "dsmark_reset", correct it to "dsmark_drop" by using
__func__ .

BTW, replace the other function names with __func__ .

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Yang Yingliang authored and David S. Miller committed Dec 31, 2013
1 parent a071d27 commit c76f2a2
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions net/sched/sch_dsmark.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ static int dsmark_graft(struct Qdisc *sch, unsigned long arg,
{
struct dsmark_qdisc_data *p = qdisc_priv(sch);

pr_debug("dsmark_graft(sch %p,[qdisc %p],new %p,old %p)\n",
sch, p, new, old);
pr_debug("%s(sch %p,[qdisc %p],new %p,old %p)\n",
__func__, sch, p, new, old);

if (new == NULL) {
new = qdisc_create_dflt(sch->dev_queue, &pfifo_qdisc_ops,
Expand All @@ -85,8 +85,8 @@ static struct Qdisc *dsmark_leaf(struct Qdisc *sch, unsigned long arg)

static unsigned long dsmark_get(struct Qdisc *sch, u32 classid)
{
pr_debug("dsmark_get(sch %p,[qdisc %p],classid %x)\n",
sch, qdisc_priv(sch), classid);
pr_debug("%s(sch %p,[qdisc %p],classid %x)\n",
__func__, sch, qdisc_priv(sch), classid);

return TC_H_MIN(classid) + 1;
}
Expand Down Expand Up @@ -118,8 +118,8 @@ static int dsmark_change(struct Qdisc *sch, u32 classid, u32 parent,
int err = -EINVAL;
u8 mask = 0;

pr_debug("dsmark_change(sch %p,[qdisc %p],classid %x,parent %x),"
"arg 0x%lx\n", sch, p, classid, parent, *arg);
pr_debug("%s(sch %p,[qdisc %p],classid %x,parent %x), arg 0x%lx\n",
__func__, sch, p, classid, parent, *arg);

if (!dsmark_valid_index(p, *arg)) {
err = -ENOENT;
Expand Down Expand Up @@ -166,7 +166,8 @@ static void dsmark_walk(struct Qdisc *sch, struct qdisc_walker *walker)
struct dsmark_qdisc_data *p = qdisc_priv(sch);
int i;

pr_debug("dsmark_walk(sch %p,[qdisc %p],walker %p)\n", sch, p, walker);
pr_debug("%s(sch %p,[qdisc %p],walker %p)\n",
__func__, sch, p, walker);

if (walker->stop)
return;
Expand Down Expand Up @@ -199,7 +200,7 @@ static int dsmark_enqueue(struct sk_buff *skb, struct Qdisc *sch)
struct dsmark_qdisc_data *p = qdisc_priv(sch);
int err;

pr_debug("dsmark_enqueue(skb %p,sch %p,[qdisc %p])\n", skb, sch, p);
pr_debug("%s(skb %p,sch %p,[qdisc %p])\n", __func__, skb, sch, p);

if (p->set_tc_index) {
switch (skb->protocol) {
Expand Down Expand Up @@ -275,7 +276,7 @@ static struct sk_buff *dsmark_dequeue(struct Qdisc *sch)
struct sk_buff *skb;
u32 index;

pr_debug("dsmark_dequeue(sch %p,[qdisc %p])\n", sch, p);
pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);

skb = p->q->ops->dequeue(p->q);
if (skb == NULL)
Expand Down Expand Up @@ -303,8 +304,8 @@ static struct sk_buff *dsmark_dequeue(struct Qdisc *sch)
* and don't need yet another qdisc as a bypass.
*/
if (p->mask[index] != 0xff || p->value[index])
pr_warn("dsmark_dequeue: unsupported protocol %d\n",
ntohs(skb->protocol));
pr_warn("%s: unsupported protocol %d\n",
__func__, ntohs(skb->protocol));
break;
}

Expand All @@ -315,7 +316,7 @@ static struct sk_buff *dsmark_peek(struct Qdisc *sch)
{
struct dsmark_qdisc_data *p = qdisc_priv(sch);

pr_debug("dsmark_peek(sch %p,[qdisc %p])\n", sch, p);
pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);

return p->q->ops->peek(p->q);
}
Expand All @@ -325,7 +326,7 @@ static unsigned int dsmark_drop(struct Qdisc *sch)
struct dsmark_qdisc_data *p = qdisc_priv(sch);
unsigned int len;

pr_debug("dsmark_reset(sch %p,[qdisc %p])\n", sch, p);
pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);

if (p->q->ops->drop == NULL)
return 0;
Expand All @@ -346,7 +347,7 @@ static int dsmark_init(struct Qdisc *sch, struct nlattr *opt)
u16 indices;
u8 *mask;

pr_debug("dsmark_init(sch %p,[qdisc %p],opt %p)\n", sch, p, opt);
pr_debug("%s(sch %p,[qdisc %p],opt %p)\n", __func__, sch, p, opt);

if (!opt)
goto errout;
Expand Down Expand Up @@ -384,7 +385,7 @@ static int dsmark_init(struct Qdisc *sch, struct nlattr *opt)
if (p->q == NULL)
p->q = &noop_qdisc;

pr_debug("dsmark_init: qdisc %p\n", p->q);
pr_debug("%s: qdisc %p\n", __func__, p->q);

err = 0;
errout:
Expand All @@ -395,7 +396,7 @@ static void dsmark_reset(struct Qdisc *sch)
{
struct dsmark_qdisc_data *p = qdisc_priv(sch);

pr_debug("dsmark_reset(sch %p,[qdisc %p])\n", sch, p);
pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);
qdisc_reset(p->q);
sch->q.qlen = 0;
}
Expand All @@ -404,7 +405,7 @@ static void dsmark_destroy(struct Qdisc *sch)
{
struct dsmark_qdisc_data *p = qdisc_priv(sch);

pr_debug("dsmark_destroy(sch %p,[qdisc %p])\n", sch, p);
pr_debug("%s(sch %p,[qdisc %p])\n", __func__, sch, p);

tcf_destroy_chain(&p->filter_list);
qdisc_destroy(p->q);
Expand All @@ -417,7 +418,7 @@ static int dsmark_dump_class(struct Qdisc *sch, unsigned long cl,
struct dsmark_qdisc_data *p = qdisc_priv(sch);
struct nlattr *opts = NULL;

pr_debug("dsmark_dump_class(sch %p,[qdisc %p],class %ld\n", sch, p, cl);
pr_debug("%s(sch %p,[qdisc %p],class %ld\n", __func__, sch, p, cl);

if (!dsmark_valid_index(p, cl))
return -EINVAL;
Expand Down

0 comments on commit c76f2a2

Please sign in to comment.