tracing: Add trace_seq_pop() and seq_buf_pop()

In order to allow an interface to remove an added character from the
trace_seq and seq_buf descriptors, add helper functions trace_seq_pop()
and seq_buf_pop().

Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Takaya Saeki <takayas@google.com>
Cc: Tom Zanussi <zanussi@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ian Rogers <irogers@google.com>
Cc: Douglas Raillard <douglas.raillard@arm.com>
Cc: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Ingo Molnar <mingo@redhat.com>
Link: https://lore.kernel.org/20251028231148.594898736@kernel.org
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
This commit is contained in:
Steven Rostedt
2025-10-28 19:11:24 -04:00
committed by Steven Rostedt (Google)
parent e77ad6da90
commit 32e0f607ac
2 changed files with 30 additions and 0 deletions

View File

@@ -149,6 +149,23 @@ static inline void seq_buf_commit(struct seq_buf *s, int num)
}
}
/**
* seq_buf_pop - pop off the last written character
* @s: the seq_buf handle
*
* Removes the last written character to the seq_buf @s.
*
* Returns the last character or -1 if it is empty.
*/
static inline int seq_buf_pop(struct seq_buf *s)
{
if (!s->len)
return -1;
s->len--;
return (unsigned int)s->buffer[s->len];
}
extern __printf(2, 3)
int seq_buf_printf(struct seq_buf *s, const char *fmt, ...);
extern __printf(2, 0)

View File

@@ -80,6 +80,19 @@ static inline bool trace_seq_has_overflowed(struct trace_seq *s)
return s->full || seq_buf_has_overflowed(&s->seq);
}
/**
* trace_seq_pop - pop off the last written character
* @s: trace sequence descriptor
*
* Removes the last written character to the trace_seq @s.
*
* Returns the last character or -1 if it is empty.
*/
static inline int trace_seq_pop(struct trace_seq *s)
{
return seq_buf_pop(&s->seq);
}
/*
* Currently only defined when tracing is enabled.
*/