[dpdk-stable] [dpdk-dev] [PATCH] net/qede: fix qede milliseconds sleep macro

Jerin Jacob jerinjacobk at gmail.com
Mon Sep 21 19:30:51 CEST 2020


On Mon, Jul 27, 2020 at 7:47 PM Devendra Singh Rawat
<dsinghrawat at marvell.com> wrote:
>
> The macro defined for milliseconds sleep was not putting the thread
> to sleep and was simply calling a delay routine. This fix redefines
> the macro to call the correct rte sleep API.
>
> Fixes: ec94dbc57362 ("qede: add base driver")
> Cc: stable at dpdk.org
>
> Signed-off-by: Devendra Singh Rawat <dsinghrawat at marvell.com>
> Signed-off-by: Igor Russkikh <irusskikh at marvell.com>
> Signed-off-by: Rasesh Mody <rmody at marvell.com>

Applied to dpdk-next-net-mrvl/master. Thanks


> ---
>  drivers/net/qede/base/bcm_osal.h | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/net/qede/base/bcm_osal.h b/drivers/net/qede/base/bcm_osal.h
> index 5d4df5907..ded4fb0f5 100644
> --- a/drivers/net/qede/base/bcm_osal.h
> +++ b/drivers/net/qede/base/bcm_osal.h
> @@ -81,9 +81,8 @@ typedef intptr_t osal_int_ptr_t;
>
>  #define DELAY(x) rte_delay_us(x)
>  #define usec_delay(x) DELAY(x)
> -#define msec_delay(x) DELAY(1000 * (x))
>  #define OSAL_UDELAY(time) usec_delay(time)
> -#define OSAL_MSLEEP(time) msec_delay(time)
> +#define OSAL_MSLEEP(time) rte_delay_us_sleep(1000 * (time))
>
>  /* Memory allocations and deallocations */
>
> --
> 2.18.2
>


More information about the stable mailing list