[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 <[EMAIL PROTECTED]> --- commit ead4b3ca023de4d4f05d185e8111c01784ee08e2 tree d9616532b4fcc9137828d9ed9da941512bdc6841 parent 99c94d927602635ca0994a99bf75edc0d2f80871 author Patrick McHardy <[EMAIL PROTECTED]> Sun, 20 Jan 2008 17:37:28 +0100 committer Patrick McHardy <[EMAIL PROTECTED]> Sun, 20 Jan 2008 17:37:28 +0100 include/linux/if_ether.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/linux/if_ether.h b/include/linux/if_ether.h index 7a1e011..e157c13 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 -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html