Linux-api Archive mirror
 help / color / mirror / Atom feed
 messages from 2024-02-05 14:10:11 to 2024-02-19 22:39:41 UTC [more...]

[PATCH v2 00/31] NT synchronization primitive driver
 2024-02-19 22:38 UTC  (31+ messages)
` [PATCH v2 01/31] ntsync: Introduce the ntsync driver and character device
` [PATCH v2 02/31] ntsync: Introduce NTSYNC_IOC_CREATE_SEM
` [PATCH v2 03/31] ntsync: Introduce NTSYNC_IOC_SEM_POST
` [PATCH v2 04/31] ntsync: Introduce NTSYNC_IOC_WAIT_ANY
` [PATCH v2 05/31] ntsync: Introduce NTSYNC_IOC_WAIT_ALL
` [PATCH v2 06/31] ntsync: Introduce NTSYNC_IOC_CREATE_MUTEX
` [PATCH v2 07/31] ntsync: Introduce NTSYNC_IOC_MUTEX_UNLOCK
` [PATCH v2 08/31] ntsync: Introduce NTSYNC_IOC_MUTEX_KILL
` [PATCH v2 09/31] ntsync: Introduce NTSYNC_IOC_CREATE_EVENT
` [PATCH v2 10/31] ntsync: Introduce NTSYNC_IOC_EVENT_SET
` [PATCH v2 11/31] ntsync: Introduce NTSYNC_IOC_EVENT_RESET
` [PATCH v2 12/31] ntsync: Introduce NTSYNC_IOC_EVENT_PULSE
` [PATCH v2 13/31] ntsync: Introduce NTSYNC_IOC_SEM_READ
` [PATCH v2 14/31] ntsync: Introduce NTSYNC_IOC_MUTEX_READ
` [PATCH v2 15/31] ntsync: Introduce NTSYNC_IOC_EVENT_READ
` [PATCH v2 16/31] ntsync: Introduce alertable waits
` [PATCH v2 17/31] ntsync: Allow waits to use the REALTIME clock
` [PATCH v2 18/31] selftests: ntsync: Add some tests for semaphore state
` [PATCH v2 19/31] selftests: ntsync: Add some tests for mutex state
` [PATCH v2 20/31] selftests: ntsync: Add some tests for NTSYNC_IOC_WAIT_ANY
` [PATCH v2 21/31] selftests: ntsync: Add some tests for NTSYNC_IOC_WAIT_ALL
` [PATCH v2 22/31] selftests: ntsync: Add some tests for wakeup signaling with WINESYNC_IOC_WAIT_ANY
` [PATCH v2 23/31] selftests: ntsync: Add some tests for wakeup signaling with WINESYNC_IOC_WAIT_ALL
` [PATCH v2 24/31] selftests: ntsync: Add some tests for manual-reset event state
` [PATCH v2 25/31] selftests: ntsync: Add some tests for auto-reset "
` [PATCH v2 26/31] selftests: ntsync: Add some tests for wakeup signaling with events
` [PATCH v2 27/31] selftests: ntsync: Add tests for alertable waits
` [PATCH v2 28/31] selftests: ntsync: Add some tests for wakeup signaling via alerts
` [PATCH v2 29/31] selftests: ntsync: Add a stress test for contended waits
` [PATCH v2 30/31] maintainers: Add an entry for ntsync

[PATCH 00/31] NT synchronization primitive driver
 2024-02-19 19:02 UTC  (40+ messages)
` [PATCH 01/31] ntsync: Introduce the ntsync driver and character device
` [PATCH 02/31] ntsync: Introduce NTSYNC_IOC_CREATE_SEM
` [PATCH 03/31] ntsync: Introduce NTSYNC_IOC_SEM_POST
` [PATCH 04/31] ntsync: Introduce NTSYNC_IOC_WAIT_ANY
` [PATCH 05/31] ntsync: Introduce NTSYNC_IOC_WAIT_ALL
` [PATCH 06/31] ntsync: Introduce NTSYNC_IOC_CREATE_MUTEX
` [PATCH 07/31] ntsync: Introduce NTSYNC_IOC_MUTEX_UNLOCK
` [PATCH 08/31] ntsync: Introduce NTSYNC_IOC_MUTEX_KILL
` [PATCH 09/31] ntsync: Introduce NTSYNC_IOC_CREATE_EVENT
` [PATCH 10/31] ntsync: Introduce NTSYNC_IOC_EVENT_SET
  ` [PATCH 11/31] ntsync: Introduce NTSYNC_IOC_EVENT_RESET
  ` [PATCH 12/31] ntsync: Introduce NTSYNC_IOC_EVENT_PULSE
  ` [PATCH 13/31] ntsync: Introduce NTSYNC_IOC_SEM_READ
  ` [PATCH 14/31] ntsync: Introduce NTSYNC_IOC_MUTEX_READ
  ` [PATCH 15/31] ntsync: Introduce NTSYNC_IOC_EVENT_READ
  ` [PATCH 16/31] ntsync: Introduce alertable waits
  ` [PATCH 17/31] ntsync: Allow waits to use the REALTIME clock
  ` [PATCH 18/31] selftests: ntsync: Add some tests for semaphore state
  ` [PATCH 19/31] selftests: ntsync: Add some tests for mutex state
  ` [PATCH 20/31] selftests: ntsync: Add some tests for NTSYNC_IOC_WAIT_ANY
  ` [PATCH 21/31] selftests: ntsync: Add some tests for NTSYNC_IOC_WAIT_ALL
  ` [PATCH 22/31] selftests: ntsync: Add some tests for wakeup signaling with WINESYNC_IOC_WAIT_ANY
  ` [PATCH 23/31] selftests: ntsync: Add some tests for wakeup signaling with WINESYNC_IOC_WAIT_ALL
  ` [PATCH 24/31] selftests: ntsync: Add some tests for manual-reset event state
  ` [PATCH 25/31] selftests: ntsync: Add some tests for auto-reset "
  ` [PATCH 26/31] selftests: ntsync: Add some tests for wakeup signaling with events
  ` [PATCH 27/31] selftests: ntsync: Add tests for alertable waits
  ` [PATCH 28/31] selftests: ntsync: Add some tests for wakeup signaling via alerts
  ` [PATCH 29/31] selftests: ntsync: Add a stress test for contended waits
  ` [PATCH 30/31] maintainers: Add an entry for ntsync
  ` [PATCH 31/31] docs: ntsync: Add documentation for the ntsync uAPI

[PATCH 00/31] NT synchronization primitive driver
 2024-02-17  8:01 UTC  (2+ messages)

[PATCH v2 1/2] signal: add the "int si_code" arg to prepare_kill_siginfo()
 2024-02-16 18:12 UTC  (28+ messages)
` [PATCH v2 2/2] pidfd: change pidfd_send_signal() to respect PIDFD_THREAD

[PATCH v2] uapi/auxvec: Define AT_HWCAP3 and AT_HWCAP4 aux vector, entries
 2024-02-16  4:13 UTC  (5+ messages)

[PATCH RFT v5 0/7] fork: Support shadow stacks in clone3()
 2024-02-15  4:14 UTC  (14+ messages)
` [PATCH RFT v5 1/7] Documentation: userspace-api: Add shadow stack API documentation
` [PATCH RFT v5 2/7] selftests: Provide helper header for shadow stack testing
` [PATCH RFT v5 3/7] mm: Introduce ARCH_HAS_USER_SHADOW_STACK
` [PATCH RFT v5 4/7] fork: Add shadow stack support to clone3()

[PATCH net-next v8 0/4] Per epoll context busy poll support
 2024-02-14 11:10 UTC  (7+ messages)
` [PATCH net-next v8 1/4] eventpoll: support busy poll per epoll instance
` [PATCH net-next v8 2/4] eventpoll: Add per-epoll busy poll packet budget
` [PATCH net-next v8 3/4] eventpoll: Add per-epoll prefer busy poll option
` [PATCH net-next v8 4/4] eventpoll: Add epoll ioctl for epoll_params

[PATCH v4] ELF: AT_PAGE_SHIFT_MASK -- supply userspace with available page shifts
 2024-02-13 19:39 UTC  (6+ messages)

[PATCH net-next v7 0/4] Per epoll context busy poll support
 2024-02-11  9:40 UTC  (7+ messages)
` [PATCH net-next v7 1/4] eventpoll: support busy poll per epoll instance
` [PATCH net-next v7 2/4] eventpoll: Add per-epoll busy poll packet budget
` [PATCH net-next v7 3/4] eventpoll: Add per-epoll prefer busy poll option
` [PATCH net-next v7 4/4] eventpoll: Add epoll ioctl for epoll_params

[PATCH] pidfd: change pidfd_send_signal() to respect PIDFD_THREAD
 2024-02-09 11:29 UTC  (15+ messages)

[PATCH net-next v6 0/4] Per epoll context busy poll support
 2024-02-08 18:06 UTC  (22+ messages)
` [PATCH net-next v6 1/4] eventpoll: support busy poll per epoll instance
` [PATCH net-next v6 2/4] eventpoll: Add per-epoll busy poll packet budget
` [PATCH net-next v6 3/4] eventpoll: Add per-epoll prefer busy poll option
` [PATCH net-next v6 4/4] eventpoll: Add epoll ioctl for epoll_params

[PATCH v2] pidfd: getfd should always report ESRCH if a task is exiting
 2024-02-07 13:38 UTC  (7+ messages)

[PATCH] pidfd: getfd should always report ESRCH if a task is exiting
 2024-02-07 10:28 UTC  (9+ messages)

The sk_err mechanism is infuriating in userspace
 2024-02-06 17:24 UTC  (4+ messages)

[PATCH] pidfd: clone: allow CLONE_THREAD | CLONE_PIDFD together
 2024-02-06 14:52 UTC  (3+ messages)

[net-next 0/3] Per epoll context busy poll support
 2024-02-05 19:59 UTC  (15+ messages)

[PATCH net-next v5 0/3] Per epoll context busy poll support
 2024-02-05 18:25 UTC  (3+ messages)
` [PATCH net-next v5 1/3] eventpoll: support busy poll per epoll instance

[PATCH 0/3] pidfd_poll: report POLLHUP when pid_task() == NULL
 2024-02-05 14:08 UTC  (9+ messages)
` [PATCH 1/3] "


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 read-only IMAP folder(s) and NNTP newsgroup(s).