* [man-pages PATCH 1/5] s390_runtime_instr.2: note that runtime_instr.h is not a public header
@ 2018-01-14 18:56 Eugene Syromyatnikov
[not found] ` <20180114185622.GA23506-ZbobWygYI+YXGNroddHbYwC/G2K4zDHf@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Eugene Syromyatnikov @ 2018-01-14 18:56 UTC (permalink / raw)
To: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w
Cc: linux-man-u79uwXL29TY76Z2rM5mHXA, Martin Schwidefsky,
linux-s390-u79uwXL29TY76Z2rM5mHXA, QingFeng Hao, Jan Glauber,
Alexey Ishchuk
For some reason, runtime_instr.h is inside arch/s390/include/asm/ and
not arch/s390/include/uapi/asm/, so it's not readily available to the
user space programs. Let's reflect it.
* man2/s390_runtime_instr.2 (.SH SYNOPSYS): Comment out the #include
<asm/runtime_instr.h> statement.
(.SH NOTES): Note the existence and presence of runtime_instr.h header
inside the Linux kernel source tree.
---
man2/s390_runtime_instr.2 | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/man2/s390_runtime_instr.2 b/man2/s390_runtime_instr.2
index 18c2c07..f979692 100644
--- a/man2/s390_runtime_instr.2
+++ b/man2/s390_runtime_instr.2
@@ -27,8 +27,9 @@
s390_runtime_instr \- enable/disable s390 CPU run-time instrumentation
.SH SYNOPSIS
.nf
-.B #include <asm/runtime_instr.h>
-.PP
+.\" This header never had been a part of uapi as of 4.15
+.\" .B #include <asm/runtime_instr.h>
+.\" .PP
.BI "int s390_runtime_instr(int " command ", int " signum ");
.fi
.SH DESCRIPTION
@@ -85,6 +86,12 @@ The run-time instrumentation facility is available beginning with System z EC12.
Glibc does not provide a wrapper for this system call, use
.BR syscall (2)
to call it.
+.PP
+Kernel's header
+.B arch/s390/include/asm/runtime_instr.h
+contains the necessary declarations for using run-time instrumentation.
+Unfortunately, it hasn't been included as a part of Linux's UAPI
+as of Linux 4.15.
.SH SEE ALSO
.BR syscall (2),
.BR signal (7)
--
2.1.4
--
To unsubscribe from this list: send the line "unsubscribe linux-man" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 4+ messages in thread[parent not found: <20180114185622.GA23506-ZbobWygYI+YXGNroddHbYwC/G2K4zDHf@public.gmane.org>]
* Re: [man-pages PATCH 1/5] s390_runtime_instr.2: note that runtime_instr.h is not a public header [not found] ` <20180114185622.GA23506-ZbobWygYI+YXGNroddHbYwC/G2K4zDHf@public.gmane.org> @ 2018-01-20 11:28 ` Heiko Carstens 2018-01-22 13:11 ` Eugene Syromyatnikov 0 siblings, 1 reply; 4+ messages in thread From: Heiko Carstens @ 2018-01-20 11:28 UTC (permalink / raw) To: Eugene Syromyatnikov Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA, Martin Schwidefsky, linux-s390-u79uwXL29TY76Z2rM5mHXA, QingFeng Hao, Jan Glauber, Alexey Ishchuk On Sun, Jan 14, 2018 at 07:56:22PM +0100, Eugene Syromyatnikov wrote: > For some reason, runtime_instr.h is inside arch/s390/include/asm/ and > not arch/s390/include/uapi/asm/, so it's not readily available to the > user space programs. Let's reflect it. > > * man2/s390_runtime_instr.2 (.SH SYNOPSYS): Comment out the #include > <asm/runtime_instr.h> statement. > (.SH NOTES): Note the existence and presence of runtime_instr.h header > inside the Linux kernel source tree. > --- > man2/s390_runtime_instr.2 | 11 +++++++++-- > 1 file changed, 9 insertions(+), 2 deletions(-) > > diff --git a/man2/s390_runtime_instr.2 b/man2/s390_runtime_instr.2 > index 18c2c07..f979692 100644 > --- a/man2/s390_runtime_instr.2 > +++ b/man2/s390_runtime_instr.2 > @@ -27,8 +27,9 @@ > s390_runtime_instr \- enable/disable s390 CPU run-time instrumentation > .SH SYNOPSIS > .nf > -.B #include <asm/runtime_instr.h> > -.PP > +.\" This header never had been a part of uapi as of 4.15 > +.\" .B #include <asm/runtime_instr.h> > +.\" .PP > .BI "int s390_runtime_instr(int " command ", int " signum "); > .fi > .SH DESCRIPTION > @@ -85,6 +86,12 @@ The run-time instrumentation facility is available beginning with System z EC12. > Glibc does not provide a wrapper for this system call, use > .BR syscall (2) > to call it. > +.PP > +Kernel's header > +.B arch/s390/include/asm/runtime_instr.h > +contains the necessary declarations for using run-time instrumentation. > +Unfortunately, it hasn't been included as a part of Linux's UAPI > +as of Linux 4.15. IMHO we shouldn't document the file name of a kernel header that is not exported. It's name and location can change anytime. I will move the kernel header file to the uapi directory where it should have been since a long time. Thanks for reporting! -- To unsubscribe from this list: send the line "unsubscribe linux-man" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [man-pages PATCH 1/5] s390_runtime_instr.2: note that runtime_instr.h is not a public header 2018-01-20 11:28 ` Heiko Carstens @ 2018-01-22 13:11 ` Eugene Syromyatnikov [not found] ` <CACGkJduJ2SyWVZ7b-obLC_sB5TwHRfdpdfY5qDGrpzGgTC-H+A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 4+ messages in thread From: Eugene Syromyatnikov @ 2018-01-22 13:11 UTC (permalink / raw) To: Heiko Carstens Cc: Michael Kerrisk-manpages, linux-man, Martin Schwidefsky, linux-s390-u79uwXL29TY76Z2rM5mHXA, QingFeng Hao On Sat, Jan 20, 2018 at 11:28 AM, Heiko Carstens <heiko.carstens-tA70FqPdS9bQT0dZR+AlfA@public.gmane.org> wrote: > IMHO we shouldn't document the file name of a kernel header that is not > exported. It's name and location can change anytime. I will move the kernel > header file to the uapi directory where it should have been since a long > time. In that case, I think it could be rephrased to something like "the header asm/runtime_instr.h is available for the userspace programs since Linux 4.15, before that it was located in arch/s390/include/asm/runtime_instr.h in the kernel's source tree", as man-pages project (as I understood) tends to reference places in kernel's source tree if it is deemed useful; it is usually applied to documentation files, however, although they also have tendency to migrate over time. -- Eugene Syromyatnikov mailto:evgsyr-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org xmpp:esyr@jabber.{ru|org} -- To unsubscribe from this list: send the line "unsubscribe linux-man" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <CACGkJduJ2SyWVZ7b-obLC_sB5TwHRfdpdfY5qDGrpzGgTC-H+A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [man-pages PATCH 1/5] s390_runtime_instr.2: note that runtime_instr.h is not a public header [not found] ` <CACGkJduJ2SyWVZ7b-obLC_sB5TwHRfdpdfY5qDGrpzGgTC-H+A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2018-01-22 15:11 ` Heiko Carstens 0 siblings, 0 replies; 4+ messages in thread From: Heiko Carstens @ 2018-01-22 15:11 UTC (permalink / raw) To: Eugene Syromyatnikov Cc: Michael Kerrisk-manpages, linux-man, Martin Schwidefsky, linux-s390-u79uwXL29TY76Z2rM5mHXA, QingFeng Hao On Mon, Jan 22, 2018 at 01:11:19PM +0000, Eugene Syromyatnikov wrote: > On Sat, Jan 20, 2018 at 11:28 AM, Heiko Carstens > <heiko.carstens-tA70FqPdS9bQT0dZR+AlfA@public.gmane.org> wrote: > > IMHO we shouldn't document the file name of a kernel header that is not > > exported. It's name and location can change anytime. I will move the kernel > > header file to the uapi directory where it should have been since a long > > time. > > In that case, I think it could be rephrased to something like "the > header asm/runtime_instr.h is available for the userspace programs > since Linux 4.15, before that it was located in > arch/s390/include/asm/runtime_instr.h in the kernel's source tree", as > man-pages project (as I understood) tends to reference places in > kernel's source tree if it is deemed useful; it is usually applied to > documentation files, however, although they also have tendency to > migrate over time. Yes, that's ok. However moving the header file to uapi is not going to happen before kernel version 4.16. -- To unsubscribe from this list: send the line "unsubscribe linux-man" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-01-22 15:11 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-14 18:56 [man-pages PATCH 1/5] s390_runtime_instr.2: note that runtime_instr.h is not a public header Eugene Syromyatnikov
[not found] ` <20180114185622.GA23506-ZbobWygYI+YXGNroddHbYwC/G2K4zDHf@public.gmane.org>
2018-01-20 11:28 ` Heiko Carstens
2018-01-22 13:11 ` Eugene Syromyatnikov
[not found] ` <CACGkJduJ2SyWVZ7b-obLC_sB5TwHRfdpdfY5qDGrpzGgTC-H+A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2018-01-22 15:11 ` Heiko Carstens
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).