linux-man.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/28] SYNPOSIS: Use syscall() and fix includes
@ 2021-06-12  8:31 Alejandro Colomar
  2021-06-12  8:31 ` [PATCH 01/28] seccomp.2: Document why each header is needed Alejandro Colomar
                   ` (28 more replies)
  0 siblings, 29 replies; 30+ messages in thread
From: Alejandro Colomar @ 2021-06-12  8:31 UTC (permalink / raw)
  To: mtk.manpages; +Cc: Alejandro Colomar, linux-man

Hi Michael,

This is the last batch.  It includes the changes to seccomp.2, as you can see.
Actually, they are a resend of the last ones.  I found out that all of the
versions I sent you are identical...

Cheers,

Alex


Alejandro Colomar (28):
  seccomp.2: Document why each header is needed
  seccomp.2: Use syscall(SYS_...); for system calls without a wrapper
  spu_create.2: Remove <sys/types.h>
  spu_create.2: Use syscall(SYS_...), for system calls without a wrapper
  pipe.2: SYNOPSIS: Fix incorrect prototype
  spu_run.2: Use syscall(SYS_...), for system calls without a wrapper
  stat.2: SYNOPSIS: Fix includes
  statx.2: SYNOPSIS: Fix includes
  subpage_prot.2: Use syscall(SYS_...); for system calls without a
    wrapper
  swapon.2: SYNOPSIS: Fix includes
  symlink.2: ffix
  syscall.2: wfix + ffix
  syslog.2: Use syscall(SYS_...); for raw system calls
  timer_create.2: SYNOPSIS: Document why more than one header is needed
  s390_guarded_storage.2: tfix
  s390_runtime_instr.2: tfix
  s390_sthyi.2: tfix
  tkill.2: Use syscall(SYS_...); for system calls without a wrapper; fix
    includes too
  truncate.2: Remove <sys/types.h>
  umask.2: Remove <sys/types.h>
  unlink.2: ffix
  userfaultfd.2: Remove unused includes
  userfaultfd.2: Use syscall(SYS_...); for system calls without a
    wrapper; fix includes too
  utime.2: SYNOPSIS: Fix includes
  utimensat.2: ffix
  vmsplice.2: Remove unneeded include
  wait.2: Remove <sys/types.h>
  wait4.2: SYNOPSIS: Remove includes

 man2/pipe.2                 |  2 +-
 man2/s390_guarded_storage.2 |  2 +-
 man2/s390_runtime_instr.2   |  2 +-
 man2/s390_sthyi.2           |  2 +-
 man2/seccomp.2              | 24 +++++++++++++-----------
 man2/spu_create.2           | 19 ++++++++++---------
 man2/spu_run.2              | 12 +++++++-----
 man2/stat.2                 |  3 +--
 man2/statx.2                |  3 +--
 man2/subpage_prot.2         | 15 +++++++++------
 man2/swapon.2               |  1 -
 man2/symlink.2              |  2 +-
 man2/syscall.2              |  2 +-
 man2/syslog.2               |  8 ++++++--
 man2/timer_create.2         |  2 +-
 man2/tkill.2                | 22 +++++++++++++---------
 man2/truncate.2             |  1 -
 man2/umask.2                |  1 -
 man2/unlink.2               |  2 +-
 man2/userfaultfd.2          | 15 ++++++++-------
 man2/utime.2                |  1 -
 man2/utimensat.2            |  2 +-
 man2/vmsplice.2             |  1 -
 man2/wait.2                 |  1 -
 man2/wait4.2                |  3 ---
 25 files changed, 77 insertions(+), 71 deletions(-)

-- 
2.32.0


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

end of thread, other threads:[~2021-06-20  2:44 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-12  8:31 [PATCH 00/28] SYNPOSIS: Use syscall() and fix includes Alejandro Colomar
2021-06-12  8:31 ` [PATCH 01/28] seccomp.2: Document why each header is needed Alejandro Colomar
2021-06-12  8:31 ` [PATCH 02/28] seccomp.2: Use syscall(SYS_...); for system calls without a wrapper Alejandro Colomar
2021-06-12  8:31 ` [PATCH 03/28] spu_create.2: Remove <sys/types.h> Alejandro Colomar
2021-06-12  8:31 ` [PATCH 04/28] spu_create.2: Use syscall(SYS_...), for system calls without a wrapper Alejandro Colomar
2021-06-12  8:31 ` [PATCH 05/28] pipe.2: SYNOPSIS: Fix incorrect prototype Alejandro Colomar
2021-06-12  8:31 ` [PATCH 06/28] spu_run.2: Use syscall(SYS_...), for system calls without a wrapper Alejandro Colomar
2021-06-12  8:31 ` [PATCH 07/28] stat.2: SYNOPSIS: Fix includes Alejandro Colomar
2021-06-12  8:31 ` [PATCH 08/28] statx.2: " Alejandro Colomar
2021-06-12  8:31 ` [PATCH 09/28] subpage_prot.2: Use syscall(SYS_...); for system calls without a wrapper Alejandro Colomar
2021-06-12  8:31 ` [PATCH 10/28] swapon.2: SYNOPSIS: Fix includes Alejandro Colomar
2021-06-12  8:31 ` [PATCH 11/28] symlink.2: ffix Alejandro Colomar
2021-06-12  8:31 ` [PATCH 12/28] syscall.2: wfix + ffix Alejandro Colomar
2021-06-12  8:31 ` [PATCH 13/28] syslog.2: Use syscall(SYS_...); for raw system calls Alejandro Colomar
2021-06-12  8:31 ` [PATCH 14/28] timer_create.2: SYNOPSIS: Document why more than one header is needed Alejandro Colomar
2021-06-12  8:31 ` [PATCH 15/28] s390_guarded_storage.2: tfix Alejandro Colomar
2021-06-12  8:31 ` [PATCH 16/28] s390_runtime_instr.2: tfix Alejandro Colomar
2021-06-12  8:31 ` [PATCH 17/28] s390_sthyi.2: tfix Alejandro Colomar
2021-06-12  8:31 ` [PATCH 18/28] tkill.2: Use syscall(SYS_...); for system calls without a wrapper; fix includes too Alejandro Colomar
2021-06-12  8:31 ` [PATCH 19/28] truncate.2: Remove <sys/types.h> Alejandro Colomar
2021-06-12  8:31 ` [PATCH 20/28] umask.2: " Alejandro Colomar
2021-06-12  8:31 ` [PATCH 21/28] unlink.2: ffix Alejandro Colomar
2021-06-12  8:31 ` [PATCH 22/28] userfaultfd.2: Remove unused includes Alejandro Colomar
2021-06-12  8:31 ` [PATCH 23/28] userfaultfd.2: Use syscall(SYS_...); for system calls without a wrapper; fix includes too Alejandro Colomar
2021-06-12  8:31 ` [PATCH 24/28] utime.2: SYNOPSIS: Fix includes Alejandro Colomar
2021-06-12  8:31 ` [PATCH 25/28] utimensat.2: ffix Alejandro Colomar
2021-06-12  8:31 ` [PATCH 26/28] vmsplice.2: Remove unneeded include Alejandro Colomar
2021-06-12  8:31 ` [PATCH 27/28] wait.2: Remove <sys/types.h> Alejandro Colomar
2021-06-12  8:31 ` [PATCH 28/28] wait4.2: SYNOPSIS: Remove includes Alejandro Colomar
2021-06-20  2:44 ` [PATCH 00/28] SYNPOSIS: Use syscall() and fix includes 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;
as well as URLs for NNTP newsgroup(s).