2022-10-06 08:24:58

by Tiezhu Yang

[permalink] [raw]
Subject: [PATCH v3 0/3] perf: Add more syscalls to benchmark

v3: Add __NR_ in tools/arch/x86/include/asm/unistd_*.h
to fix build error about __NR_ can't be found on x86_64
reported by kernel test robot, sorry for that.

Tiezhu Yang (3):
perf bench syscall: Introduce bench_syscall_common()
perf bench syscall: Add close syscall benchmark
perf bench syscall: Add execve syscall benchmark

tools/arch/x86/include/uapi/asm/unistd_32.h | 9 ++++
tools/arch/x86/include/uapi/asm/unistd_64.h | 9 ++++
tools/perf/bench/bench.h | 2 +
tools/perf/bench/syscall.c | 76 +++++++++++++++++++++++++++--
tools/perf/builtin-bench.c | 2 +
5 files changed, 94 insertions(+), 4 deletions(-)

--
2.1.0


2022-10-25 07:19:09

by Tiezhu Yang

[permalink] [raw]
Subject: Re: [PATCH v3 0/3] perf: Add more syscalls to benchmark



On 10/06/2022 03:42 PM, Tiezhu Yang wrote:
> v3: Add __NR_ in tools/arch/x86/include/asm/unistd_*.h
> to fix build error about __NR_ can't be found on x86_64
> reported by kernel test robot, sorry for that.
>
> Tiezhu Yang (3):
> perf bench syscall: Introduce bench_syscall_common()
> perf bench syscall: Add close syscall benchmark
> perf bench syscall: Add execve syscall benchmark
>
> tools/arch/x86/include/uapi/asm/unistd_32.h | 9 ++++
> tools/arch/x86/include/uapi/asm/unistd_64.h | 9 ++++
> tools/perf/bench/bench.h | 2 +
> tools/perf/bench/syscall.c | 76 +++++++++++++++++++++++++++--
> tools/perf/builtin-bench.c | 2 +
> 5 files changed, 94 insertions(+), 4 deletions(-)
>

Hi Arnaldo,

Any comments? Are you OK with this series?

Thanks,
Tiezhu