* [for-next][PATCH 0/2] tracing: Final update for 6.7
@ 2023-11-02 4:21 Steven Rostedt
2023-11-02 4:21 ` [for-next][PATCH 1/2] seq_buf: Export seq_buf_putc() Steven Rostedt
2023-11-02 4:21 ` [for-next][PATCH 2/2] seq_buf: Export seq_buf_puts() Steven Rostedt
0 siblings, 2 replies; 3+ messages in thread
From: Steven Rostedt @ 2023-11-02 4:21 UTC (permalink / raw)
To: linux-kernel; +Cc: Masami Hiramatsu, Mark Rutland, Andrew Morton
I said the last series was the final, well I lied.
This is more just enabling future seq_buf work and has nothing to do
with the eventfs file system (thank God!)
git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
trace/for-next
Head SHA1: 70a9affa930c7aeba27893c7d402ef1294f43aa2
Christophe JAILLET (2):
seq_buf: Export seq_buf_putc()
seq_buf: Export seq_buf_puts()
----
lib/seq_buf.c | 2 ++
1 file changed, 2 insertions(+)
^ permalink raw reply [flat|nested] 3+ messages in thread* [for-next][PATCH 1/2] seq_buf: Export seq_buf_putc()
2023-11-02 4:21 [for-next][PATCH 0/2] tracing: Final update for 6.7 Steven Rostedt
@ 2023-11-02 4:21 ` Steven Rostedt
2023-11-02 4:21 ` [for-next][PATCH 2/2] seq_buf: Export seq_buf_puts() Steven Rostedt
1 sibling, 0 replies; 3+ messages in thread
From: Steven Rostedt @ 2023-11-02 4:21 UTC (permalink / raw)
To: linux-kernel
Cc: Masami Hiramatsu, Mark Rutland, Andrew Morton, Christophe JAILLET
From: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Mark seq_buf_putc() which is part of the seq_buf API to be exported to
kernel loadable GPL modules.
Link: https://lkml.kernel.org/r/5c9a5ed97ac37dbdcd9c1e7bcbdec9ac166e79be.1698861216.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
---
lib/seq_buf.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/seq_buf.c b/lib/seq_buf.c
index 23518f77ea9c..fb99168c3309 100644
--- a/lib/seq_buf.c
+++ b/lib/seq_buf.c
@@ -208,6 +208,7 @@ int seq_buf_putc(struct seq_buf *s, unsigned char c)
seq_buf_set_overflow(s);
return -1;
}
+EXPORT_SYMBOL_GPL(seq_buf_putc);
/**
* seq_buf_putmem - write raw data into the sequenc buffer
--
2.42.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* [for-next][PATCH 2/2] seq_buf: Export seq_buf_puts()
2023-11-02 4:21 [for-next][PATCH 0/2] tracing: Final update for 6.7 Steven Rostedt
2023-11-02 4:21 ` [for-next][PATCH 1/2] seq_buf: Export seq_buf_putc() Steven Rostedt
@ 2023-11-02 4:21 ` Steven Rostedt
1 sibling, 0 replies; 3+ messages in thread
From: Steven Rostedt @ 2023-11-02 4:21 UTC (permalink / raw)
To: linux-kernel
Cc: Masami Hiramatsu, Mark Rutland, Andrew Morton, Christophe JAILLET
From: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Mark seq_buf_puts() which is part of the seq_buf API to be exported to
kernel loadable GPL modules.
Link: https://lkml.kernel.org/r/b9e3737f66ec2450221b492048ce0d9c65c84953.1698861216.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
---
lib/seq_buf.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/seq_buf.c b/lib/seq_buf.c
index fb99168c3309..010c730ca7fc 100644
--- a/lib/seq_buf.c
+++ b/lib/seq_buf.c
@@ -187,6 +187,7 @@ int seq_buf_puts(struct seq_buf *s, const char *str)
seq_buf_set_overflow(s);
return -1;
}
+EXPORT_SYMBOL_GPL(seq_buf_puts);
/**
* seq_buf_putc - sequence printing of simple character
--
2.42.0
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-11-02 4:22 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-02 4:21 [for-next][PATCH 0/2] tracing: Final update for 6.7 Steven Rostedt
2023-11-02 4:21 ` [for-next][PATCH 1/2] seq_buf: Export seq_buf_putc() Steven Rostedt
2023-11-02 4:21 ` [for-next][PATCH 2/2] seq_buf: Export seq_buf_puts() Steven Rostedt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®