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/esp6.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/esp6.c')
-rw-r--r-- | net/ipv6/esp6.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/net/ipv6/esp6.c b/net/ipv6/esp6.c index 1ac7938dd9ec..6697eb0fba55 100644 --- a/net/ipv6/esp6.c +++ b/net/ipv6/esp6.c | |||
@@ -24,6 +24,8 @@ | |||
24 | * This file is derived from net/ipv4/esp.c | 24 | * This file is derived from net/ipv4/esp.c |
25 | */ | 25 | */ |
26 | 26 | ||
27 | #define pr_fmt(fmt) "IPv6: " fmt | ||
28 | |||
27 | #include <crypto/aead.h> | 29 | #include <crypto/aead.h> |
28 | #include <crypto/authenc.h> | 30 | #include <crypto/authenc.h> |
29 | #include <linux/err.h> | 31 | #include <linux/err.h> |
@@ -651,11 +653,11 @@ static const struct inet6_protocol esp6_protocol = { | |||
651 | static int __init esp6_init(void) | 653 | static int __init esp6_init(void) |
652 | { | 654 | { |
653 | if (xfrm_register_type(&esp6_type, AF_INET6) < 0) { | 655 | if (xfrm_register_type(&esp6_type, AF_INET6) < 0) { |
654 | printk(KERN_INFO "ipv6 esp init: can't add xfrm type\n"); | 656 | pr_info("%s: can't add xfrm type\n", __func__); |
655 | return -EAGAIN; | 657 | return -EAGAIN; |
656 | } | 658 | } |
657 | if (inet6_add_protocol(&esp6_protocol, IPPROTO_ESP) < 0) { | 659 | if (inet6_add_protocol(&esp6_protocol, IPPROTO_ESP) < 0) { |
658 | printk(KERN_INFO "ipv6 esp init: can't add protocol\n"); | 660 | pr_info("%s: can't add protocol\n", __func__); |
659 | xfrm_unregister_type(&esp6_type, AF_INET6); | 661 | xfrm_unregister_type(&esp6_type, AF_INET6); |
660 | return -EAGAIN; | 662 | return -EAGAIN; |
661 | } | 663 | } |
@@ -666,9 +668,9 @@ static int __init esp6_init(void) | |||
666 | static void __exit esp6_fini(void) | 668 | static void __exit esp6_fini(void) |
667 | { | 669 | { |
668 | if (inet6_del_protocol(&esp6_protocol, IPPROTO_ESP) < 0) | 670 | if (inet6_del_protocol(&esp6_protocol, IPPROTO_ESP) < 0) |
669 | printk(KERN_INFO "ipv6 esp close: can't remove protocol\n"); | 671 | pr_info("%s: can't remove protocol\n", __func__); |
670 | if (xfrm_unregister_type(&esp6_type, AF_INET6) < 0) | 672 | if (xfrm_unregister_type(&esp6_type, AF_INET6) < 0) |
671 | printk(KERN_INFO "ipv6 esp close: can't remove xfrm type\n"); | 673 | pr_info("%s: can't remove xfrm type\n", __func__); |
672 | } | 674 | } |
673 | 675 | ||
674 | module_init(esp6_init); | 676 | module_init(esp6_init); |