linux-man.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-09-09 13:59:59 to 2020-09-15 10:03:32 UTC [more...]

[PATCH 00/24] Many patches
 2020-09-15 10:03 UTC  (81+ messages)
` [PATCH 01/24] inet_net_pton.3: Use 'PRIx32' rather than "%x" when printing 'uint32_t' values
` [PATCH 02/24] endian.3: "
` [PATCH 03/24] timerfd_create.2: Use 'PRIxN' macros when printing C99 fixed-width integer types
` [PATCH 04/24] eventfd.2: "
  ` AW: "
` [PATCH 05/24] offsetof.3: Use "%zu" rather than "%zd" when printing 'size_t' values
` [PATCH 06/24] timer_create.2: Cast to 'unsigned long' rathen than 'long' when printing with "%lx"
` [PATCH 07/24] request_key.2: Cast to 'unsigned long' rather "
` [PATCH 08/24] add_key.2: "
` [PATCH 09/24] clock_getcpuclockid.3: Remove unneeded cast
` [PATCH 10/24] ioctl_ns.2: "
    ` [PATCH v2 10/24] ioctl_ns.2: Cast to 'unsigned long' rather than 'long' when printing with "%lx"
` [PATCH 11/24] stat.2: Remove unneeded cast
    ` [PATCH v2 11/24] stat.2: Cast to 'unsigned long' rather than 'long' when printing with "%lx"
        ` [PATCH v3 11/24] stat.2: wsfix
` [PATCH 12/24] getgrent_r.3: Use sizeof() to get buffer size (instead of hardcoding macro name)
  ` AW: "
      ` AW: "
` [PATCH 13/24] getpwent_r.3: "
` [PATCH 14/24] fread.3: Move ARRAY_SIZE logic into macro
` [PATCH 15/24] unix.7: Use sizeof() to get buffer size (instead of hardcoding macro name)
` [PATCH 16/24] getpwent_r.3: Declare variables with different types in different lines
` [PATCH 17/24] get_phys_pages.3: Write 'long' instead of 'long int'
  ` AW: "
` [PATCH 18/24] core.5: Use adequate type
` [PATCH 19/24] pthread_setname_np.3: ffix
` [PATCH 20/24] loop.4: ffix
` [PATCH 21/24] aio.7: Use perror() directly
` [PATCH 22/24] membarrier.2: Note that glibc does not provide a wrapper
  ` AW: "
` [PATCH 23/24] select_tut.2: Use MAX(a, b) from <sys/param.h>
` [PATCH 24/24] bpf.2: Add missing headers

[PATCH 00/12] printf() fixes
 2020-09-15  9:27 UTC  (44+ messages)
` [PATCH 01/12] dl_iterate_phdr.3: Cast 'ElfN_Word' to 'uintmax_t' for printf()
` [PATCH 02/12] malloc_hook.3: Remove unneeded cast, and print 'size_t' with "%zu"
` [PATCH 03/12] pthread_getcpuclockid.3: Cast 'time_t' to 'intmax_t' for printf()
` [PATCH 04/12] getgrent_r.3: Cast 'gid_t' "
` [PATCH 05/12] getpwent_r.3: Cast 'uid_t' "
` [PATCH 06/12] rtld-audit.7: Use "%u" rather than "%d" when printing 'unsigned int' values
` [PATCH 07/12] userfaultfd.2: Use 'PRIx64' rather than "%llx" when printing 64-bit fixed-width types
` [PATCH 08/12] clock_getres.2: Cast 'time_t' to 'intmax_t' for printf() and fix the length modifiers
      ` [PATCH v2 08/12] clock_getres.2: Cast 'time_t' very small,values to 'int' "
` [PATCH 09/12] open_by_handle_at.2: Use "%u" rather than "%d" when printing 'unsigned int' values
` [PATCH 10/12] spu_run.2: Cast 'int' to 'unsigned int' when printing with "%x"
` [PATCH 11/12] mprotect.2: Use "%p" rather than casting to 'long' when printing adresses (pointer values)
` [PATCH 12/12] pidfd_open.2: Cast 'short' to 'unsigned int' when printing with "%x"

Paid Post
 2020-09-15  9:03 UTC 

[PATCH v2] socket.7,unix.7: add initial description for SO_PEERSEC
 2020-09-15  8:56 UTC  (2+ messages)

[IDEA] New pages for types: structs and typedfefs
 2020-09-15  6:22 UTC  (20+ messages)
            ` [RFC v1] system_data_types.7: Draft (and links to it: <type>.3)
  ` [RFC v2] system_data_types.7: Draft v2
  ` [RFC v3] sigval.3, ssize_t.3, suseconds_t.3, time_t.3, timer_t.3, timespec.3, timeval.3, system_data_types.7: Document system types (draft v3)

[PATCH] add_key.2, clock_getres.2, clone.2, futex.2, getdents.2, getpid.2, getrlimit.2, ioctl_ns.2, kcmp.2, keyctl.2, memfd_create.2, request_key.2, stat.2, timer_create.2, wait.2, clock_getcpuclockid.3, getgrent_r.3, getpwent_r.3, getpwnam.3, posix_spawn.3, pthread_getcpuclockid.3, strcat.3, feature_test_macros.7, user_namespaces.7: Cast types that don't have a printf() length modifier to ([u]intmax_t) for printing
 2020-09-14 10:03 UTC  (5+ messages)
  ` [PATCH v2] add_key.2, clock_getres.2, clone.2, futex.2, getdents.2, getpid.2, getrlimit.2, ioctl_ns.2, kcmp.2, keyctl.2, memfd_create.2, request_key.2, stat.2, timer_create.2, wait.2, clock_getcpuclockid.3, dl_iterate_phdr.3, "

[PATCH] stat.2: fixed inode printing in example program
 2020-09-14  9:30 UTC  (14+ messages)

[PATCH] stat.2: fixed inode printing in example program
 2020-09-13 19:32 UTC  (3+ messages)

[patch] posix_fallocate.3: add note about error codes for musl
 2020-09-13 15:49 UTC  (3+ messages)
` [musl] "
  ` [PATCH v2] posix_fallocate.3: add EOPNOTSUPP error code

[PATCH] eventfd.2, mprotect.2, pidfd_open.2, spu_run.2, timer_create.2, bswap.3, dl_iterate_phdr.3, endian.3, pthread_attr_init.3, pthread_getattr_np.3, vcs.4, rtld-audit.7: In printf(): s/0x%/%#/ except when followed by X instead of x
 2020-09-12  5:59 UTC  (2+ messages)

[PATCH] getaddrinfo_a.3: Use C99 style to declare loop counter variables
 2020-09-12  5:58 UTC  (2+ messages)

[PATCH] msgctl.2, outb.2, abs.3, dl_iterate_phdr.3, drand48.3, drand48_r.3, encrypt.3, ffs.3, lrint.3, lround.3, ntp_gettime.3, printf.3, random.3, scalbln.3, scanf.3, strtol.3, stroul.3, utmp.5, feature_test_macros.7, rtld-audit.7: Omit 'int' keyword for 'short', 'long' and 'long long' types, both signed and 'unsigned'
 2020-09-12  5:57 UTC  (2+ messages)

[PATCH] socket.7,unix.7: add initial description for SO_PEERSEC
 2020-09-11 19:33 UTC  (4+ messages)

[PATCH 1/5] Add manpage for open_tree(2)
 2020-09-11 12:44 UTC  (6+ messages)
` [PATCH 4/5] Add manpage for fsopen(2) and fsmount(2)

[PATCH] bswap.3: Use strtoull() for parsing 64-bit numbers
 2020-09-11 12:11 UTC  (2+ messages)

[Spam] We are still waiting for your email
 2020-09-09  8:49 UTC 

[PATCH] loop.4: tfix
 2020-09-10 10:41 UTC  (2+ messages)

[PATCH] dlopen.3, gnu_get_libc_version.3: tfix
 2020-09-10 10:41 UTC  (2+ messages)

[PATCH v4] loop.4: add some details about lo_flags
 2020-09-10  6:13 UTC  (2+ messages)

[PATCH v3 1/2] loop.4: add some details about lo_flags
 2020-09-10  1:12 UTC  (5+ messages)
  ` [PATCH v3 2/2] loop.4: Document LOOP_CONFIGURE ioctl

[PATCH v2 1/3] loop.4: Document LO_FLAGS_DIRECT_IO flag
 2020-09-09 11:17 UTC  (8+ messages)
` [PATCH v2 2/3] loop.4: add some details about lo_flag
  ` AW: "
      ` AW: "

[PATCH] msgop.2: Add restriction on ENOSYS error
 2020-09-09 12:19 UTC  (2+ messages)


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).