diff options
author | Joe Perches <joe@perches.com> | 2012-05-15 10:11:53 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-05-16 01:01:03 -0400 |
commit | f32138319ca6541e65f95f8e17c9cc88ac1baf94 (patch) | |
tree | 20505f3d5955d89d3763a6182052a8e9b37eaf37 /net/ipv6/mcast.c | |
parent | 82251de2a2b7b84987dde104d48a765b63170149 (diff) |
net: ipv6: Standardize prefixes for message logging
Add #define pr_fmt(fmt) as appropriate.
Add "IPv6: " to appropriate files.
Convert printk(KERN_<LEVEL> to pr_<level> (but not KERN_DEBUG).
Standardize on "%s: " not "%s(): " when emitting __func__.
Use "%s: ", __func__ instead of embedding function name.
Coalesce formats, align arguments.
ADDRCONF output is now prefixed with "IPv6: "
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/mcast.c')
-rw-r--r-- | net/ipv6/mcast.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ipv6/mcast.c b/net/ipv6/mcast.c index 7dfb89f2bae5..2a3a22cf7604 100644 --- a/net/ipv6/mcast.c +++ b/net/ipv6/mcast.c | |||
@@ -2627,8 +2627,7 @@ static int __net_init igmp6_net_init(struct net *net) | |||
2627 | err = inet_ctl_sock_create(&net->ipv6.igmp_sk, PF_INET6, | 2627 | err = inet_ctl_sock_create(&net->ipv6.igmp_sk, PF_INET6, |
2628 | SOCK_RAW, IPPROTO_ICMPV6, net); | 2628 | SOCK_RAW, IPPROTO_ICMPV6, net); |
2629 | if (err < 0) { | 2629 | if (err < 0) { |
2630 | printk(KERN_ERR | 2630 | pr_err("Failed to initialize the IGMP6 control socket (err %d)\n", |
2631 | "Failed to initialize the IGMP6 control socket (err %d).\n", | ||
2632 | err); | 2631 | err); |
2633 | goto out; | 2632 | goto out; |
2634 | } | 2633 | } |