Util-Linux package development
 help / color / mirror / Atom feed
* [PATCH 04/12] Fix page cross references
       [not found] <404e11c0-9f88-b460-7398-d00585a9bf16@gmail.com>
@ 2016-11-10 10:59 ` Michael Kerrisk (man-pages)
  2016-11-10 10:59 ` [PATCH 05/12] Fix section number in lockf() page xref Michael Kerrisk (man-pages)
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: Michael Kerrisk (man-pages) @ 2016-11-10 10:59 UTC (permalink / raw)
  To: Karel Zak, util-linux; +Cc: mtk.manpages

* Add a section number to page cross reference
* Format cross references in bold

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
---
 sys-utils/ipcs.1   | 10 +++++-----
 sys-utils/lsipc.1  | 10 +++++-----
 sys-utils/tunelp.8 |  2 +-
 3 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/sys-utils/ipcs.1 b/sys-utils/ipcs.1
index db9637d..17395c2 100644
--- a/sys-utils/ipcs.1
+++ b/sys-utils/ipcs.1
@@ -55,15 +55,15 @@ Show PIDs of creator and last operator.
 \fB\-t\fR, \fB\-\-time\fR
 Write time information.  The time of the last control operation that changed
 the access permissions for all facilities, the time of the last
-.I msgsnd()
+.BR msgsnd (2)
 and
-.I msgrcv()
+.BR msgrcv (2)
 operations on message queues, the time of the last
-.I shmat()
+.BR shmat (2)
 and
-.I shmdt()
+.BR shmdt (2)
 operations on shared memory, and the time of the last
-.I semop()
+.BR semop (2)
 operation on semaphores.
 .TP
 \fB\-u\fR, \fB\-\-summary\fR
diff --git a/sys-utils/lsipc.1 b/sys-utils/lsipc.1
index 3185911..1d3f735 100644
--- a/sys-utils/lsipc.1
+++ b/sys-utils/lsipc.1
@@ -83,15 +83,15 @@ Raw output (no columnation).
 \fB\-t\fR, \fB\-\-time\fR
 Write time information.  The time of the last control operation that changed
 the access permissions for all facilities, the time of the last
-.I msgsnd()
+.BR msgsnd (2)
 and
-.I msgrcv()
+.BR msgrcv (2)
 operations on message queues, the time of the last
-.I shmat()
+.BR shmat (2)
 and
-.I shmdt()
+.BR shmdt (2)
 operations on shared memory, and the time of the last
-.I semop()
+.BR semop (2)
 operation on semaphores.
 .TP
 \fB\-\-time\-format\fR \fItype\fP
diff --git a/sys-utils/tunelp.8 b/sys-utils/tunelp.8
index a69d88a..45c1122 100644
--- a/sys-utils/tunelp.8
+++ b/sys-utils/tunelp.8
@@ -77,7 +77,7 @@ isn't ready, quit trying, and send you mail about it.  The choice is yours.
 .TP
 \fB\-o\fR, \fB\-\-check\-status\fR \fI<on|off>\fR
 This option is much like \-a.  It makes any
-.I open()
+.BR open (2)
 of this device check to see that the device is on-line and not reporting any
 out of paper or other errors.  This is the correct setting for most versions
 of lpd.
-- 
2.5.5


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 05/12] Fix section number in lockf() page xref
       [not found] <404e11c0-9f88-b460-7398-d00585a9bf16@gmail.com>
  2016-11-10 10:59 ` [PATCH 04/12] Fix page cross references Michael Kerrisk (man-pages)
@ 2016-11-10 10:59 ` Michael Kerrisk (man-pages)
  2016-11-10 10:59 ` [PATCH 06/12] Fix reference for scheduling discussion Michael Kerrisk (man-pages)
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: Michael Kerrisk (man-pages) @ 2016-11-10 10:59 UTC (permalink / raw)
  To: Karel Zak, util-linux; +Cc: mtk.manpages

lockf() is in section 3, not 2.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
---
 misc-utils/lslocks.8 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/misc-utils/lslocks.8 b/misc-utils/lslocks.8
index 2be0a28..dd34ccd 100644
--- a/misc-utils/lslocks.8
+++ b/misc-utils/lslocks.8
@@ -90,7 +90,7 @@ Davidlohr Bueso <dave@gnu.org>
 .SH "SEE ALSO"
 .BR flock (1),
 .BR fcntl (2),
-.BR lockf (2)
+.BR lockf (3)
 
 .SH AVAILABILITY
 The lslocks command is part of the util-linux package and is available from
-- 
2.5.5


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 06/12] Fix reference for scheduling discussion
       [not found] <404e11c0-9f88-b460-7398-d00585a9bf16@gmail.com>
  2016-11-10 10:59 ` [PATCH 04/12] Fix page cross references Michael Kerrisk (man-pages)
  2016-11-10 10:59 ` [PATCH 05/12] Fix section number in lockf() page xref Michael Kerrisk (man-pages)
@ 2016-11-10 10:59 ` Michael Kerrisk (man-pages)
  2016-11-10 10:59 ` [PATCH 07/12] Fix formatting errors in page cross references Michael Kerrisk (man-pages)
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: Michael Kerrisk (man-pages) @ 2016-11-10 10:59 UTC (permalink / raw)
  To: Karel Zak, util-linux; +Cc: mtk.manpages

Some time back, I moved the discussion of scheduling from
sched_setscheduler(2) to a new sched(7) page. Adjust the cross
reference in the taskset(1) page accordingly.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
---
 schedutils/taskset.1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/schedutils/taskset.1 b/schedutils/taskset.1
index 13ed583..c0c933f 100644
--- a/schedutils/taskset.1
+++ b/schedutils/taskset.1
@@ -123,7 +123,7 @@ A user can retrieve the affinity mask of any process.
 .BR sched_setaffinity (2)
 .sp
 See
-.BR sched_setscheduler (2)
+.BR sched (7)
 for a description of the Linux scheduling scheme.
 .SH AUTHOR
 Written by Robert M. Love.
-- 
2.5.5


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 07/12] Fix formatting errors in page cross references
       [not found] <404e11c0-9f88-b460-7398-d00585a9bf16@gmail.com>
                   ` (2 preceding siblings ...)
  2016-11-10 10:59 ` [PATCH 06/12] Fix reference for scheduling discussion Michael Kerrisk (man-pages)
@ 2016-11-10 10:59 ` Michael Kerrisk (man-pages)
  2016-11-10 10:59 ` [PATCH 08/12] Replace reference to sigvec(2) with sigaction(2) Michael Kerrisk (man-pages)
  2016-11-10 10:59 ` [PATCH 09/12] SEE ALSO: add cross reference to namespaces(7) Michael Kerrisk (man-pages)
  5 siblings, 0 replies; 6+ messages in thread
From: Michael Kerrisk (man-pages) @ 2016-11-10 10:59 UTC (permalink / raw)
  To: Karel Zak, util-linux; +Cc: mtk.manpages

These pages had errors such as

    .BR page (x) .

which should be

    .BR page (x).

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
---
 disk-utils/swaplabel.8 | 2 +-
 misc-utils/findmnt.8   | 2 +-
 sys-utils/blkdiscard.8 | 2 +-
 sys-utils/dmesg.1      | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/disk-utils/swaplabel.8 b/disk-utils/swaplabel.8
index 45c0492..8bac331 100644
--- a/disk-utils/swaplabel.8
+++ b/disk-utils/swaplabel.8
@@ -53,7 +53,7 @@ will truncate it and print a warning message.
 Specify a new \fIUUID\fR for the device.
 The \fI UUID\fR
 must be in the standard 8-4-4-4-12 character format, such as is output by
-.BR uuidgen (1) .
+.BR uuidgen (1).
 .PP
 .SH AUTHOR
 .B swaplabel
diff --git a/misc-utils/findmnt.8 b/misc-utils/findmnt.8
index 105f2c5..6e4ddb4 100644
--- a/misc-utils/findmnt.8
+++ b/misc-utils/findmnt.8
@@ -162,7 +162,7 @@ or \fB\-\-first\-only\fP options.
 The standard columns always use the new version of the information from the
 mountinfo file, except the umount action which is based on the original
 information cached by
-.BR findmnt (8) .
+.BR findmnt (8).
 The poll mode allows to use extra columns:
 .RS
 .TP
diff --git a/sys-utils/blkdiscard.8 b/sys-utils/blkdiscard.8
index da3d6cb..3b24f2f 100644
--- a/sys-utils/blkdiscard.8
+++ b/sys-utils/blkdiscard.8
@@ -13,7 +13,7 @@ blkdiscard \- discard sectors on a device
 .B blkdiscard
 is used to discard device sectors.  This is useful for solid-state
 drivers (SSDs) and thinly-provisioned storage.  Unlike
-.BR fstrim (8) ,
+.BR fstrim (8),
 this command is used directly on the block device.
 .PP
 By default,
diff --git a/sys-utils/dmesg.1 b/sys-utils/dmesg.1
index 6e0812f..d553418 100644
--- a/sys-utils/dmesg.1
+++ b/sys-utils/dmesg.1
@@ -120,7 +120,7 @@ Print the raw message buffer, i.e. do not strip the log-level prefixes.
 Note that the real raw format depends on the method how
 .BR dmesg (1)
 reads kernel messages.  The /dev/kmsg device uses a different format than
-.BR syslog (2) .
+.BR syslog (2).
 For backward compatibility,
 .BR dmesg (1)
 returns data always in the
-- 
2.5.5


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 08/12] Replace reference to sigvec(2) with sigaction(2)
       [not found] <404e11c0-9f88-b460-7398-d00585a9bf16@gmail.com>
                   ` (3 preceding siblings ...)
  2016-11-10 10:59 ` [PATCH 07/12] Fix formatting errors in page cross references Michael Kerrisk (man-pages)
@ 2016-11-10 10:59 ` Michael Kerrisk (man-pages)
  2016-11-10 10:59 ` [PATCH 09/12] SEE ALSO: add cross reference to namespaces(7) Michael Kerrisk (man-pages)
  5 siblings, 0 replies; 6+ messages in thread
From: Michael Kerrisk (man-pages) @ 2016-11-10 10:59 UTC (permalink / raw)
  To: Karel Zak, util-linux; +Cc: mtk.manpages


The sigvec(3) (not sigvec(2)) page documents ancient BSD APIs.
The right page to cross reference here is sigaction(2),
which documents the modern POSIX APIs.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
---
 misc-utils/kill.1 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/misc-utils/kill.1 b/misc-utils/kill.1
index d0626bf..d638ead 100644
--- a/misc-utils/kill.1
+++ b/misc-utils/kill.1
@@ -145,7 +145,7 @@ partial success (when more than one process specified)
 .SH SEE ALSO
 .BR bash (1),
 .BR tcsh (1),
-.BR sigvec (2),
+.BR sigaction (2),
 .BR kill (2),
 .BR signal (7)
 
-- 
2.5.5


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 09/12] SEE ALSO: add cross reference to namespaces(7)
       [not found] <404e11c0-9f88-b460-7398-d00585a9bf16@gmail.com>
                   ` (4 preceding siblings ...)
  2016-11-10 10:59 ` [PATCH 08/12] Replace reference to sigvec(2) with sigaction(2) Michael Kerrisk (man-pages)
@ 2016-11-10 10:59 ` Michael Kerrisk (man-pages)
  5 siblings, 0 replies; 6+ messages in thread
From: Michael Kerrisk (man-pages) @ 2016-11-10 10:59 UTC (permalink / raw)
  To: Karel Zak, util-linux; +Cc: mtk.manpages

Rationale: both of these pages are about namespaces.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
---
 sys-utils/nsenter.1 | 3 ++-
 sys-utils/unshare.1 | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/sys-utils/nsenter.1 b/sys-utils/nsenter.1
index e6969bf..5f850c1 100644
--- a/sys-utils/nsenter.1
+++ b/sys-utils/nsenter.1
@@ -181,7 +181,8 @@ Display version information and exit.
 Display help text and exit.
 .SH SEE ALSO
 .BR clone (2),
-.BR setns (2)
+.BR setns (2),
+.BR namespaces (7)
 .SH AUTHORS
 .UR biederm@xmission.com
 Eric Biederman
diff --git a/sys-utils/unshare.1 b/sys-utils/unshare.1
index a82ba9c..98a4863 100644
--- a/sys-utils/unshare.1
+++ b/sys-utils/unshare.1
@@ -188,6 +188,7 @@ makes sure that the bind mount is created on a shared filesystem.
 .SH SEE ALSO
 .BR clone (2),
 .BR unshare (2),
+.BR namespaces (7),
 .BR mount (8)
 .SH AUTHORS
 .UR dottedmag@dottedmag.net
-- 
2.5.5


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-11-10 10:59 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <404e11c0-9f88-b460-7398-d00585a9bf16@gmail.com>
2016-11-10 10:59 ` [PATCH 04/12] Fix page cross references Michael Kerrisk (man-pages)
2016-11-10 10:59 ` [PATCH 05/12] Fix section number in lockf() page xref Michael Kerrisk (man-pages)
2016-11-10 10:59 ` [PATCH 06/12] Fix reference for scheduling discussion Michael Kerrisk (man-pages)
2016-11-10 10:59 ` [PATCH 07/12] Fix formatting errors in page cross references Michael Kerrisk (man-pages)
2016-11-10 10:59 ` [PATCH 08/12] Replace reference to sigvec(2) with sigaction(2) Michael Kerrisk (man-pages)
2016-11-10 10:59 ` [PATCH 09/12] SEE ALSO: add cross reference to namespaces(7) 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