diff options
| author | Joe Perches <joe@perches.com> | 2012-05-15 14:11:53 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2012-05-16 01:01:03 -0400 | 
| commit | f32138319ca6541e65f95f8e17c9cc88ac1baf94 (patch) | |
| tree | 20505f3d5955d89d3763a6182052a8e9b37eaf37 /net/ipv6/ah6.c | |
| parent | 82251de2a2b7b84987dde104d48a765b63170149 (diff) | |
| download | olio-linux-3.10-f32138319ca6541e65f95f8e17c9cc88ac1baf94.tar.xz olio-linux-3.10-f32138319ca6541e65f95f8e17c9cc88ac1baf94.zip  | |
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/ah6.c')
| -rw-r--r-- | net/ipv6/ah6.c | 16 | 
1 files changed, 9 insertions, 7 deletions
diff --git a/net/ipv6/ah6.c b/net/ipv6/ah6.c index a9f4156f7c3..9aa3d010ac5 100644 --- a/net/ipv6/ah6.c +++ b/net/ipv6/ah6.c @@ -24,6 +24,8 @@   * 	This file is derived from net/ipv4/ah.c.   */ +#define pr_fmt(fmt) "IPv6: " fmt +  #include <crypto/hash.h>  #include <linux/module.h>  #include <linux/slab.h> @@ -659,9 +661,9 @@ static int ah6_init_state(struct xfrm_state *x)  	if (aalg_desc->uinfo.auth.icv_fullbits/8 !=  	    crypto_ahash_digestsize(ahash)) { -		printk(KERN_INFO "AH: %s digestsize %u != %hu\n", -		       x->aalg->alg_name, crypto_ahash_digestsize(ahash), -		       aalg_desc->uinfo.auth.icv_fullbits/8); +		pr_info("AH: %s digestsize %u != %hu\n", +			x->aalg->alg_name, crypto_ahash_digestsize(ahash), +			aalg_desc->uinfo.auth.icv_fullbits/8);  		goto error;  	} @@ -727,12 +729,12 @@ static const struct inet6_protocol ah6_protocol = {  static int __init ah6_init(void)  {  	if (xfrm_register_type(&ah6_type, AF_INET6) < 0) { -		printk(KERN_INFO "ipv6 ah init: can't add xfrm type\n"); +		pr_info("%s: can't add xfrm type\n", __func__);  		return -EAGAIN;  	}  	if (inet6_add_protocol(&ah6_protocol, IPPROTO_AH) < 0) { -		printk(KERN_INFO "ipv6 ah init: can't add protocol\n"); +		pr_info("%s: can't add protocol\n", __func__);  		xfrm_unregister_type(&ah6_type, AF_INET6);  		return -EAGAIN;  	} @@ -743,10 +745,10 @@ static int __init ah6_init(void)  static void __exit ah6_fini(void)  {  	if (inet6_del_protocol(&ah6_protocol, IPPROTO_AH) < 0) -		printk(KERN_INFO "ipv6 ah close: can't remove protocol\n"); +		pr_info("%s: can't remove protocol\n", __func__);  	if (xfrm_unregister_type(&ah6_type, AF_INET6) < 0) -		printk(KERN_INFO "ipv6 ah close: can't remove xfrm type\n"); +		pr_info("%s: can't remove xfrm type\n", __func__);  }  |