Re: [PATCH 7/9] drivers/base: fix empty-body warnings in devcoredump.c

From: Linus Torvalds
Date: Sat Apr 18 2020 - 15:16:20 EST


On Sat, Apr 18, 2020 at 11:57 AM Joe Perches <joe@xxxxxxxxxxx> wrote:
>
> sysfs_create_link is __must_check

The way to handle __must_check if you really really don't want to test
and have good reasons is

(a) add a big comment about why this case ostensibly doesn't need the check

(b) cast a test of it to '(void)' or something (I guess we could add
a helper for this). So something like

/* We will always clean up, we don't care whether this fails
or succeeds */
(void)!!sysfs_create_link(...)

There are other alternatives (like using WARN_ON_ONCE() instead, for
example). So it depends on the code. Which is why that comment is
important to show why the code chose that option.

However, I wonder if in this case we should just remove the
__must_check. Greg? It goes back a long long time.

Particularly for the "nowarn" version of that function. I'm not seeing
why you'd have to care, particularly if you don't even care about the
link already existing..

Linus