Re: [PATCH] firewire: core: use WARN_ON_ONCE() to avoid superfluous dumps
Takashi Sakamoto <[email protected]>
| Newsgroups | gmane.linux.kernel,gmane.linux.kernel.firewire.devel |
|---|---|
| Message-ID | <[email protected]> |
On Thu, Sep 05, 2024 at 10:10:29PM +0900, Takashi Sakamoto wrote: > It is enough to notify programming mistakes to programmers just once. > > Suggested-by: Takashi Iwai <[email protected]> > Signed-off-by: Takashi Sakamoto <[email protected]> > --- > drivers/firewire/core-iso.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/firewire/core-iso.c b/drivers/firewire/core-iso.c > index af76fa1823f1..a249974a0f87 100644 > --- a/drivers/firewire/core-iso.c > +++ b/drivers/firewire/core-iso.c > @@ -220,7 +220,7 @@ int fw_iso_context_flush_completions(struct fw_iso_context *ctx) > might_sleep(); > > // Avoid dead lock due to programming mistake. > - if (WARN_ON(current_work() == &ctx->work)) > + if (WARN_ON_ONCE(current_work() == &ctx->work)) > return 0; > > disable_work_sync(&ctx->work); > @@ -244,7 +244,7 @@ int fw_iso_context_stop(struct fw_iso_context *ctx) > might_sleep(); > > // Avoid dead lock due to programming mistake. > - if (WARN_ON(current_work() == &ctx->work)) > + if (WARN_ON_ONCE(current_work() == &ctx->work)) > return 0; > > err = ctx->card->driver->stop_iso(ctx); Applied to for-next branch. Regards Takashi Sakamoto