[PKT_SCHED] dsmark: checkpatch warning cleanup
Get rid of all style things checkpatch warns about, indentation and whitespace. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4c30719f4f
commit
9d127fbdd2
|
@ -147,7 +147,7 @@ static int dsmark_delete(struct Qdisc *sch, unsigned long arg)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void dsmark_walk(struct Qdisc *sch,struct qdisc_walker *walker)
|
static void dsmark_walk(struct Qdisc *sch, struct qdisc_walker *walker)
|
||||||
{
|
{
|
||||||
struct dsmark_qdisc_data *p = qdisc_priv(sch);
|
struct dsmark_qdisc_data *p = qdisc_priv(sch);
|
||||||
int i;
|
int i;
|
||||||
|
@ -171,7 +171,8 @@ static void dsmark_walk(struct Qdisc *sch,struct qdisc_walker *walker)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline struct tcf_proto **dsmark_find_tcf(struct Qdisc *sch,unsigned long cl)
|
static inline struct tcf_proto **dsmark_find_tcf(struct Qdisc *sch,
|
||||||
|
unsigned long cl)
|
||||||
{
|
{
|
||||||
struct dsmark_qdisc_data *p = qdisc_priv(sch);
|
struct dsmark_qdisc_data *p = qdisc_priv(sch);
|
||||||
return &p->filter_list;
|
return &p->filter_list;
|
||||||
|
@ -179,7 +180,7 @@ static inline struct tcf_proto **dsmark_find_tcf(struct Qdisc *sch,unsigned long
|
||||||
|
|
||||||
/* --------------------------- Qdisc operations ---------------------------- */
|
/* --------------------------- Qdisc operations ---------------------------- */
|
||||||
|
|
||||||
static int dsmark_enqueue(struct sk_buff *skb,struct Qdisc *sch)
|
static int dsmark_enqueue(struct sk_buff *skb, struct Qdisc *sch)
|
||||||
{
|
{
|
||||||
struct dsmark_qdisc_data *p = qdisc_priv(sch);
|
struct dsmark_qdisc_data *p = qdisc_priv(sch);
|
||||||
int err;
|
int err;
|
||||||
|
@ -188,24 +189,24 @@ static int dsmark_enqueue(struct sk_buff *skb,struct Qdisc *sch)
|
||||||
|
|
||||||
if (p->set_tc_index) {
|
if (p->set_tc_index) {
|
||||||
switch (skb->protocol) {
|
switch (skb->protocol) {
|
||||||
case __constant_htons(ETH_P_IP):
|
case __constant_htons(ETH_P_IP):
|
||||||
if (skb_cow_head(skb, sizeof(struct iphdr)))
|
if (skb_cow_head(skb, sizeof(struct iphdr)))
|
||||||
goto drop;
|
goto drop;
|
||||||
|
|
||||||
skb->tc_index = ipv4_get_dsfield(ip_hdr(skb))
|
skb->tc_index = ipv4_get_dsfield(ip_hdr(skb))
|
||||||
& ~INET_ECN_MASK;
|
& ~INET_ECN_MASK;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case __constant_htons(ETH_P_IPV6):
|
case __constant_htons(ETH_P_IPV6):
|
||||||
if (skb_cow_head(skb, sizeof(struct ipv6hdr)))
|
if (skb_cow_head(skb, sizeof(struct ipv6hdr)))
|
||||||
goto drop;
|
goto drop;
|
||||||
|
|
||||||
skb->tc_index = ipv6_get_dsfield(ipv6_hdr(skb))
|
skb->tc_index = ipv6_get_dsfield(ipv6_hdr(skb))
|
||||||
& ~INET_ECN_MASK;
|
& ~INET_ECN_MASK;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
skb->tc_index = 0;
|
skb->tc_index = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -238,7 +239,7 @@ static int dsmark_enqueue(struct sk_buff *skb,struct Qdisc *sch)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
err = p->q->enqueue(skb,p->q);
|
err = p->q->enqueue(skb, p->q);
|
||||||
if (err != NET_XMIT_SUCCESS) {
|
if (err != NET_XMIT_SUCCESS) {
|
||||||
sch->qstats.drops++;
|
sch->qstats.drops++;
|
||||||
return err;
|
return err;
|
||||||
|
@ -274,31 +275,31 @@ static struct sk_buff *dsmark_dequeue(struct Qdisc *sch)
|
||||||
pr_debug("index %d->%d\n", skb->tc_index, index);
|
pr_debug("index %d->%d\n", skb->tc_index, index);
|
||||||
|
|
||||||
switch (skb->protocol) {
|
switch (skb->protocol) {
|
||||||
case __constant_htons(ETH_P_IP):
|
case __constant_htons(ETH_P_IP):
|
||||||
ipv4_change_dsfield(ip_hdr(skb), p->mask[index],
|
ipv4_change_dsfield(ip_hdr(skb), p->mask[index],
|
||||||
p->value[index]);
|
p->value[index]);
|
||||||
break;
|
break;
|
||||||
case __constant_htons(ETH_P_IPV6):
|
case __constant_htons(ETH_P_IPV6):
|
||||||
ipv6_change_dsfield(ipv6_hdr(skb), p->mask[index],
|
ipv6_change_dsfield(ipv6_hdr(skb), p->mask[index],
|
||||||
p->value[index]);
|
p->value[index]);
|
||||||
break;
|
|
||||||
default:
|
|
||||||
/*
|
|
||||||
* Only complain if a change was actually attempted.
|
|
||||||
* This way, we can send non-IP traffic through dsmark
|
|
||||||
* and don't need yet another qdisc as a bypass.
|
|
||||||
*/
|
|
||||||
if (p->mask[index] != 0xff || p->value[index])
|
|
||||||
printk(KERN_WARNING "dsmark_dequeue: "
|
|
||||||
"unsupported protocol %d\n",
|
|
||||||
ntohs(skb->protocol));
|
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
/*
|
||||||
|
* Only complain if a change was actually attempted.
|
||||||
|
* This way, we can send non-IP traffic through dsmark
|
||||||
|
* and don't need yet another qdisc as a bypass.
|
||||||
|
*/
|
||||||
|
if (p->mask[index] != 0xff || p->value[index])
|
||||||
|
printk(KERN_WARNING
|
||||||
|
"dsmark_dequeue: unsupported protocol %d\n",
|
||||||
|
ntohs(skb->protocol));
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return skb;
|
return skb;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int dsmark_requeue(struct sk_buff *skb,struct Qdisc *sch)
|
static int dsmark_requeue(struct sk_buff *skb, struct Qdisc *sch)
|
||||||
{
|
{
|
||||||
struct dsmark_qdisc_data *p = qdisc_priv(sch);
|
struct dsmark_qdisc_data *p = qdisc_priv(sch);
|
||||||
int err;
|
int err;
|
||||||
|
@ -419,8 +420,8 @@ static int dsmark_dump_class(struct Qdisc *sch, unsigned long cl,
|
||||||
tcm->tcm_info = p->q->handle;
|
tcm->tcm_info = p->q->handle;
|
||||||
|
|
||||||
opts = RTA_NEST(skb, TCA_OPTIONS);
|
opts = RTA_NEST(skb, TCA_OPTIONS);
|
||||||
RTA_PUT_U8(skb,TCA_DSMARK_MASK, p->mask[cl-1]);
|
RTA_PUT_U8(skb, TCA_DSMARK_MASK, p->mask[cl-1]);
|
||||||
RTA_PUT_U8(skb,TCA_DSMARK_VALUE, p->value[cl-1]);
|
RTA_PUT_U8(skb, TCA_DSMARK_VALUE, p->value[cl-1]);
|
||||||
|
|
||||||
return RTA_NEST_END(skb, opts);
|
return RTA_NEST_END(skb, opts);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue