* [PATCH] staging: rtl8188eu: replaced msleep() by usleep_range()
@ 2021-04-12 6:10 Mitali Borkar
2021-04-12 6:19 ` Greg KH
0 siblings, 1 reply; 3+ messages in thread
From: Mitali Borkar @ 2021-04-12 6:10 UTC (permalink / raw)
To: Larry.Finger, gregkh
Cc: linux-staging, linux-kernel, outreachy-kernel, mitali_s
Fixed the warning:-msleep < 20ms can sleep for up to 20ms by replacing
msleep(unsigned long msecs) by usleep_range(unsigned long min, unsigned long max)
in usecs as msleep(1ms~20ms) can sleep for upto 20 ms.
Signed-off-by: Mitali Borkar <mitaliborkar810@gmail.com>
---
drivers/staging/rtl8188eu/core/rtw_mlme_ext.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c b/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c
index 50d3c3631be0..6afbb5bf8118 100644
--- a/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c
+++ b/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c
@@ -5396,7 +5396,7 @@ u8 tx_beacon_hdl(struct adapter *padapter, unsigned char *pbuf)
return H2C_SUCCESS;
if ((pstapriv->tim_bitmap & BIT(0)) && (psta_bmc->sleepq_len > 0)) {
- msleep(10);/* 10ms, ATIM(HIQ) Windows */
+ usleep_range(10000 , 20000);/* 10ms, ATIM(HIQ) Windows */
spin_lock_bh(&psta_bmc->sleep_q.lock);
xmitframe_phead = get_list_head(&psta_bmc->sleep_q);
--
2.30.2
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] staging: rtl8188eu: replaced msleep() by usleep_range()
2021-04-12 6:10 [PATCH] staging: rtl8188eu: replaced msleep() by usleep_range() Mitali Borkar
@ 2021-04-12 6:19 ` Greg KH
2021-04-12 7:59 ` Mitali Borkar
0 siblings, 1 reply; 3+ messages in thread
From: Greg KH @ 2021-04-12 6:19 UTC (permalink / raw)
To: Mitali Borkar
Cc: Larry.Finger, linux-staging, linux-kernel, outreachy-kernel,
mitali_s
On Mon, Apr 12, 2021 at 11:40:53AM +0530, Mitali Borkar wrote:
> Fixed the warning:-msleep < 20ms can sleep for up to 20ms by replacing
> msleep(unsigned long msecs) by usleep_range(unsigned long min, unsigned long max)
> in usecs as msleep(1ms~20ms) can sleep for upto 20 ms.
>
> Signed-off-by: Mitali Borkar <mitaliborkar810@gmail.com>
> ---
> drivers/staging/rtl8188eu/core/rtw_mlme_ext.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c b/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c
> index 50d3c3631be0..6afbb5bf8118 100644
> --- a/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c
> +++ b/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c
> @@ -5396,7 +5396,7 @@ u8 tx_beacon_hdl(struct adapter *padapter, unsigned char *pbuf)
> return H2C_SUCCESS;
>
> if ((pstapriv->tim_bitmap & BIT(0)) && (psta_bmc->sleepq_len > 0)) {
> - msleep(10);/* 10ms, ATIM(HIQ) Windows */
> + usleep_range(10000 , 20000);/* 10ms, ATIM(HIQ) Windows */
How do you know you can sleep for 20000 here?
And given that you just changed how the sleep works, are you sure the
functionality is the same now?
Only change this type of warning if you have the hardware and can test
the change properly.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] staging: rtl8188eu: replaced msleep() by usleep_range()
2021-04-12 6:19 ` Greg KH
@ 2021-04-12 7:59 ` Mitali Borkar
0 siblings, 0 replies; 3+ messages in thread
From: Mitali Borkar @ 2021-04-12 7:59 UTC (permalink / raw)
To: Greg KH
Cc: Larry.Finger, linux-staging, linux-kernel, outreachy-kernel,
mitali_s
On Mon, Apr 12, 2021 at 08:19:02AM +0200, Greg KH wrote:
> On Mon, Apr 12, 2021 at 11:40:53AM +0530, Mitali Borkar wrote:
> > Fixed the warning:-msleep < 20ms can sleep for up to 20ms by replacing
> > msleep(unsigned long msecs) by usleep_range(unsigned long min, unsigned long max)
> > in usecs as msleep(1ms~20ms) can sleep for upto 20 ms.
> >
> > Signed-off-by: Mitali Borkar <mitaliborkar810@gmail.com>
> > ---
> > drivers/staging/rtl8188eu/core/rtw_mlme_ext.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c b/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c
> > index 50d3c3631be0..6afbb5bf8118 100644
> > --- a/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c
> > +++ b/drivers/staging/rtl8188eu/core/rtw_mlme_ext.c
> > @@ -5396,7 +5396,7 @@ u8 tx_beacon_hdl(struct adapter *padapter, unsigned char *pbuf)
> > return H2C_SUCCESS;
> >
> > if ((pstapriv->tim_bitmap & BIT(0)) && (psta_bmc->sleepq_len > 0)) {
> > - msleep(10);/* 10ms, ATIM(HIQ) Windows */
> > + usleep_range(10000 , 20000);/* 10ms, ATIM(HIQ) Windows */
>
> How do you know you can sleep for 20000 here?
>
When i ran checkpatch.pl it warned that msleep<20 ms can sleep for 20ms.
I checked Documentation, it stated that msleep(1ms~20ms) will often
sleep longer, ~20ms for any value given in between 1~20ms.
That's why I took 20msec/20000usec as max sleep value.
> And given that you just changed how the sleep works, are you sure the
> functionality is the same now?
I am still learning, I am not sure about this.
>
> Only change this type of warning if you have the hardware and can test
> the change properly.
>
> thanks,
>
> greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-04-12 7:59 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-12 6:10 [PATCH] staging: rtl8188eu: replaced msleep() by usleep_range() Mitali Borkar
2021-04-12 6:19 ` Greg KH
2021-04-12 7:59 ` Mitali Borkar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox