diff mbox series

[1/4] libtracefs: Add the get_affinity functions to the main libtracefs man page

Message ID 20220119155741.1766541-2-rostedt@goodmis.org (mailing list archive)
State Accepted
Commit 438e81951f905e4f274e265d0f379de02ea0ce7f
Headers show
Series libtracefs: Address the comments that Tzvetomir had for the get affinity functions | expand

Commit Message

Steven Rostedt Jan. 19, 2022, 3:57 p.m. UTC
From: "Steven Rostedt (Google)" <rostedt@goodmis.org>

The main libtracefs man page should contain all the available API
functions.

Link: https://lore.kernel.org/all/CAPpZLN4n=L-ZHCXM+LDRiQu0XwR4iCnGeCKJOuOWenkz2EhESA@mail.gmail.com/

Reported-by: Tzvetomir Stoyanov <tz.stoyanov@gmail.com>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
---
 Documentation/libtracefs.txt | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

diff --git a/Documentation/libtracefs.txt b/Documentation/libtracefs.txt
index e7eb090b8268..33988007d865 100644
--- a/Documentation/libtracefs.txt
+++ b/Documentation/libtracefs.txt
@@ -35,6 +35,9 @@  Trace instances:
 	int *tracefs_instance_set_affinity*(struct tracefs_instance pass:[*]_instance_, const char pass:[*]_cpu_str_);
 	int *tracefs_instance_set_affinity_set*(struct tracefs_instance pass:[*]_instance_, cpu_set_t pass:[*]_set_, size_t _set_size_);
 	int *tracefs_instance_set_affinity_raw*(struct tracefs_instance pass:[*]_instance_, const char pass:[*]_mask_);
+	char pass:[*]*tracefs_instance_get_affinity*(struct tracefs_instance pass:[*]_instance_);
+	int *tracefs_instance_get_affinity_set*(struct tracefs_instance pass:[*]_instance_, cpu_set_t pass:[*]_set_, size_t _set_size_);
+	char pass:[*]*tracefs_instance_get_affinity_raw*(struct tracefs_instance pass:[*]_instance_);
 
 Trace events:
 	char pass:[*]pass:[*]*tracefs_event_systems*(const char pass:[*]_tracing_dir_);