diff options
author | Joe Perches <joe@perches.com> | 2012-03-12 03:03:32 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-03-12 20:05:21 -0400 |
commit | afd465030acb4098abcb6b965a5aebc7ea2209e0 (patch) | |
tree | 59c93e8eda99cd59339dfbb77f1d2c4f79c634ee /net/ipv4/ip_fragment.c | |
parent | 058bd4d2a4ff0aaa4a5381c67e776729d840c785 (diff) |
net: ipv4: Standardize prefixes for message logging
Add #define pr_fmt(fmt) as appropriate.
Add "IPv4: ", "TCP: ", and "IPsec: " to appropriate files.
Standardize on "UDPLite: " for appropriate uses.
Some prefixes were previously "UDPLITE: " and "UDP-Lite: ".
Add KBUILD_MODNAME ": " to icmp and gre.
Remove embedded prefixes as appropriate.
Add missing "\n" to pr_info in gre.c.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ip_fragment.c')
-rw-r--r-- | net/ipv4/ip_fragment.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/net/ipv4/ip_fragment.c b/net/ipv4/ip_fragment.c index b2fd333abd59..3727e234c884 100644 --- a/net/ipv4/ip_fragment.c +++ b/net/ipv4/ip_fragment.c | |||
@@ -20,6 +20,8 @@ | |||
20 | * Patrick McHardy : LRU queue of frag heads for evictor. | 20 | * Patrick McHardy : LRU queue of frag heads for evictor. |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #define pr_fmt(fmt) "IPv4: " fmt | ||
24 | |||
23 | #include <linux/compiler.h> | 25 | #include <linux/compiler.h> |
24 | #include <linux/module.h> | 26 | #include <linux/module.h> |
25 | #include <linux/types.h> | 27 | #include <linux/types.h> |
@@ -299,7 +301,7 @@ static inline struct ipq *ip_find(struct net *net, struct iphdr *iph, u32 user) | |||
299 | return container_of(q, struct ipq, q); | 301 | return container_of(q, struct ipq, q); |
300 | 302 | ||
301 | out_nomem: | 303 | out_nomem: |
302 | LIMIT_NETDEBUG(KERN_ERR "ip_frag_create: no memory left !\n"); | 304 | LIMIT_NETDEBUG(KERN_ERR pr_fmt("ip_frag_create: no memory left !\n")); |
303 | return NULL; | 305 | return NULL; |
304 | } | 306 | } |
305 | 307 | ||
@@ -637,8 +639,8 @@ static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev, | |||
637 | return 0; | 639 | return 0; |
638 | 640 | ||
639 | out_nomem: | 641 | out_nomem: |
640 | LIMIT_NETDEBUG(KERN_ERR "IP: queue_glue: no memory for gluing " | 642 | LIMIT_NETDEBUG(KERN_ERR pr_fmt("queue_glue: no memory for gluing queue %p\n"), |
641 | "queue %p\n", qp); | 643 | qp); |
642 | err = -ENOMEM; | 644 | err = -ENOMEM; |
643 | goto out_fail; | 645 | goto out_fail; |
644 | out_oversize: | 646 | out_oversize: |