From: Greg KH <gregkh@linuxfoundation.org>
To: "Juan José Arboleda" <soyjuanarbol@gmail.com>
Cc: greybus-dev@lists.linaro.org, johan@kernel.org,
linux-staging@lists.linux.dev, pure.logic@nexus-software.ie,
trivial@kernel.org
Subject: Re: [PATCH v2] staging: greybus: break multi statement macro into multiple lines
Date: Thu, 18 Jul 2024 06:35:06 +0200 [thread overview]
Message-ID: <2024071822-silver-sandblast-754f@gregkh> (raw)
In-Reply-To: <20240718033207.333591-1-soyjuanarbol@gmail.com>
On Wed, Jul 17, 2024 at 10:32:07PM -0500, Juan José Arboleda wrote:
> The macro `gb_loopback_stats_attrs` in the Greybus loopback driver
> contains multiple statements, which should be enclosed in a do-while
> loop to ensure proper execution and adhere to coding standards.
>
> The latter is not possible as the macro expansion will create invalid C
> syntax. Theres is not such thing like inner function definition inside a
> global scope do-while in C.
>
> This patch nukes the `gb_loopback_stats_attrs` macro to enclose,
> addressing the style error flagged by checkpatch.pl.
The style error here is just wrong, the original code is fine.
Remember, checkpatch provides hints, it isn't always correct, and many
times, like this one, it's completely incorrect.
>
> Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com>
> ---
> Notes:
>
> This new version uses a bit different approach so the commit message
> will be a bit different as well.
>
> P.S: Thanks for being that patience and apologies for that false
> positive of building the non-included driver. Now it is tested-built.
>
> drivers/staging/greybus/loopback.c | 29 +++++++++++++++++++----------
> 1 file changed, 19 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/staging/greybus/loopback.c b/drivers/staging/greybus/loopback.c
> index 4313d3bbc23a..88d86b084f28 100644
> --- a/drivers/staging/greybus/loopback.c
> +++ b/drivers/staging/greybus/loopback.c
> @@ -162,11 +162,6 @@ static ssize_t name##_avg_show(struct device *dev, \
> } \
> static DEVICE_ATTR_RO(name##_avg)
>
> -#define gb_loopback_stats_attrs(field) \
> - gb_loopback_ro_stats_attr(field, min, u); \
> - gb_loopback_ro_stats_attr(field, max, u); \
> - gb_loopback_ro_avg_attr(field)
> -
> #define gb_loopback_attr(field, type) \
> static ssize_t field##_show(struct device *dev, \
> struct device_attribute *attr, \
> @@ -268,15 +263,29 @@ static void gb_loopback_check_attr(struct gb_loopback *gb)
> }
>
> /* Time to send and receive one message */
> -gb_loopback_stats_attrs(latency);
> +gb_loopback_ro_stats_attr(latency, min, u);
> +gb_loopback_ro_stats_attr(latency, max, u);
> +gb_loopback_ro_avg_attr(latency);
Unrolling the macro like this does fix the warning, but at the expense
of more code size and manual work. We write code first for us to
understand, and second for the compiler. The original code is just
fine, no need for a change at all.
sorry,
greg k-h
next prev parent reply other threads:[~2024-07-18 4:35 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-17 6:58 [PATCH] staging: greybus: Enclose multi-statement macro in do-while loop Juan José Arboleda
2024-07-17 7:50 ` Greg KH
2024-07-17 8:28 ` Juan José Arboleda
2024-07-17 8:45 ` Greg KH
2024-07-18 3:32 ` [PATCH v2] staging: greybus: break multi statement macro into multiple lines Juan José Arboleda
2024-07-18 4:35 ` Greg KH [this message]
2024-07-18 4:47 ` Dan Carpenter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2024071822-silver-sandblast-754f@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=greybus-dev@lists.linaro.org \
--cc=johan@kernel.org \
--cc=linux-staging@lists.linux.dev \
--cc=pure.logic@nexus-software.ie \
--cc=soyjuanarbol@gmail.com \
--cc=trivial@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox