summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McHardy2008-01-21 09:24:13 +0100
committerDavid S. Miller2008-01-29 00:08:27 +0100
commita5250a36954c6658e28cc2e7e07e314e0c79e8bb (patch)
tree3e5682db7034d92faceecd6907bc24fa2d05b543
parent[VLAN]: Kill useless check (diff)
downloadkernel-qcow2-linux-a5250a36954c6658e28cc2e7e07e314e0c79e8bb.tar.gz
kernel-qcow2-linux-a5250a36954c6658e28cc2e7e07e314e0c79e8bb.tar.xz
kernel-qcow2-linux-a5250a36954c6658e28cc2e7e07e314e0c79e8bb.zip
[ETHER]: Bring back MAC_FMT
The print_mac function is not very suitable for debugging printks in performance critical paths since without ifdefs it will always get called. MAC_FMT can be used with pr_debug without any overhead when debugging is disabled. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--include/linux/if_ether.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/if_ether.h b/include/linux/if_ether.h
index 7a1e011b8a2c..e157c1399b61 100644
--- a/include/linux/if_ether.h
+++ b/include/linux/if_ether.h
@@ -130,6 +130,7 @@ extern ssize_t sysfs_format_mac(char *buf, const unsigned char *addr, int len);
* Display a 6 byte device address (MAC) in a readable format.
*/
extern char *print_mac(char *buf, const unsigned char *addr);
+#define MAC_FMT "%02x:%02x:%02x:%02x:%02x:%02x"
#define MAC_BUF_SIZE 18
#define DECLARE_MAC_BUF(var) char var[MAC_BUF_SIZE] __maybe_unused