Re: [ovs-dev] [PATCH v2] utilities: Add TASK_STOPPED accounting to the kernel_delay.py script.

2024-02-20 Thread Eelco Chaudron
On 30 Jan 2024, at 10:53, Simon Horman wrote: > On Mon, Jan 29, 2024 at 01:51:42PM +0100, Eelco Chaudron wrote: >> This changes add statistics for when a thread is put into stop state. >> For example with the following: >> >> kill -STOP $(pidof ovs-vswitchd); sleep 1; kill -CONT $(pidof

Re: [ovs-dev] [PATCH v2] utilities: Add TASK_STOPPED accounting to the kernel_delay.py script.

2024-01-30 Thread Simon Horman
On Mon, Jan 29, 2024 at 01:51:42PM +0100, Eelco Chaudron wrote: > This changes add statistics for when a thread is put into stop state. > For example with the following: > > kill -STOP $(pidof ovs-vswitchd); sleep 1; kill -CONT $(pidof ovs-vswitchd); > > Acked-by: Simon Horman > Signed-off-by:

[ovs-dev] [PATCH v2] utilities: Add TASK_STOPPED accounting to the kernel_delay.py script.

2024-01-29 Thread Eelco Chaudron
This changes add statistics for when a thread is put into stop state. For example with the following: kill -STOP $(pidof ovs-vswitchd); sleep 1; kill -CONT $(pidof ovs-vswitchd); Acked-by: Simon Horman Signed-off-by: Eelco Chaudron --- v2: - Removed worst/max ns delay zero checks.