The patch titled Subject: ipc/sem.c: prevent queue.status tearing in semop has been removed from the -mm tree. Its filename was ipc-sem-prevent-queuestatus-tearing-in-semop.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Davidlohr Bueso <dave@xxxxxxxxxxxx> Subject: ipc/sem.c: prevent queue.status tearing in semop In order for load/store tearing prevention to work, _all_ accesses to the variable in question need to be done around READ and WRITE_ONCE() macros. Ensure everyone does so for q->status variable for semtimedop(). Link: http://lkml.kernel.org/r/20180717052654.676-1-dave@xxxxxxxxxxxx Signed-off-by: Davidlohr Bueso <dbueso@xxxxxxx> Cc: Manfred Spraul <manfred@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- ipc/sem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/ipc/sem.c~ipc-sem-prevent-queuestatus-tearing-in-semop +++ a/ipc/sem.c @@ -2118,7 +2118,7 @@ static long do_semtimedop(int semid, str } do { - queue.status = -EINTR; + WRITE_ONCE(queue.status, -EINTR); queue.sleeper = current; __set_current_state(TASK_INTERRUPTIBLE); _ Patches currently in -mm which might be from dave@xxxxxxxxxxxx are fs-epoll-loosen-irq-safety-in-ep_scan_ready_list.patch fs-epoll-loosen-irq-safety-in-epoll_insert-and-epoll_remove.patch fs-epoll-robustify-irq-safety-with-lockdep_assert_irqs_enabled.patch fs-epoll-simply-config_net_rx_busy_poll-ifdefery.patch ipc-drop-ipc_lock.patch lib-rhashtable-simplify-bucket_table_alloc.patch lib-rhashtable-guarantee-initial-hashtable-allocation.patch ipc-get-rid-of-ids-tables_initialized-hack.patch ipc-simplify-ipc-initialization.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html