Re: [PATCH v6 2/2] Add l2reflect measurement application

2022-09-21 Thread Henning Schild
ocess and IPC but not sure it would be nice or how much code it would save. Henning > > further processed with the jitterdebugger visualization scripts. > > To debug latency spikes, a max threshold can be defined. > > If it is hit, a trace point is created on both instances. > >

Re: [PATCH] lib: do not call memcpy with sz zero and null pointer

2022-09-21 Thread Henning Schild
Am Wed, 21 Sep 2022 15:06:12 +0200 schrieb Thomas Monjalon : > 07/09/2022 17:05, Henning Schild: > > There is no point in such a call and UBSan complains about a call to > > memcpy with a null pointer as second arg. > > > > When building with -Db_sanitize=undefined

Re: [PATCH v6 0/2] Add l2reflect measurement application

2022-09-21 Thread Henning Schild
Am Wed, 21 Sep 2022 14:22:07 +0200 schrieb Morten Brørup : > > From: Henning Schild [mailto:henning.sch...@siemens.com] > > Sent: Wednesday, 21 September 2022 13.27 > > > > Am Wed, 21 Sep 2022 11:43:13 +0200 > > schrieb Morten Brørup : > > > > > &

Re: [PATCH v6 0/2] Add l2reflect measurement application

2022-09-21 Thread Henning Schild
Am Wed, 21 Sep 2022 11:43:13 +0200 schrieb Morten Brørup : > > From: Felix Moessbauer [mailto:felix.moessba...@siemens.com] > > Sent: Friday, 2 September 2022 10.46 > > > > Dear DPDK community, > > > > this patch provides the l2reflect measurement tool > > which will be discussed in our 2022 DPD

[PATCH] lib: do not call memcpy with sz zero and null pointer

2022-09-09 Thread Henning Schild
never be null A check of the sz before calling memcpy fixes that. Signed-off-by: Henning Schild --- lib/bpf/bpf_load.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/bpf/bpf_load.c b/lib/bpf/bpf_load.c index 0c4ac7be6c55..48d3d80ac3e3 100644 --- a/lib/bpf/bpf_load.c

[PATCH] devtools: give checkpatches.sh some way of finding the perl script

2022-09-09 Thread Henning Schild
Try and find the script in the sources of the currently running kernel so that users do not have to specify DPDK_CHECKPATCH_PATH which might well be the same location found by the educated guess. Signed-off-by: Henning Schild --- devtools/checkpatches.sh | 16 +++- 1 file changed

Re: [dpdk-dev] [PATCH v4 2/2] Add l2reflect measurement application

2020-09-02 Thread Henning Schild
Am Wed, 02 Sep 2020 10:30:22 +0200 schrieb Thomas Monjalon : > 02/09/2020 09:56, Henning Schild: > > Am Tue, 01 Sep 2020 17:07:38 +0200 > > schrieb Thomas Monjalon : > > > > > 28/08/2020 16:22, Henning Schild: > > > > Thomas, > > > > &g

Re: [dpdk-dev] [PATCH v4 2/2] Add l2reflect measurement application

2020-09-02 Thread Henning Schild
Am Tue, 01 Sep 2020 17:07:38 +0200 schrieb Thomas Monjalon : > 28/08/2020 16:22, Henning Schild: > > Thomas, > > > > what is the state on this one? Any more steps to take or people to > > involve? > > I can try adding some key people in Cc list, > while d

Re: [dpdk-dev] [PATCH v4 2/2] Add l2reflect measurement application

2020-08-28 Thread Henning Schild
spikes, a max threshold can be defined. > If it is hit, a trace point is created on both instances. > > Signed-off-by: Felix Moessbauer > Signed-off-by: Henning Schild > --- > app/Makefile | 1 + > app/l2reflect/Makefile| 14 + > app/l2reflect/l