From: Steven Rostedt <rostedt@goodmis.org>
To: linux-kernel@vger.kernel.org
Cc: Masami Hiramatsu <mhiramat@kernel.org>,
Mark Rutland <mark.rutland@arm.com>,
Mathieu Desnoyers <mathieu.desnoyers@efficios.com>,
Andrew Morton <akpm@linux-foundation.org>
Subject: [for-next][PATCH 0/5] tracing/rust: Add tracepoints for rust code
Date: Tue, 05 Nov 2024 09:18:46 -0500 [thread overview]
Message-ID: <20241105141846.641050484@goodmis.org> (raw)
git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
rust/for-next
Head SHA1: 169484ab667788e73d1817d75c2a2c4af37dbc7f
Alice Ryhl (5):
rust: add static_branch_unlikely for static_key_false
rust: add tracepoint support
rust: samples: add tracepoint to Rust sample
jump_label: adjust inline asm to be consistent
rust: add arch_static_branch
----
MAINTAINERS | 1 +
arch/arm/include/asm/jump_label.h | 14 ++++---
arch/arm64/include/asm/jump_label.h | 20 +++++----
arch/loongarch/include/asm/jump_label.h | 16 ++++---
arch/riscv/include/asm/jump_label.h | 50 ++++++++++++----------
arch/x86/include/asm/jump_label.h | 35 ++++++----------
include/linux/tracepoint.h | 28 ++++++++++++-
include/trace/define_trace.h | 12 ++++++
include/trace/events/rust_sample.h | 31 ++++++++++++++
rust/Makefile | 6 +++
rust/bindings/bindings_helper.h | 3 ++
rust/helpers/helpers.c | 1 +
rust/helpers/jump_label.c | 14 +++++++
rust/kernel/.gitignore | 3 ++
rust/kernel/arch_static_branch_asm.rs.S | 7 ++++
rust/kernel/jump_label.rs | 74 +++++++++++++++++++++++++++++++++
rust/kernel/lib.rs | 37 +++++++++++++++++
rust/kernel/tracepoint.rs | 49 ++++++++++++++++++++++
samples/rust/Makefile | 3 +-
samples/rust/rust_print.rs | 18 ++++++++
samples/rust/rust_print_events.c | 8 ++++
scripts/Makefile.build | 9 +++-
22 files changed, 374 insertions(+), 65 deletions(-)
create mode 100644 include/trace/events/rust_sample.h
create mode 100644 rust/helpers/jump_label.c
create mode 100644 rust/kernel/.gitignore
create mode 100644 rust/kernel/arch_static_branch_asm.rs.S
create mode 100644 rust/kernel/jump_label.rs
create mode 100644 rust/kernel/tracepoint.rs
create mode 100644 samples/rust/rust_print_events.c
next reply other threads:[~2024-11-05 14:19 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-05 14:18 Steven Rostedt [this message]
2024-11-05 14:18 ` [for-next][PATCH 1/5] rust: add static_branch_unlikely for static_key_false Steven Rostedt
2024-11-05 14:18 ` [for-next][PATCH 2/5] rust: add tracepoint support Steven Rostedt
2024-11-05 14:18 ` [for-next][PATCH 3/5] rust: samples: add tracepoint to Rust sample Steven Rostedt
2024-11-05 14:18 ` [for-next][PATCH 4/5] jump_label: adjust inline asm to be consistent Steven Rostedt
2024-11-05 14:18 ` [for-next][PATCH 5/5] rust: add arch_static_branch Steven Rostedt
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=20241105141846.641050484@goodmis.org \
--to=rostedt@goodmis.org \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mathieu.desnoyers@efficios.com \
--cc=mhiramat@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.