Hello,

30/07/2024 12:03, Rakesh Kudurumalla:
> This patch addresses the issue by introducing a delay

Please start with describing the issue.

> before acquiring the lock in the loop. This delay allows for better
> availability of the lock, ensuring that show_lcore_stats() can
> periodically update the statistics even when forwarding jobs are running.

Why a delay is better than a pause?

> @@ -542,7 +542,7 @@ l2fwd_main_loop(void)
>               } while (likely(stats_read_pending == 0));
>  
>               rte_spinlock_unlock(&qconf->lock);
> -             rte_pause();
> +             rte_delay_us(10);
>       }



Reply via email to