All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Rui Miguel Silva" <rui.silva@linaro.org>
To: "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
	<stable@vger.kernel.org>
Subject: Re: [PATCH 2/3] usb: isp1760: do not sleep in field register poll
Date: Fri, 24 Sep 2021 16:35:40 +0100	[thread overview]
Message-ID: <CEI85GUCGPFO.2GIJLZMWZCXBJ@arch-thunder> (raw)
In-Reply-To: <20210727100516.4190681-3-rui.silva@linaro.org>

Hi Greg,
forgot to ask you, can you please merge this one to stable #5.14.y?
At the time I was not sure if it was getting in final 5.14 or not.

It applies clean on top of 5.14.7.
And without it, it triggers BUG sleep in atomic checks.

upstream commit:
41f673183862a1 usb: isp1760: do not sleep in field register poll
https://lore.kernel.org/r/20210727100516.4190681-3-rui.silva@linaro.org

fixes tag:
Fixes: 1da9e1c06873 ("usb: isp1760: move to regmap for register access")

Thanks in advance,
Cheers,
     Rui

On Tue Jul 27, 2021 at 11:05 AM WEST, Rui Miguel Silva wrote:

---- 8< ----------------------------------------------

> When polling for a setup or clear of a register field we were sleeping
> in atomic context but using a very tight sleep interval.
>
> Since the use cases for this poll mechanism are only in setup and
> stop paths, and in practice this poll is not used most of the times
> but needs to be there to comply to hardware setup times, remove the
> sleep time and make the poll loop tighter.
>
> Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
> Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>
> ---
>  drivers/usb/isp1760/isp1760-hcd.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/usb/isp1760/isp1760-hcd.c b/drivers/usb/isp1760/isp1760-hcd.c
> index a745c4c2b773..a018394d54f8 100644
> --- a/drivers/usb/isp1760/isp1760-hcd.c
> +++ b/drivers/usb/isp1760/isp1760-hcd.c
> @@ -250,7 +250,7 @@ static int isp1760_hcd_set_and_wait(struct usb_hcd *hcd, u32 field,
>  	isp1760_hcd_set(hcd, field);
>  
>  	return regmap_field_read_poll_timeout(priv->fields[field], val,
> -					      val, 10, timeout_us);
> +					      val, 0, timeout_us);
>  }
>  
>  static int isp1760_hcd_set_and_wait_swap(struct usb_hcd *hcd, u32 field,
> @@ -262,7 +262,7 @@ static int isp1760_hcd_set_and_wait_swap(struct usb_hcd *hcd, u32 field,
>  	isp1760_hcd_set(hcd, field);
>  
>  	return regmap_field_read_poll_timeout(priv->fields[field], val,
> -					      !val, 10, timeout_us);
> +					      !val, 0, timeout_us);
>  }
>  
>  static int isp1760_hcd_clear_and_wait(struct usb_hcd *hcd, u32 field,
> @@ -274,7 +274,7 @@ static int isp1760_hcd_clear_and_wait(struct usb_hcd *hcd, u32 field,
>  	isp1760_hcd_clear(hcd, field);
>  
>  	return regmap_field_read_poll_timeout(priv->fields[field], val,
> -					      !val, 10, timeout_us);
> +					      !val, 0, timeout_us);
>  }
>  
>  static bool isp1760_hcd_is_set(struct usb_hcd *hcd, u32 field)
> -- 
> 2.32.0




  reply	other threads:[~2021-09-24 15:35 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-27 10:05 [PATCH 0/3] usb: isp1760: cleanups and sleep in atomic Rui Miguel Silva
2021-07-27 10:05 ` [PATCH 1/3] usb: isp1760: remove debug message as error Rui Miguel Silva
2021-07-27 10:05 ` [PATCH 2/3] usb: isp1760: do not sleep in field register poll Rui Miguel Silva
2021-09-24 15:35   ` Rui Miguel Silva [this message]
2021-09-24 16:01     ` Greg Kroah-Hartman
2021-09-25  9:34       ` Rui Miguel Silva
2021-09-26 12:40     ` Greg Kroah-Hartman
2021-07-27 10:05 ` [PATCH 3/3] usb: isp1760: rework cache initialization error handling Rui Miguel Silva

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=CEI85GUCGPFO.2GIJLZMWZCXBJ@arch-thunder \
    --to=rui.silva@linaro.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=stable@vger.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.