]>
git.ipfire.org Git - thirdparty/man-pages.git/log
Michael Kerrisk [Sat, 27 Jul 2019 07:28:17 +0000 (09:28 +0200)]
pivot_root.2: Mention containers as a use case for pivot_root()
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Sat, 27 Jul 2019 07:11:28 +0000 (09:11 +0200)]
pivot_root.2: srcfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Sat, 27 Jul 2019 06:55:23 +0000 (08:55 +0200)]
pivot_root.2: There is no restriction against 'put_old' being a mount point
As far as I can see from the source code, the statement that
"No other filesystem may be mounted on 'put_old'" is incorrect.
Even looking at the 2.4.0 source code, there I can't see such
a restriction. In addition, some testing on a 5.0 kernel
(mounting 'put_old' in the new mount namespace just before
pivot_root()) did not result in an error for this case when
calling pivot_root().
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Sat, 27 Jul 2019 06:54:02 +0000 (08:54 +0200)]
pivot_root.2: srcfix: add self to copyright
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Sat, 27 Jul 2019 05:43:58 +0000 (07:43 +0200)]
pivot_root.2: pivot_root() affects only other processes in the same mount namespace
pivot_root() only affects the current working directory and root
directory of other processes in the same mount namespace as the
caller.
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Sat, 27 Jul 2019 16:50:09 +0000 (18:50 +0200)]
pivot_root.2: Introduce mount namespaces in the very first sentence
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Sat, 27 Jul 2019 07:15:03 +0000 (09:15 +0200)]
pivot_root.2: Note capability requirements
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Sat, 27 Jul 2019 05:52:00 +0000 (07:52 +0200)]
pivot_root.2: Mention mount namespaces
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Sat, 27 Jul 2019 05:40:16 +0000 (07:40 +0200)]
pivot_root.2: SEE ALSO: add mount_namespaces(7)
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Sat, 27 Jul 2019 05:49:31 +0000 (07:49 +0200)]
pivot_root.2: wfix
"At the time of writing" was ~20 years ago. Things
have not so far changed.
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Sat, 27 Jul 2019 05:16:00 +0000 (07:16 +0200)]
pivot_root.2: Reword some text that is currently rather hard to parse
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Sat, 27 Jul 2019 05:09:03 +0000 (07:09 +0200)]
pivot_root.2: Minor tweak
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Sat, 27 Jul 2019 05:07:32 +0000 (07:07 +0200)]
pivot_root.2: Minor fix: place some text at a more logical location in the page
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Sun, 22 Sep 2019 20:58:45 +0000 (22:58 +0200)]
operator.7: Prefix and postfix ++/-- have different precedences
Harbison and Steele also agree on this.
Reported-by: Rick Stanley <rstanley@rsiny.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Thu, 19 Sep 2019 19:33:34 +0000 (21:33 +0200)]
kill.2: Minor clarification
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Thu, 19 Sep 2019 19:27:44 +0000 (21:27 +0200)]
rt_sigqueueinfo.2: Rename 'uinfo' argument to 'info'
This is more consistent with the naming in other pages
that refer to a 'siginfo_t' structure.
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Thu, 19 Sep 2019 19:09:43 +0000 (21:09 +0200)]
rt_sigqueueinfo.2: The rules for 'si_code' don't apply when sending a signal to oneself
The restriction on what values may be specified in 'si_code'
apply only when sending a signal to a process other than the
caller itself.
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Thu, 19 Sep 2019 18:54:02 +0000 (20:54 +0200)]
rt_sigqueueinfo.2: Note that 'si_code' can't be specified as SI_KERNEL
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Thu, 19 Sep 2019 18:50:34 +0000 (20:50 +0200)]
rt_sigqueueinfo.2: Minor restructuring in preparation for next patch
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Mike Frysinger [Thu, 19 Sep 2019 05:43:42 +0000 (01:43 -0400)]
setns.2: Fix CLONE_NEWNS restriction info
Threads are allowed to switch mount namespaces if the filesystem
details aren't being shared. That's the purpose of the check in
the kernel quoted by the comment:
if (fs->users != 1)
return -EINVAL;
It's been this way since the code was originally merged in v3.8.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Fri, 13 Sep 2019 18:48:34 +0000 (20:48 +0200)]
ptrace.2: Fix description of 'is_error' field in 'struct ptrace_syscall_info'
Reported-by: Dmitry V. Levin <ldv@altlinux.org>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Nikola Forró [Mon, 24 Jun 2019 11:20:55 +0000 (13:20 +0200)]
mmap.2: Fix EINVAL conditions
Since introduction of MAP_SHARED_VALIDATE, in case flags contain
both MAP_PRIVATE and MAP_SHARED, mmap() doesn't fail with EINVAL,
it succeeds.
The reason for that is that MAP_SHARED_VALIDATE is in fact equal
to MAP_PRIVATE | MAP_SHARED.
This is intended behavior, see:
https://lwn.net/Articles/758594/
https://lwn.net/Articles/758598/
Signed-off-by: Nikola Forró <nforro@redhat.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Fri, 13 Sep 2019 14:01:58 +0000 (16:01 +0200)]
resolv.conf.5: srcfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Nikola Forró [Wed, 7 Aug 2019 12:17:19 +0000 (14:17 +0200)]
resolv.conf.5: Update information about search list
Since glibc 2.26, the number of domains in the search list is
no longer limited.
Reference:
https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=
3f853f22c87f0b671c0366eb290919719fa56c0e
Signed-off-by: Nikola Forró <nforro@redhat.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Fri, 13 Sep 2019 13:55:24 +0000 (15:55 +0200)]
CONTRIBUTING: New file with some starting tips on how to contribute
Reported-by: Paul Wise <pabs3@bonedaddy.net>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Fri, 13 Sep 2019 13:37:34 +0000 (15:37 +0200)]
man-pages.7: Relocate and enhance the text on semantic newlines
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Fri, 13 Sep 2019 13:24:19 +0000 (15:24 +0200)]
man-pages.7: Paragraphs should not be separated by blank lines
Reported-by: Paul Wise <pabs3@bonedaddy.net>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Fri, 13 Sep 2019 13:01:33 +0000 (15:01 +0200)]
core.5: Minor tweaks to Paul Wise's patch
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Paul Wise [Wed, 7 Aug 2019 01:45:25 +0000 (09:45 +0800)]
core.5: Explain the new situation with argument splitting
Things changed in Linux v5.3-rc3 commit
315c69261dd3 from
splitting after template expansion to splitting beforehand.
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Vincent Lefevre [Tue, 20 Aug 2019 13:35:04 +0000 (15:35 +0200)]
printf.3: Add detail on the first digit with the %e format
This requirement on the first digit with the %e format comes from
the ISO C standard. It ensures that all the digits in the output are
significant and forbids output with a precision less than requested.
Signed-off-by: Vincent Lefevre <vincent@vinc17.net>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Fri, 13 Sep 2019 12:33:49 +0000 (14:33 +0200)]
fexecve.3: ERRORS: add ENOENT
Reported-by: Simone Piccardi <piccardi@truelite.it>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Fri, 13 Sep 2019 12:08:59 +0000 (14:08 +0200)]
fexecve.3: ENOSYS occurs only if the kernel provides no execveat() syscall
Reported-by: Simone Piccardi <piccardi@truelite.it>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Matti Moell [Tue, 20 Aug 2019 17:04:19 +0000 (19:04 +0200)]
io_submit.2: Fix kernel version numbers for 'aio_rw_flags' flags
Even though the RFW_* flags were first introduced in Linux 4.6,
they could not be used with aio until 4.13 where the aio_rw_flags
field was added to struct iocb (
9830f4be159b "fs: Use RWF_* flags
for AIO operations"). Correct the stated version for each flag.
Fixes: 2f72816f8680 ("io_submit.2: Add kernel version numbers for various 'aio_rw_flags' flags")
Signed-off-by: Matti Möll <Matti.Moell@opensynergy.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Fri, 13 Sep 2019 11:47:35 +0000 (13:47 +0200)]
move_pages.2: Some reworking of Yang Xu's text
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Yang Xu [Wed, 4 Sep 2019 08:10:38 +0000 (16:10 +0800)]
move_pages.2: Mark E2BIG as deprecated
E2BIG was removed in 2.6.29, we should mark it as deprecated.
Signed-off-by: Yang Xu <xuyang2018.jy@cn.fujitsu.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Fri, 13 Sep 2019 11:48:04 +0000 (13:48 +0200)]
regex.3: Minor rewording
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Fri, 13 Sep 2019 10:47:32 +0000 (12:47 +0200)]
regex.3: ffix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Fri, 13 Sep 2019 10:44:34 +0000 (12:44 +0200)]
regex.3: srcfix: Wrap source lines at sentence boundaries
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Rob Landley [Mon, 9 Sep 2019 18:47:14 +0000 (13:47 -0500)]
regex.3: Document REG_STARTEND
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Shawn Anastasio [Fri, 13 Sep 2019 06:03:26 +0000 (01:03 -0500)]
syscall.2: Add information for powerpc64
Add powerpc64 to the calling convention tables.
Signed-off-by: Shawn Anastasio <shawn@anastas.io>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Thu, 12 Sep 2019 08:47:42 +0000 (10:47 +0200)]
ptrace.2: Clarify meaning of ptrace_syscall_info 'is_error' field
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Thu, 12 Sep 2019 08:37:59 +0000 (10:37 +0200)]
ptrace.2: ffix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Thu, 12 Sep 2019 08:30:57 +0000 (10:30 +0200)]
ptrace.2: Describe the PTRACE_GET_SYSCALL_INFO 'op' value in more detail
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Thu, 12 Sep 2019 07:21:47 +0000 (09:21 +0200)]
ptrace.2: ffix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Thu, 12 Sep 2019 07:00:56 +0000 (09:00 +0200)]
ptrace.2: Minor tweaks to Dmitry Levin's patch
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Dmitry V. Levin [Wed, 11 Sep 2019 17:38:08 +0000 (20:38 +0300)]
ptrace.2: Document struct ptrace_syscall_info
Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Christopher M. Riedl [Wed, 11 Sep 2019 12:56:39 +0000 (07:56 -0500)]
mprotect.2: wfix
Signed-off-by: Christopher M. Riedl <cmr@informatik.wtf>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Tue, 10 Sep 2019 11:36:34 +0000 (13:36 +0200)]
syscalls.2: Add clone3() and pidfd_open()
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Tue, 10 Sep 2019 11:43:05 +0000 (13:43 +0200)]
syscalls.2: Add fsconfig(), fsmount(), fsopen(), fspick(), move_mount(), open_tree()
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Tue, 10 Sep 2019 11:33:08 +0000 (13:33 +0200)]
syscalls.2: Add new syscalls in 5.1
Add io_uring_enter(), io_uring_register(), io_uring_setup(), and
pidfd_send_signal().
Signed-off-by:(), Michael(), Kerrisk(), <mtk.manpages@gmail.com>
Michael Kerrisk [Tue, 10 Sep 2019 10:44:14 +0000 (12:44 +0200)]
ptrace.2: Minor tweaks to Dmitry Levin's patch
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Dmitry V. Levin [Mon, 2 Sep 2019 12:38:58 +0000 (15:38 +0300)]
ptrace.2: Document PTRACE_GET_SYSCALL_INFO
PTRACE_GET_SYSCALL_INFO request was introduced by Linux kernel
commit
201766a20e30f982ccfe36bebfad9602c3ff574a aka
v5.3-rc1~65^2~23.
Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 9 Sep 2019 08:50:11 +0000 (10:50 +0200)]
syscall.2: Update name of syscall instruction for riscv
As reported by Florin:
In the first table, for the riscv Arch/ABI, the instruction
should be ecall instead of scall.
According the official manual, the instruction has been
renamed.
https://content.riscv.org/wp-content/uploads/2017/05/riscv-spec-v2.2.pdf
"The SCALL and SBREAK instructions have been renamed to
ECALL and EBREAK, respectively. Their encoding and
functionality are unchanged."
Reported-by: Florin Blanaru <florin.blanaru96@gmail.com>
Reviewed-by: Adam Borowski <kilobyte@angband.pl>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Jakub Wilk [Mon, 2 Sep 2019 06:55:36 +0000 (08:55 +0200)]
fanotify_mark.2: Document FAN_MOVE_SELF
Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Jakub Wilk [Mon, 2 Sep 2019 06:55:35 +0000 (08:55 +0200)]
fanotify_mark.2: Add kernel version numbers for some FAN_* constants
Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Jakub Wilk [Mon, 2 Sep 2019 06:55:34 +0000 (08:55 +0200)]
fanotify_mark.2: ffix
Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Jakub Wilk [Mon, 2 Sep 2019 06:55:33 +0000 (08:55 +0200)]
fanotify.7: tfix
Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Sun, 1 Sep 2019 14:23:48 +0000 (16:23 +0200)]
errno.3: Minor tweaks to Rasmus Villemoes's patch
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Rasmus Villemoes [Thu, 29 Aug 2019 10:06:21 +0000 (12:06 +0200)]
errno.3: Add some comments on EAGAIN/EWOULDBLOCK and EDEADLK/EDEADLOCK
Signed-off-by: Rasmus Villemoes <rv@rasmusvillemoes.dk>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Wed, 28 Aug 2019 09:58:00 +0000 (11:58 +0200)]
signal.7: tfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Tue, 27 Aug 2019 11:56:13 +0000 (13:56 +0200)]
prctl.2: tfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 26 Aug 2019 22:01:24 +0000 (00:01 +0200)]
smartpqi.4: wfix
Reported-by: Don Brace <Don.Brace@microchip.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 26 Aug 2019 21:51:42 +0000 (23:51 +0200)]
smartpqi.4: srcfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 26 Aug 2019 21:50:48 +0000 (23:50 +0200)]
smartpqi.4: ffix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Murthy Bhat [Mon, 26 Aug 2019 15:41:52 +0000 (10:41 -0500)]
smartpqi.4: Add sysfs entries
Reviewed-by: Matt Perricone <matt.perricone@microsemi.com>
Reviewed-by: Scott Benesh <scott.benesh@microsemi.com>
Signed-off-by: Murthy Bhat <Murthy.Bhat@microsemi.com>
Signed-off-by: Don Brace <don.brace@microsemi.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Dave Carroll [Mon, 26 Aug 2019 15:41:45 +0000 (10:41 -0500)]
smartpqi.4: Add module param to hide vsep
Reviewed-by: Matt Perricone <matt.perricone@microsemi.com>
Reviewed-by: Scott Benesh <scott.benesh@microsemi.com>
Reviewed-by: Kevin Barnett <kevin.barnett@microsemi.com>
Signed-off-by: Dave Carroll <david.carroll@microsemi.com>
Signed-off-by: Don Brace <don.brace@microsemi.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Gilbert Wu [Mon, 26 Aug 2019 15:41:39 +0000 (10:41 -0500)]
smartpqi.4: Add module param expose ld first
Reviewed-by: Matt Perricone <matt.perricone@microsemi.com>
Reviewed-by: Scott Benesh <scott.benesh@microsemi.com>
Reviewed-by: Kevin Barnett <kevin.barnett@microsemi.com>
Signed-off-by: Gilbert Wu <gilbert.wu@microsemi.com>
Signed-off-by: Don Brace <don.brace@microsemi.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Don Brace [Mon, 26 Aug 2019 15:41:32 +0000 (10:41 -0500)]
smartpqi.4: Update copyright
Reviewed-by: Scott Benesh <scott.benesh@microsemi.com>
Reviewed-by: Kevin Barnett <kevin.barnett@microsemi.com>
Signed-off-by: Don Brace <don.brace@microsemi.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Don Brace [Mon, 26 Aug 2019 15:41:26 +0000 (10:41 -0500)]
smartpqi.4: tfix
- correct smarpqi to smartpqi
Reviewed-by: Scott Teel <scott.teel@microsemi.com>
Reviewed-by: Scott Benesh <scott.benesh@microsemi.com>
Reviewed-by: Kevin Barnett <kevin.barnett@microsemi.com>
Signed-off-by: Don Brace <don.brace@microsemi.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Marko Myllynen [Mon, 26 Aug 2019 07:23:25 +0000 (10:23 +0300)]
localedef.1: describe recently added options
Describe few recently added options (present in glibc-2.29).
Sort the options a bit more logically and alphabetically.
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Eric Biggers [Sat, 24 Aug 2019 21:11:54 +0000 (14:11 -0700)]
cgroups.7: tfix
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Eric Biggers [Sat, 24 Aug 2019 21:11:07 +0000 (14:11 -0700)]
socket.2: tfix
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Marko Myllynen [Mon, 26 Aug 2019 07:22:58 +0000 (10:22 +0300)]
capabilities.7: tfix
Hi Michael, it's been a while but few simple patches today..
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Marko Myllynen [Mon, 26 Aug 2019 07:23:15 +0000 (10:23 +0300)]
user_namespaces.7: tfix
This and the previous were the only ones grep found.
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 26 Aug 2019 21:01:14 +0000 (23:01 +0200)]
uname.2: Replace reference to namespaces(7) with reference to uts_namespaces(7)
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 26 Aug 2019 21:00:45 +0000 (23:00 +0200)]
getdomainname.2: Add mention of UTS namespaces
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 26 Aug 2019 20:58:38 +0000 (22:58 +0200)]
uts_namespaces.7: SEE ALSO: add gethostname(2), getdomainname(2), uname(2)
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 26 Aug 2019 20:57:11 +0000 (22:57 +0200)]
gethostname.2: Mention UTS namespaces
Reported-by: Jakub Wilk <jwilk@jwilk.net>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 26 Aug 2019 20:52:25 +0000 (22:52 +0200)]
namespaces.7: Remove content migrated to uts_namespaces(7)
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 26 Aug 2019 20:50:29 +0000 (22:50 +0200)]
uts_namespaces.7: New page with content migrated from namespaces(7)
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 26 Aug 2019 20:33:44 +0000 (22:33 +0200)]
mq_overview.7: wfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 26 Aug 2019 20:32:36 +0000 (22:32 +0200)]
mq_overview.7, sysvipc.7: Adjust references to namespaces(7) to ipc_namespaces(7)
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 26 Aug 2019 20:29:50 +0000 (22:29 +0200)]
namespaces.7: Remove content migrated to new ipc_namespaces(7) page
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 26 Aug 2019 20:28:45 +0000 (22:28 +0200)]
ipc_namespaces.7: New page with content migrated from namespaces(7)
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Jakub Wilk [Mon, 26 Aug 2019 16:19:21 +0000 (18:19 +0200)]
ld.so.8: tfix
Escape hyphens.
Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 26 Aug 2019 20:04:12 +0000 (22:04 +0200)]
signal.7: Enhance the text on process-directed and thread-directed signals
clone(2) has a good description of these concepts; borrow
from it liberally.
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 26 Aug 2019 19:54:16 +0000 (21:54 +0200)]
clone.2: tfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Mon, 26 Aug 2019 19:45:13 +0000 (21:45 +0200)]
signal.7: tfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Tue, 20 Aug 2019 07:56:33 +0000 (09:56 +0200)]
user_namespaces.7: Improve explanation of meaning of ownership of nonuser namespaces
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Tue, 20 Aug 2019 07:29:49 +0000 (09:29 +0200)]
statx.2: Clarify details of a case where an invalid 'mask' value may be rejected
As reported by Simone:
I was looking at version from 2017-09-15 but it's the same
on: http://man7.org/linux/man-pages/man2/statx.2.html
(2019-03-06)
There is reported (about the mask argument) after the list
of constants:
> Note that the kernel does not reject values in mask other
> than the above. Instead, it simply informs the caller which
> values are sup‐ ported by this kernel and filesystem via the
> statx.stx_mask field.
But as reported in the error values, there can be EINVAL if
mask has a reserved valued, and I found a check against
STATX__RESERVED in fs/stat.c for this. So if you use a that
bit (0x80000000U) the kernel will reject the value.
Probably is better to say that the kernel do not enforce the
use of only the listed values, but there are anyway reserved
values so and so you cannot put whatever you want on mask
(that apply to more values than UINT_MAX).
Reported-by: Simone Piccardi <piccardi@truelite.it>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Jakub Wilk [Fri, 2 Aug 2019 21:46:55 +0000 (23:46 +0200)]
proc.5: tfix
Signed-off-by: Jakub Wilk <jwilk@jwilk.net>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Ingo Schwarze [Fri, 2 Aug 2019 12:02:06 +0000 (14:02 +0200)]
proc.5: ffix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Fri, 2 Aug 2019 11:55:47 +0000 (13:55 +0200)]
capabilities.7: CAP_SYS_ADMIN allows modifying autogroup nice values
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Fri, 2 Aug 2019 09:23:41 +0000 (11:23 +0200)]
Changes.old: Fixes to 5.02 log
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Fri, 2 Aug 2019 08:31:40 +0000 (10:31 +0200)]
Start of man-pages-5.03: updating Changes and Changes.old
Michael Kerrisk [Fri, 2 Aug 2019 08:31:40 +0000 (10:31 +0200)]
Start of man-pages-5.03: updating .Announce and .lsm files
Michael Kerrisk [Fri, 2 Aug 2019 08:31:40 +0000 (10:31 +0200)]
Start of man-pages-5.03: renaming .Announce and .lsm files
Michael Kerrisk [Fri, 2 Aug 2019 06:47:19 +0000 (08:47 +0200)]
Ready for 5.02
Michael Kerrisk [Fri, 2 Aug 2019 06:37:26 +0000 (08:37 +0200)]
proc.5: tfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Michael Kerrisk [Fri, 2 Aug 2019 06:35:43 +0000 (08:35 +0200)]
prctl.2: ffix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>