* [PATCH] adjtimex.2: fix kernel version references
@ 2016-10-07 13:21 Nikola Forró
[not found] ` <1475846493.2878.26.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: Nikola Forró @ 2016-10-07 13:21 UTC (permalink / raw)
To: Michael Kerrisk; +Cc: linux-man-u79uwXL29TY76Z2rM5mHXA
ADJ_SETOFFSET mode was added in 2.6.39:
$ git tag --contains 094aa1881fdc1b8889b442eb3511b31f3ec2b762 | head -n 1
v2.6.39
ADJ_MICRO and ADJ_NANO modes were added in 2.6.26:
$ git tag --contains eea83d896e318bda54be2d2770d2c5d6668d11db | head -n 1
v2.6.26
Signed-off-by: Nikola Forró <nforro-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
---
man2/adjtimex.2 | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/man2/adjtimex.2 b/man2/adjtimex.2
index a81b91f..0fd6273 100644
--- a/man2/adjtimex.2
+++ b/man2/adjtimex.2
@@ -146,7 +146,7 @@ If the
.B STA_NANO
status flag (see below) is clear, the kernel adds 4 to this value.
.TP
-.BR ADJ_SETOFFSET " (since Linux 2.6.29)"
+.BR ADJ_SETOFFSET " (since Linux 2.6.39)"
.\" commit 094aa1881fdc1b8889b442eb3511b31f3ec2b762
.\" Author: Richard Cochran <richardcochran-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Add
@@ -161,12 +161,12 @@ flag, then
is interpreted as a nanosecond value;
otherwise it is interpreted as microseconds.
.TP
-.BR ADJ_MICRO " (since Linux 2.6.36)"
+.BR ADJ_MICRO " (since Linux 2.6.26)"
.\" commit eea83d896e318bda54be2d2770d2c5d6668d11db
.\" Author: Roman Zippel <zippel-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.org>
Select microsecond resolution.
.TP
-.BR ADJ_NANO " (since Linux 2.6.36)"
+.BR ADJ_NANO " (since Linux 2.6.26)"
.\" commit eea83d896e318bda54be2d2770d2c5d6668d11db
.\" Author: Roman Zippel <zippel-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.org>
Select nanosecond resolution.
--
2.7.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] 2+ messages in thread[parent not found: <1475846493.2878.26.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>]
* Re: [PATCH] adjtimex.2: fix kernel version references [not found] ` <1475846493.2878.26.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> @ 2016-10-07 14:38 ` Michael Kerrisk (man-pages) 0 siblings, 0 replies; 2+ messages in thread From: Michael Kerrisk (man-pages) @ 2016-10-07 14:38 UTC (permalink / raw) To: nforro-H+wXaHxf7aLQT0dZR+AlfA Cc: mtk.manpages-Re5JQEeQqe8AvxtiuMwx3w, linux-man-u79uwXL29TY76Z2rM5mHXA On 10/07/2016 03:21 PM, Nikola Forró wrote: > ADJ_SETOFFSET mode was added in 2.6.39: > $ git tag --contains 094aa1881fdc1b8889b442eb3511b31f3ec2b762 | head -n 1 > v2.6.39 > > ADJ_MICRO and ADJ_NANO modes were added in 2.6.26: > $ git tag --contains eea83d896e318bda54be2d2770d2c5d6668d11db | head -n 1 > v2.6.26 Thanks, Nikola! Patch applied. Cheers, Michael > Signed-off-by: Nikola Forró <nforro-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> > --- > man2/adjtimex.2 | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/man2/adjtimex.2 b/man2/adjtimex.2 > index a81b91f..0fd6273 100644 > --- a/man2/adjtimex.2 > +++ b/man2/adjtimex.2 > @@ -146,7 +146,7 @@ If the > .B STA_NANO > status flag (see below) is clear, the kernel adds 4 to this value. > .TP > -.BR ADJ_SETOFFSET " (since Linux 2.6.29)" > +.BR ADJ_SETOFFSET " (since Linux 2.6.39)" > .\" commit 094aa1881fdc1b8889b442eb3511b31f3ec2b762 > .\" Author: Richard Cochran <richardcochran-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > Add > @@ -161,12 +161,12 @@ flag, then > is interpreted as a nanosecond value; > otherwise it is interpreted as microseconds. > .TP > -.BR ADJ_MICRO " (since Linux 2.6.36)" > +.BR ADJ_MICRO " (since Linux 2.6.26)" > .\" commit eea83d896e318bda54be2d2770d2c5d6668d11db > .\" Author: Roman Zippel <zippel-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.org> > Select microsecond resolution. > .TP > -.BR ADJ_NANO " (since Linux 2.6.36)" > +.BR ADJ_NANO " (since Linux 2.6.26)" > .\" commit eea83d896e318bda54be2d2770d2c5d6668d11db > .\" Author: Roman Zippel <zippel-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.org> > Select nanosecond resolution. > -- Michael Kerrisk Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/ Linux/UNIX System Programming Training: http://man7.org/training/ -- 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] 2+ messages in thread
end of thread, other threads:[~2016-10-07 14:38 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-07 13:21 [PATCH] adjtimex.2: fix kernel version references Nikola Forró
[not found] ` <1475846493.2878.26.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2016-10-07 14:38 ` Michael Kerrisk (man-pages)
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox