net/ipv6/icmp.c: Checkpatch cleanups
icmp.c:501: ERROR: "(foo*)" should be "(foo *)" icmp.c:582: ERROR: "(foo*)" should be "(foo *)" icmp.c:954: WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable Signed-off-by: Eldad Zack <eldad@fogrefinery.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
911c8541ef
commit
a2d91a09da
1 changed files with 2 additions and 3 deletions
|
@ -499,7 +499,7 @@ void icmpv6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info)
|
||||||
err = ip6_append_data(sk, icmpv6_getfrag, &msg,
|
err = ip6_append_data(sk, icmpv6_getfrag, &msg,
|
||||||
len + sizeof(struct icmp6hdr),
|
len + sizeof(struct icmp6hdr),
|
||||||
sizeof(struct icmp6hdr), hlimit,
|
sizeof(struct icmp6hdr), hlimit,
|
||||||
np->tclass, NULL, &fl6, (struct rt6_info*)dst,
|
np->tclass, NULL, &fl6, (struct rt6_info *)dst,
|
||||||
MSG_DONTWAIT, np->dontfrag);
|
MSG_DONTWAIT, np->dontfrag);
|
||||||
if (err) {
|
if (err) {
|
||||||
ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTERRORS);
|
ICMP6_INC_STATS_BH(net, idev, ICMP6_MIB_OUTERRORS);
|
||||||
|
@ -580,7 +580,7 @@ static void icmpv6_echo_reply(struct sk_buff *skb)
|
||||||
|
|
||||||
err = ip6_append_data(sk, icmpv6_getfrag, &msg, skb->len + sizeof(struct icmp6hdr),
|
err = ip6_append_data(sk, icmpv6_getfrag, &msg, skb->len + sizeof(struct icmp6hdr),
|
||||||
sizeof(struct icmp6hdr), hlimit, np->tclass, NULL, &fl6,
|
sizeof(struct icmp6hdr), hlimit, np->tclass, NULL, &fl6,
|
||||||
(struct rt6_info*)dst, MSG_DONTWAIT,
|
(struct rt6_info *)dst, MSG_DONTWAIT,
|
||||||
np->dontfrag);
|
np->dontfrag);
|
||||||
|
|
||||||
if (err) {
|
if (err) {
|
||||||
|
@ -951,7 +951,6 @@ int icmpv6_err_convert(u8 type, u8 code, int *err)
|
||||||
|
|
||||||
return fatal;
|
return fatal;
|
||||||
}
|
}
|
||||||
|
|
||||||
EXPORT_SYMBOL(icmpv6_err_convert);
|
EXPORT_SYMBOL(icmpv6_err_convert);
|
||||||
|
|
||||||
#ifdef CONFIG_SYSCTL
|
#ifdef CONFIG_SYSCTL
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue