[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20240906154226.GA6012@workstation.local>
Date: Sat, 7 Sep 2024 00:42:26 +0900
From: Takashi Sakamoto <o-takashi@...amocchi.jp>
To: linux1394-devel@...ts.sourceforge.net
Cc: Takashi Iwai <tiwai@...e.de>, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] firewire: core: use WARN_ON_ONCE() to avoid superfluous
dumps
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 <tiwai@...e.de>
> Signed-off-by: Takashi Sakamoto <o-takashi@...amocchi.jp>
> ---
> 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
Powered by blists - more mailing lists