linux-api.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2024-01-31 01:47:46 to 2024-02-10 00:55:26 UTC [more...]

[PATCH RFT v5 0/7] fork: Support shadow stacks in clone3()
 2024-02-10  0:55 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 RFT v5 5/7] selftests/clone3: Factor more of main loop into test_clone3()
` [PATCH RFT v5 6/7] selftests/clone3: Allow tests to flag if -E2BIG is a valid error code
` [PATCH RFT v5 7/7] selftests/clone3: Test shadow stack support

[PATCH v4] ELF: AT_PAGE_SHIFT_MASK -- supply userspace with available page shifts
 2024-02-10  0:41 UTC  (4+ messages)

[PATCH net-next v7 0/4] Per epoll context busy poll support
 2024-02-09 21:15 UTC  (5+ 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 v2 1/2] signal: add the "int si_code" arg to prepare_kill_siginfo()
 2024-02-09 20:01 UTC  (15+ messages)
` [PATCH v2 2/2] pidfd: change pidfd_send_signal() to respect PIDFD_THREAD

[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  (17+ messages)

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

[PATCH 0/3] pidfd_poll: report POLLHUP when pid_task() == NULL
 2024-02-05 14:08 UTC  (14+ messages)
` [PATCH 1/3] "
` [PATCH 2/3] pidfd: kill the no longer needed do_notify_pidfd() in de_thread()
` [PATCH 3/3] pid: kill the obsolete PIDTYPE_PID code in transfer_pid()

[PATCH v5 0/4] mm/mempolicy: weighted interleave mempolicy and sysfs extension
 2024-02-05  5:48 UTC  (6+ messages)
` [PATCH v5 1/4] mm/mempolicy: implement the sysfs-based weighted_interleave interface
` [PATCH v5 2/4] mm/mempolicy: refactor a read-once mechanism into a function for re-use
` [PATCH v5 3/4] mm/mempolicy: introduce MPOL_WEIGHTED_INTERLEAVE for weighted interleaving
` [PATCH v5 4/4] mm/mempolicy: protect task interleave functions with tsk->mems_allowed_seq

[PATCH RFT v3 0/5] fork: Support shadow stacks in clone3()
 2024-02-04 11:56 UTC  (3+ messages)
` [PATCH RFT v3 1/5] mm: Introduce ARCH_HAS_USER_SHADOW_STACK

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

[PATCH v3 1/3] pidfd: allow pidfd_open() on non-thread-group leaders
 2024-02-01 19:33 UTC  (20+ messages)
                  ` [RFC PATCH] pidfd: implement PIDFD_THREAD flag for pidfd_open()

[PATCH v4 0/3] mm/mempolicy: weighted interleave mempolicy and sysfs extension
 2024-02-01  3:10 UTC  (13+ messages)
` [PATCH v4 3/3] mm/mempolicy: introduce MPOL_WEIGHTED_INTERLEAVE for weighted interleaving

[PATCH net-next v4 0/3] Per epoll context busy poll support
 2024-01-31 16:16 UTC  (10+ messages)
` [PATCH net-next v4 1/3] eventpoll: support busy poll per epoll instance
` [PATCH net-next v4 2/3] eventpoll: Add per-epoll busy poll packet budget
` [PATCH net-next v4 3/3] eventpoll: Add epoll ioctl for epoll_params

[PATCH 1/5] docs: move admin-guide/sysfs-rules.rst to userspace-api/
 2024-01-31  5:42 UTC  (5+ messages)
` [PATCH 4/5] Documentation/ABI/README: convert to ReST


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