[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAC=mGzhs0smXzRxn1k9jDFsaLNAkpCd7rMs--E-SafQVTob7JQ@mail.gmail.com>
Date: Sat, 17 Nov 2018 22:54:08 +0800
From: Jian-Hong Pan <starnight@...cu.edu.tw>
To: "David S. Miller" <davem@...emloft.net>
Cc: Andreas Färber <afaerber@...e.de>,
netdev@...r.kernel.org,
"<linux-arm-kernel@...ts.infradead.org\\"
<linux-arm-kernel@...ts.infradead.org>,
"linux-kernel@...r.kernel.org>," <linux-kernel@...r.kernel.org>,
Marcel Holtmann <marcel@...tmann.org>,
Dollar Chen <dollar.chen@...ec.com>,
Ken Yu <ken.yu@...wireless.com>,
linux-wpan - ML <linux-wpan@...r.kernel.org>,
Stefan Schmidt <stefan@...enfreihafen.org>
Subject: Re: [PATCH V3 2/7] net: lorawan: Add LoRaWAN socket module
David Miller <davem@...emloft.net> 於 2018年11月17日 週六 下午12:32寫道:
>
> From: Jian-Hong Pan <starnight@...cu.edu.tw>
> Date: Thu, 15 Nov 2018 00:01:23 +0800
>
> > +#define lrw_get_mac_cb(skb) ((struct lrw_mac_cb *)skb->cb)
>
> Please make this a static inline function. If the identifier is all lowercase
> programmers expect it to be real code not a CPP macro.
Okay! Sure
> > +#define LORAWAN_MODULE_NAME "lorawan"
> > +
> > +#define LRW_DBG_STR(fmt) LORAWAN_MODULE_NAME": "fmt
> > +#define lrw_info(fmt, ...) (pr_info(LRW_DBG_STR(fmt), ##__VA_ARGS__))
> > +#define lrw_dbg(fmt, ...) (pr_debug(LRW_DBG_STR(fmt), ##__VA_ARGS__))
>
> Just define "pr_fmt()" appropriately and you don't need to play these kinds
> of games.
>
> Set pr_fmt() and call pr_info() and pr_debug() directly.
After checking printk.h again, I get the idea of the comment.
"pr_fmt()" is more convenient!
Thanks for the reviewing. I will make new patches.
Jian-Hong Pan
Powered by blists - more mailing lists