diff options
author | Joe Perches <joe@perches.com> | 2016-06-02 12:08:52 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-06-03 19:41:31 -0400 |
commit | 9b6d53985fd130c24ad2260c2edb0df50449f020 (patch) | |
tree | 5aef3e327ab46265ec3536ff5e7c2979ff1b180f /net/rxrpc/ar-transport.c | |
parent | cb2911fed61497e4d0383355f1c865fcdaa94061 (diff) | |
download | linux-9b6d53985fd130c24ad2260c2edb0df50449f020.tar.bz2 |
rxrpc: Use pr_<level> and pr_fmt, reduce object size a few KB
Use the more common kernel logging style and reduce object size.
The logging message prefix changes from a mixture of
"RxRPC:" and "RXRPC:" to "af_rxrpc: ".
$ size net/rxrpc/built-in.o*
text data bss dec hex filename
64172 1972 8304 74448 122d0 net/rxrpc/built-in.o.new
67512 1972 8304 77788 12fdc net/rxrpc/built-in.o.old
Miscellanea:
o Consolidate the ASSERT macros to use a single pr_err call with
decimal and hexadecimal output and a stringified #OP argument
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rxrpc/ar-transport.c')
-rw-r--r-- | net/rxrpc/ar-transport.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/rxrpc/ar-transport.c b/net/rxrpc/ar-transport.c index 66a1a5676446..a1b65183b07d 100644 --- a/net/rxrpc/ar-transport.c +++ b/net/rxrpc/ar-transport.c @@ -9,6 +9,8 @@ * 2 of the License, or (at your option) any later version. */ +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + #include <linux/module.h> #include <linux/net.h> #include <linux/skbuff.h> |