Re: [PATCH bpf-next 1/4] selftests/bpf: Handle SIGINT when creating netns

2024-05-07 Thread Matthieu Baerts
Hi Alexei, Thank you for the review! On 07/05/2024 16:43, Alexei Starovoitov wrote: > On Tue, May 7, 2024 at 3:53 AM Matthieu Baerts (NGI0) > wrote: >> >> From: Geliang Tang >> >> It's necessary to delete netns during the MPTCP bpf tests interrupt, >> otherwise the next tests run will fail due

Re: [PATCH bpf-next 1/4] selftests/bpf: Handle SIGINT when creating netns

2024-05-07 Thread Alexei Starovoitov
On Tue, May 7, 2024 at 3:53 AM Matthieu Baerts (NGI0) wrote: > > From: Geliang Tang > > It's necessary to delete netns during the MPTCP bpf tests interrupt, > otherwise the next tests run will fail due to unable to create netns. > > This patch adds a new SIGINT handle sig_int, and deletes

[PATCH bpf-next 1/4] selftests/bpf: Handle SIGINT when creating netns

2024-05-07 Thread Matthieu Baerts (NGI0)
From: Geliang Tang It's necessary to delete netns during the MPTCP bpf tests interrupt, otherwise the next tests run will fail due to unable to create netns. This patch adds a new SIGINT handle sig_int, and deletes NS_TEST in it. Signed-off-by: Geliang Tang Reviewed-by: Mat Martineau