[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <718da5cc-1ab1-45ec-b61a-8a11162b2f15@bootlin.com>
Date: Wed, 29 Jan 2025 07:57:44 +0100
From: Bastien Curutchet <bastien.curutchet@...tlin.com>
To: Martin KaFai Lau <martin.lau@...ux.dev>
Cc: Alexei Starovoitov <ast@...nel.org>,
Daniel Borkmann <daniel@...earbox.net>, "David S. Miller"
<davem@...emloft.net>, Jakub Kicinski <kuba@...nel.org>,
Jesper Dangaard Brouer <hawk@...nel.org>,
John Fastabend <john.fastabend@...il.com>,
Andrii Nakryiko <andrii@...nel.org>, Eduard Zingerman <eddyz87@...il.com>,
Song Liu <song@...nel.org>, Yonghong Song <yonghong.song@...ux.dev>,
KP Singh <kpsingh@...nel.org>, Stanislav Fomichev <sdf@...ichev.me>,
Hao Luo <haoluo@...gle.com>, Jiri Olsa <jolsa@...nel.org>,
Mykola Lysenko <mykolal@...com>, Shuah Khan <shuah@...nel.org>,
Alexis Lothore <alexis.lothore@...tlin.com>,
Thomas Petazzoni <thomas.petazzoni@...tlin.com>, netdev@...r.kernel.org,
bpf@...r.kernel.org, linux-kselftest@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH bpf-next v3 01/14] selftests/bpf: helpers: Add
append_tid()
Hi Martin,
On 1/28/25 11:49 PM, Martin KaFai Lau wrote:
> On 1/28/25 1:57 AM, Bastien Curutchet (eBPF Foundation) wrote:
>> Some tests can't be run in parallel because they use same namespace
>> names or veth names.
>>
>> Create an helper that appends the thread ID to a given string. 8
>> characters are used for it (7 digits + '\0')
>>
>> Signed-off-by: Bastien Curutchet (eBPF Foundation)
>> <bastien.curutchet@...tlin.com>
>> ---
>> tools/testing/selftests/bpf/network_helpers.c | 11 +++++++++++
>> tools/testing/selftests/bpf/network_helpers.h | 10 ++++++++++
>> 2 files changed, 21 insertions(+)
>>
>> diff --git a/tools/testing/selftests/bpf/network_helpers.c b/tools/
>> testing/selftests/bpf/network_helpers.c
>> index
>> 80844a5fb1feef2ff73c2f0293e52495803ab769..d2ff7521aaa696ed04d8f1308394b4c01c1c038b 100644
>> --- a/tools/testing/selftests/bpf/network_helpers.c
>> +++ b/tools/testing/selftests/bpf/network_helpers.c
>> @@ -446,6 +446,17 @@ char *ping_command(int family)
>> return "ping";
>> }
>> +int append_tid(char *str, size_t offset)
> nit. offset should always be strlen(str) now. The append_tid will be
> easier to use if the append_tid always does the strlen() itself to
> figure out the end of the str.
>
> It will be useful to replace the "size_t offset" arg with "size_t sz"
> which tells the max size of the "char *str" and the append_tid does a
> check to ensure there is enough space to append the "%07d" tid.
>
Ok, I'll do that.
Best regards,
Bastien
Powered by blists - more mailing lists