linux-arch.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-08-27 15:00:58 to 2020-08-29 17:31:04 UTC [more...]

[PATCH v4 00/23] kprobes: Unify kretprobe trampoline handlers and make kretprobe lockless
 2020-08-29 17:31 UTC  (38+ messages)
` [PATCH v4 01/23] kprobes: Add generic kretprobe trampoline handler
` [PATCH v4 02/23] x86/kprobes: Use "
` [PATCH v4 03/23] arm: kprobes: "
` [PATCH v4 04/23] arm64: "
` [PATCH v4 05/23] arc: "
` [PATCH v4 06/23] csky: "
` [PATCH v4 07/23] ia64: "
` [PATCH v4 08/23] mips: "
` [PATCH v4 09/23] parisc: "
` [PATCH v4 10/23] powerpc: "
` [PATCH v4 11/23] s390: "
` [PATCH v4 12/23] sh: "
` [PATCH v4 13/23] sparc: "
` [PATCH v4 14/23] kprobes: Remove NMI context check
` [PATCH v4 15/23] kprobes: Free kretprobe_instance with rcu callback
` [PATCH v4 16/23] kprobes: Make local used functions static
` [PATCH v4 17/23] llist: Add nonatomic __llist_add()
` [PATCH v4 18/23] sched: Fix try_invoke_on_locked_down_task() semantics
` [PATCH v4 19/23] kprobes: Remove kretprobe hash
` [PATCH v4 20/23] [RFC] kprobes: Remove task scan for updating kretprobe_instance
` [PATCH v4 21/23] asm-generic/atomic: Add try_cmpxchg() fallbacks
` [PATCH v4 22/23] freelist: Lock less freelist
` [PATCH v4 23/23] kprobes: Replace rp->free_instance with freelist

[PATCH v5 00/21] kprobes: Unify kretprobe trampoline handlers and make kretprobe lockless
 2020-08-29 13:03 UTC  (22+ messages)
` [PATCH v5 01/21] kprobes: Add generic kretprobe trampoline handler
` [PATCH v5 02/21] x86/kprobes: Use "
` [PATCH v5 03/21] arm: kprobes: "
` [PATCH v5 04/21] arm64: "
` [PATCH v5 05/21] arc: "
` [PATCH v5 06/21] csky: "
` [PATCH v5 07/21] ia64: "
` [PATCH v5 08/21] mips: "
` [PATCH v5 09/21] parisc: "
` [PATCH v5 10/21] powerpc: "
` [PATCH v5 11/21] s390: "
` [PATCH v5 12/21] sh: "
` [PATCH v5 13/21] sparc: "
` [PATCH v5 14/21] kprobes: Remove NMI context check
` [PATCH v5 15/21] kprobes: Free kretprobe_instance with rcu callback
` [PATCH v5 16/21] kprobes: Make local used functions static
` [PATCH v5 17/21] llist: Add nonatomic __llist_add() and __llist_dell_all()
` [PATCH v5 18/21] kprobes: Remove kretprobe hash
` [PATCH v5 19/21] asm-generic/atomic: Add try_cmpxchg() fallbacks
` [PATCH v5 20/21] freelist: Lock less freelist
` [PATCH v5 21/21] kprobes: Replace rp->free_instance with freelist

[PATCH v3 00/16] kprobes: Unify kretprobe trampoline handlers
 2020-08-29  9:31 UTC  (20+ messages)
` [PATCH v3 01/16] kprobes: Add generic kretprobe trampoline handler
` [PATCH v3 02/16] x86/kprobes: Use "
` [PATCH v3 03/16] arm: kprobes: "
` [PATCH v3 04/16] arm64: "
` [PATCH v3 05/16] arc: "
` [PATCH v3 06/16] csky: "
` [PATCH v3 07/16] ia64: "
` [PATCH v3 08/16] mips: "
` [PATCH v3 09/16] parisc: "
` [PATCH v3 10/16] powerpc: "
` [PATCH v3 11/16] s390: "
` [PATCH v3 12/16] sh: "
` [PATCH v3 13/16] sparc: "
` [PATCH v3 14/16] kprobes: Remove NMI context check
` [PATCH v3 15/16] kprobes: Free kretprobe_instance with rcu callback
` [PATCH v3 16/16] kprobes: Make local used functions static

remove the last set_fs() in common code, and remove it for x86 and powerpc v2
 2020-08-29  9:25 UTC  (18+ messages)
` [PATCH 01/10] fs: don't allow kernel reads and writes without iter ops
` [PATCH 02/10] fs: don't allow splice read/write without explicit ops
` [PATCH 03/10] uaccess: add infrastructure for kernel builds with set_fs()
` [PATCH 04/10] test_bitmap: skip user bitmap tests for !CONFIG_SET_FS
` [PATCH 05/10] lkdtm: disable set_fs-based "
` [PATCH 06/10] x86: move PAGE_OFFSET, TASK_SIZE & friends to page_{32,64}_types.h
` [PATCH 07/10] x86: make TASK_SIZE_MAX usable from assembly code
` [PATCH 08/10] x86: remove address space overrides using set_fs()
` [PATCH 09/10] powerpc: use non-set_fs based maccess routines
` [PATCH 10/10] powerpc: remove address space overrides using set_fs()

[RFC][PATCH 0/7] kprobes: Make kretprobes lockless
 2020-08-29  9:15 UTC  (38+ messages)
` [RFC][PATCH 1/7] llist: Add nonatomic __llist_add()
` [RFC][PATCH 2/7] sched: Fix try_invoke_on_locked_down_task() semantics
` [RFC][PATCH 3/7] kprobes: Remove kretprobe hash
` [RFC][PATCH 4/7] kprobe: Dont kfree() from breakpoint context
` [RFC][PATCH 5/7] asm-generic/atomic: Add try_cmpxchg() fallbacks
` [RFC][PATCH 6/7] freelist: Lock less freelist
` [RFC][PATCH 7/7] kprobes: Replace rp->free_instance with freelist

[PATCH v2 00/23] Use asm-generic for mmu_context no-op functions
 2020-08-29  9:09 UTC  (5+ messages)
` [PATCH v2 12/23] nds32: use asm-generic/mmu_context.h for no-op implementations
` [PATCH v2 15/23] parisc: "

[PATCH v2 0/3] docs/memory-barriers: Apply missed changes
 2020-08-29  8:40 UTC  (6+ messages)
` [PATCH v2 1/3] docs/memory-barriers.txt: Fix references for DMA*.txt files
` [PATCH v2 2/3] docs/memory-barriers.txt/kokr: Remove remaining references to mmiowb()
` [PATCH v2 3/3] dics/memory-barriers.txt/kokr: Allow architecture to override the flush barrier
    ` [PATCH v3 3/3] docs/memory-barriers.txt/kokr: "

[PATCH 0/3] memory-barriers: Apply missed changes
 2020-08-29  8:19 UTC  (5+ messages)
` [PATCH 1/3] docs/memory-barriers.txt: Fix references for DMA*.txt files
` [PATCH 2/3] docs/memory-barriers.txt/kokr: Remove remaining references to mmiowb()
` [PATCH 3/3] dics/memory-barriers.txt/kokr: Allow architecture to override the flush barrier

[RFC/RFT PATCH 0/6] Unify NUMA implementation between ARM64 & RISC-V
 2020-08-29  1:11 UTC  (16+ messages)
` [RFC/RFT PATCH 1/6] numa: Move numa implementation to common code
` [RFC/RFT PATCH 2/6] arm64, numa: Change the numa init function name to be generic
` [RFC/RFT PATCH 3/6] arm64, numa: Move pcibus_to_node definition to generic numa code

[PATCH v11 00/25] Control-flow Enforcement: Shadow Stack
 2020-08-28 17:45 UTC  (24+ messages)
` [PATCH v11 25/25] x86/cet/shstk: Add arch_prctl functions for shadow stack

Flushing transparent hugepages
 2020-08-28 17:06 UTC  (3+ messages)

[PATCH v2 0/3] add fault injection to user memory access
 2020-08-28 14:13 UTC  (4+ messages)
` [PATCH v2 1/3] lib, include/linux: add usercopy failure capability
` [PATCH v2 2/3] lib, uaccess: add failure injection to usercopy functions
` [PATCH v2 3/3] x86: add failure injection to get/put/clear_user

[PATCH 0/4] more mm switching vs TLB shootdown and lazy tlb
 2020-08-28 11:15 UTC  (6+ messages)
` [PATCH 1/4] mm: fix exec activate_mm vs TLB shootdown and lazy tlb switching race
` [PATCH 2/4] powerpc: select ARCH_WANT_IRQS_OFF_ACTIVATE_MM
` [PATCH 3/4] sparc64: remove mm_cpumask clearing to fix kthread_use_mm race
` [PATCH 4/4] powerpc/64s/radix: Fix mm_cpumask trimming race vs kthread_use_mm

[PATCH 11/23] afs: use ASSERT_FAIL()/ASSERT_WARN() to cleanup some code
 2020-08-28  9:49 UTC  (3+ messages)

[PATCH v3] mm: Fix kthread_use_mm() vs TLB invalidate
 2020-08-28  6:55 UTC  (2+ messages)

[PATCH 06/23] rxrpc: use ASSERT_FAIL()/ASSERT_WARN() to cleanup some code
 2020-08-28  6:05 UTC  (4+ messages)

[PATCH 09/23] cachefiles: use ASSERT_FAIL()/ASSERT_WARN() to cleanup some code
 2020-08-28  4:30 UTC  (2+ messages)

[PATCH v8 0/8] powerpc: switch VDSO to C implementation
 2020-08-28  2:14 UTC  (8+ messages)
` [PATCH v8 2/8] powerpc/vdso: Remove __kernel_datapage_offset and simplify __get_datapage()

[PATCH 0/1] clean up the code related to ASSERT()
 2020-08-27 16:32 UTC  (2+ messages)

[PATCH 08/23] jfs: use ASSERT_FAIL()/ASSERT_WARN() to cleanup some code
 2020-08-27 16:13 UTC  (2+ messages)

[PATCH v2 00/15] kprobes: Unify kretprobe trampoline handlers
 2020-08-27 11:48 UTC  (11+ messages)
` [PATCH v2 01/15] kprobes: Add generic kretprobe trampoline handler
` [PATCH v2 06/15] csky: kprobes: Use "
` [PATCH v2 07/15] ia64: "
` [PATCH v2 08/15] mips: "
` [PATCH v2 09/15] parisc: "
` [PATCH v2 10/15] powerpc: "
` [PATCH v2 11/15] s390: "
` [PATCH v2 13/15] sparc: "
` [PATCH v2 15/15] kprobes: Free kretprobe_instance with rcu callback


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