From: Baruch Siach Date: Thu, 9 Sep 2021 17:49:47 +0000 (+0300) Subject: net/packet: clarify source of pr_*() messages X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=dc41c4a98a76640e7085815f937eadd1f336ba85;p=kernel.git net/packet: clarify source of pr_*() messages Add pr_fmt macro to spell out the source of messages in prefix. Before this patch: packet size is too long (1543 > 1518) With this patch: af_packet: packet size is too long (1543 > 1518) Signed-off-by: Baruch Siach Signed-off-by: David S. Miller --- diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c index 543365f58e973..2a2bc64f75cfd 100644 --- a/net/packet/af_packet.c +++ b/net/packet/af_packet.c @@ -46,6 +46,8 @@ * Copyright (C) 2011, */ +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + #include #include #include