Re: [dpdk-dev] [PATCH] eal/windows: fix default thread priority

2021-03-09 Thread Dmitry Kozlyuk
2021-02-18 13:40 (UTC+0200), Tal Shnaiderman: > The hard-coded thread priority for Windows threads in eal > is REALTIME_PRIORITY_CLASS/THREAD_PRIORITY_TIME_CRITICAL. > > This results in issues with DPDK threads causing OS thread starvation > and eventually a bugcheck. > > The fix reduce the threa

Re: [dpdk-dev] [PATCH] eal/windows: fix default thread priority

2021-03-09 Thread Tal Shnaiderman
> Subject: [dpdk-dev] [PATCH] eal/windows: fix default thread priority > > The hard-coded thread priority for Windows threads in eal is > REALTIME_PRIORITY_CLASS/THREAD_PRIORITY_TIME_CRITICAL. > > This results in issues with DPDK threads causing OS thread starvation and >

[dpdk-dev] [PATCH] eal/windows: fix default thread priority

2021-02-18 Thread Tal Shnaiderman
The hard-coded thread priority for Windows threads in eal is REALTIME_PRIORITY_CLASS/THREAD_PRIORITY_TIME_CRITICAL. This results in issues with DPDK threads causing OS thread starvation and eventually a bugcheck. The fix reduce the thread priority to NORMAL_PRIORITY_CLASS/THREAD_PRIORITY_NORMAL.