aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt (Google) <rostedt@goodmis.org>2023-12-29 12:14:50 -0500
committerSteven Rostedt (Google) <rostedt@goodmis.org>2023-12-29 12:32:27 -0500
commit15a0121f815799dd7021c7bce96ce722acc728c3 (patch)
tree0c6b51abe999a86cf772ad369da15c8ee0e84cfe
parent85a207894ad012db4156aafe18e164db2a83761b (diff)
downloadlibtraceevent-15a0121f815799dd7021c7bce96ce722acc728c3.tar.gz
libtraceevent Documentation: Fix tep_kbuffer() prototype
The tep_kbuffer() prototype was missing from its man page and was broken in the libtraceevent top man page. Link: https://lore.kernel.org/linux-trace-devel/20231229121450.7a19ccaa@gandalf.local.home Fixes: 6e637fba207d4 ("libtraceevent: Rename kbuffer_create() to tep_kbuffer()") Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
-rw-r--r--Documentation/libtraceevent-handle.txt1
-rw-r--r--Documentation/libtraceevent.txt2
2 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/libtraceevent-handle.txt b/Documentation/libtraceevent-handle.txt
index 64528eb..fd55712 100644
--- a/Documentation/libtraceevent-handle.txt
+++ b/Documentation/libtraceevent-handle.txt
@@ -17,6 +17,7 @@ void *tep_free*(struct tep_handle pass:[*]_tep_);
void *tep_ref*(struct tep_handle pass:[*]_tep_);
void *tep_unref*(struct tep_handle pass:[*]_tep_);
int *tep_get_ref*(struct tep_handle pass:[*]_tep_);
+struct kbuffer pass:[*]*tep_kbuffer*(struct tep_handle pass:[*]_tep_);
--
DESCRIPTION
diff --git a/Documentation/libtraceevent.txt b/Documentation/libtraceevent.txt
index 26e3ad2..9e77772 100644
--- a/Documentation/libtraceevent.txt
+++ b/Documentation/libtraceevent.txt
@@ -33,7 +33,7 @@ Management of tep handler data structure and access of its members:
int *tep_get_header_timestamp_size*(struct tep_handle pass:[*]_tep_);
bool *tep_is_old_format*(struct tep_handle pass:[*]_tep_);
int *tep_strerror*(struct tep_handle pass:[*]_tep_, enum tep_errno _errnum_, char pass:[*]_buf_, size_t _buflen_);
- struct kbuffer pass:[*]*tep_kbuffer*(struct tep_handle pass:[*]:_tep_);
+ struct kbuffer pass:[*]*tep_kbuffer*(struct tep_handle pass:[*]_tep_);
Register / unregister APIs:
int *tep_register_function*(struct tep_handle pass:[*]_tep_, char pass:[*]_name_, unsigned long long _addr_, char pass:[*]_mod_);