From: Charlie Jenkins <charlie@rivosinc.com>
To: Arnd Bergmann <arnd@arndb.de>
Cc: "Peter Zijlstra" <peterz@infradead.org>,
"Ingo Molnar" <mingo@redhat.com>,
"Arnaldo Carvalho de Melo" <acme@kernel.org>,
"Namhyung Kim" <namhyung@kernel.org>,
"Mark Rutland" <mark.rutland@arm.com>,
"Alexander Shishkin" <alexander.shishkin@linux.intel.com>,
"Jiri Olsa" <jolsa@kernel.org>, "Ian Rogers" <irogers@google.com>,
"Adrian Hunter" <adrian.hunter@intel.com>,
"Paul Walmsley" <paul.walmsley@sifive.com>,
"Palmer Dabbelt" <palmer@dabbelt.com>,
"Albert Ou" <aou@eecs.berkeley.edu>,
"Mickaël Salaün" <mic@digikod.net>,
"Günther Noack" <gnoack@google.com>,
"Christian Brauner" <brauner@kernel.org>,
guoren <guoren@kernel.org>,
"John Garry" <john.g.garry@oracle.com>,
"Will Deacon" <will@kernel.org>,
"James Clark" <james.clark@linaro.org>,
"Mike Leach" <mike.leach@linaro.org>,
"Leo Yan" <leo.yan@linux.dev>, "Jonathan Corbet" <corbet@lwn.net>,
linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org,
linux-riscv@lists.infradead.org,
linux-security-module@vger.kernel.org, bpf@vger.kernel.org,
"linux-csky@vger.kernel.org" <linux-csky@vger.kernel.org>,
linux-arm-kernel@lists.infradead.org, linux-doc@vger.kernel.org
Subject: Re: [PATCH RFT 00/16] perf tools: Use generic syscall scripts for all archs
Date: Mon, 4 Nov 2024 13:32:53 -0800 [thread overview]
Message-ID: <Zyk9hX8CB_2rbWsi@ghost> (raw)
In-Reply-To: <3b56fc50-4c6c-4520-adba-461797a3b5ec@app.fastmail.com>
On Mon, Nov 04, 2024 at 10:13:18PM +0100, Arnd Bergmann wrote:
> On Mon, Nov 4, 2024, at 22:06, Charlie Jenkins wrote:
> > Standardize the generation of syscall headers around syscall tables.
> > Previously each architecture independently selected how syscall headers
> > would be generated, or would not define a way and fallback onto
> > libaudit. Convert all architectures to use a standard syscall header
> > generation script and allow each architecture to override the syscall
> > table to use if they do not use the generic table.
> >
> > As a result of these changes, no architecture will require libaudit, and
> > so the fallback case of using libaudit is removed by this series.
> >
> > Testing:
> >
> > I have tested that the syscall mappings of id to name generation works
> > as expected for every architecture, but I have only validated that perf
> > trace compiles and runs as expected on riscv, arm64, and x86_64.
> >
> > Signed-off-by: Charlie Jenkins <charlie@rivosinc.com>
>
> Thanks for doing this, I had plans to do this myself, but hadn't
> completed that bit so far. I'm travelling at the moment, so I'm
> not sure I have time to look at it in enough detail this week.
>
> One problem I ran into doing this previously was the incompatible
> format of the tables for x86 and s390, which have conflicting
> interpretations of what the '-' character means. It's possible
> that this is only really relevant for the in-kernel table,
> not the version in tools.
>
I don't think that is an issue for this usecase because the only
information that is taken from the syscall table is the number and the
name of the syscall. '-' doesn't appear in either of these columns!
- Charlie
> Arnd
WARNING: multiple messages have this Message-ID (diff)
From: Charlie Jenkins <charlie@rivosinc.com>
To: Arnd Bergmann <arnd@arndb.de>
Cc: "Peter Zijlstra" <peterz@infradead.org>,
"Ingo Molnar" <mingo@redhat.com>,
"Arnaldo Carvalho de Melo" <acme@kernel.org>,
"Namhyung Kim" <namhyung@kernel.org>,
"Mark Rutland" <mark.rutland@arm.com>,
"Alexander Shishkin" <alexander.shishkin@linux.intel.com>,
"Jiri Olsa" <jolsa@kernel.org>, "Ian Rogers" <irogers@google.com>,
"Adrian Hunter" <adrian.hunter@intel.com>,
"Paul Walmsley" <paul.walmsley@sifive.com>,
"Palmer Dabbelt" <palmer@dabbelt.com>,
"Albert Ou" <aou@eecs.berkeley.edu>,
"Mickaël Salaün" <mic@digikod.net>,
"Günther Noack" <gnoack@google.com>,
"Christian Brauner" <brauner@kernel.org>,
guoren <guoren@kernel.org>,
"John Garry" <john.g.garry@oracle.com>,
"Will Deacon" <will@kernel.org>,
"James Clark" <james.clark@linaro.org>,
"Mike Leach" <mike.leach@linaro.org>,
"Leo Yan" <leo.yan@linux.dev>, "Jonathan Corbet" <corbet@lwn.net>,
linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org,
linux-riscv@lists.infradead.org,
linux-security-module@vger.kernel.org, bpf@vger.kernel.org,
"linux-csky@vger.kernel.org" <linux-csky@vger.kernel.org>,
linux-arm-kernel@lists.infradead.org, linux-doc@vger.kernel.org
Subject: Re: [PATCH RFT 00/16] perf tools: Use generic syscall scripts for all archs
Date: Mon, 4 Nov 2024 13:32:53 -0800 [thread overview]
Message-ID: <Zyk9hX8CB_2rbWsi@ghost> (raw)
In-Reply-To: <3b56fc50-4c6c-4520-adba-461797a3b5ec@app.fastmail.com>
On Mon, Nov 04, 2024 at 10:13:18PM +0100, Arnd Bergmann wrote:
> On Mon, Nov 4, 2024, at 22:06, Charlie Jenkins wrote:
> > Standardize the generation of syscall headers around syscall tables.
> > Previously each architecture independently selected how syscall headers
> > would be generated, or would not define a way and fallback onto
> > libaudit. Convert all architectures to use a standard syscall header
> > generation script and allow each architecture to override the syscall
> > table to use if they do not use the generic table.
> >
> > As a result of these changes, no architecture will require libaudit, and
> > so the fallback case of using libaudit is removed by this series.
> >
> > Testing:
> >
> > I have tested that the syscall mappings of id to name generation works
> > as expected for every architecture, but I have only validated that perf
> > trace compiles and runs as expected on riscv, arm64, and x86_64.
> >
> > Signed-off-by: Charlie Jenkins <charlie@rivosinc.com>
>
> Thanks for doing this, I had plans to do this myself, but hadn't
> completed that bit so far. I'm travelling at the moment, so I'm
> not sure I have time to look at it in enough detail this week.
>
> One problem I ran into doing this previously was the incompatible
> format of the tables for x86 and s390, which have conflicting
> interpretations of what the '-' character means. It's possible
> that this is only really relevant for the in-kernel table,
> not the version in tools.
>
I don't think that is an issue for this usecase because the only
information that is taken from the syscall table is the number and the
name of the syscall. '-' doesn't appear in either of these columns!
- Charlie
> Arnd
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
next prev parent reply other threads:[~2024-11-04 21:32 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-04 21:06 [PATCH RFT 00/16] perf tools: Use generic syscall scripts for all archs Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:06 ` [PATCH RFT 01/16] perf tools: Create generic syscall table support Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:06 ` [PATCH RFT 02/16] perf tools: arc: Support generic syscall headers Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:06 ` [PATCH RFT 03/16] perf tools: csky: " Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:06 ` [PATCH RFT 04/16] perf tools: arm: Support " Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:06 ` [PATCH RFT 05/16] perf tools: sh: " Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:06 ` [PATCH RFT 06/16] perf tools: sparc: " Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:06 ` [PATCH RFT 07/16] perf tools: xtensa: Support syscall header Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:06 ` [PATCH RFT 08/16] perf tools: x86: Use generic syscall scripts Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:06 ` [PATCH RFT 09/16] perf tools: alpha: Support syscall header Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:06 ` [PATCH RFT 10/16] perf tools: parisc: " Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:06 ` [PATCH RFT 11/16] perf tools: arm64: Use syscall table Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:06 ` [PATCH RFT 12/16] perf tools: loongarch: " Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:06 ` [PATCH RFT 13/16] perf tools: mips: Use generic syscall scripts Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:06 ` [PATCH RFT 14/16] perf tools: powerpc: Use generic syscall table scripts Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:06 ` [PATCH RFT 15/16] perf tools: s390: " Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:06 ` [PATCH RFT 16/16] perf tools: Remove dependency on libaudit Charlie Jenkins
2024-11-04 21:06 ` Charlie Jenkins
2024-11-04 21:13 ` [PATCH RFT 00/16] perf tools: Use generic syscall scripts for all archs Arnd Bergmann
2024-11-04 21:13 ` Arnd Bergmann
2024-11-04 21:32 ` Charlie Jenkins [this message]
2024-11-04 21:32 ` Charlie Jenkins
2024-11-04 22:03 ` Ian Rogers
2024-11-04 22:03 ` Ian Rogers
2024-11-04 23:35 ` Charlie Jenkins
2024-11-04 23:35 ` Charlie Jenkins
2024-11-21 4:22 ` Charlie Jenkins
2024-11-21 4:22 ` Charlie Jenkins
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Zyk9hX8CB_2rbWsi@ghost \
--to=charlie@rivosinc.com \
--cc=acme@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=aou@eecs.berkeley.edu \
--cc=arnd@arndb.de \
--cc=bpf@vger.kernel.org \
--cc=brauner@kernel.org \
--cc=corbet@lwn.net \
--cc=gnoack@google.com \
--cc=guoren@kernel.org \
--cc=irogers@google.com \
--cc=james.clark@linaro.org \
--cc=john.g.garry@oracle.com \
--cc=jolsa@kernel.org \
--cc=leo.yan@linux.dev \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-csky@vger.kernel.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=linux-security-module@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mic@digikod.net \
--cc=mike.leach@linaro.org \
--cc=mingo@redhat.com \
--cc=namhyung@kernel.org \
--cc=palmer@dabbelt.com \
--cc=paul.walmsley@sifive.com \
--cc=peterz@infradead.org \
--cc=will@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.