Linux real-time development
 help / color / mirror / Atom feed
 messages from 2026-01-19 21:00:10 to 2026-01-23 06:53:41 UTC [more...]

[PATCH v4 00/22] slab: replace cpu (partial) slabs with sheaves
 2026-01-23  6:52 UTC  (10+ messages)
` [PATCH v4 01/22] mm/slab: add rcu_barrier() to kvfree_rcu_barrier_on_cache()
` [PATCH v4 02/22] mm/slab: fix false lockdep warning in __kfree_rcu_sheaf()
` [PATCH v4 03/22] slab: add SLAB_CONSISTENCY_CHECKS to SLAB_NEVER_MERGE
` [PATCH v4 04/22] mm/slab: move and refactor __kmem_cache_alias()
` [PATCH v4 05/22] mm/slab: make caches with sheaves mergeable
` [PATCH v4 06/22] slab: add sheaves to most caches
` [PATCH v4 07/22] slab: introduce percpu sheaves bootstrap
` [PATCH v4 09/22] slab: handle kmalloc "
` [PATCH v4 10/22] slab: add optimized sheaf refill from partial list

[PATCH RESEND v3 00/10] mm: add and use vma_assert_stabilised() helper
 2026-01-22 22:12 UTC  (31+ messages)
` [PATCH RESEND v3 01/10] mm/vma: rename VMA_LOCK_OFFSET to VM_REFCNT_EXCLUDE_READERS_FLAG
` [PATCH RESEND v3 02/10] mm/vma: document possible vma->vm_refcnt values and reference comment
` [PATCH RESEND v3 03/10] mm/vma: rename is_vma_write_only(), separate out shared refcount put
` [PATCH RESEND v3 04/10] mm/vma: add+use vma lockdep acquire/release defines
` [PATCH RESEND v3 05/10] mm/vma: de-duplicate __vma_enter_locked() error path
` [PATCH v3 06/10] mm/vma: clean up __vma_enter/exit_locked()
` [PATCH RESEND v3 07/10] mm/vma: introduce helper struct + thread through exclusive lock fns
` [PATCH RESEND v3 08/10] mm/vma: improve and document __is_vma_write_locked()
` [PATCH RESEND v3 09/10] mm/vma: update vma_assert_locked() to use lockdep
` [PATCH RESEND v3 10/10] mm/vma: add and use vma_assert_stabilised()

[PATCH v3] mm/mm_init: Don't cond_resched() in deferred_init_memmap_chunk() if called from deferred_grow_zone()
 2026-01-22 20:56 UTC  (3+ messages)

[PATCH v3 00/10] mm: add and use vma_assert_stabilised() helper
 2026-01-22 19:25 UTC  (12+ messages)
` [PATCH v3 1/8] mm/vma: rename VMA_LOCK_OFFSET to VM_REFCNT_EXCLUDE_READERS_FLAG
` [PATCH v3 2/8] mm/vma: document possible vma->vm_refcnt values and reference comment
` [PATCH v3 3/8] mm/vma: rename is_vma_write_only(), separate out shared refcount put
` [PATCH v3 4/8] mm/vma: add+use vma lockdep acquire/release defines
` [PATCH v3 5/8] mm/vma: de-duplicate __vma_enter_locked() error path
` [PATCH v3 6/8] mm/vma: clean up __vma_enter/exit_locked()
` [PATCH v3 7/8] mm/vma: introduce helper struct + thread through exclusive lock fns
` [PATCH v3 8/8] mm/vma: improve and document __is_vma_write_locked()

[PATCH] mm/mm_init: Don't call cond_resched() in deferred_init_memmap_chunk() if rcu_preempt_depth() set
 2026-01-22 17:59 UTC  (7+ messages)

[PATCH v5 0/6] i2c: designware: Improve support of multi-messages transfer
 2026-01-22 16:25 UTC  (15+ messages)
` [PATCH v5 1/6] i2c: designware: Optimize flag reading in i2c_dw_read()
` [PATCH v5 2/6] i2c: designware: Sort compatible strings in alphabetical order
` [PATCH v5 3/6] i2c: designware: Add dedicated algorithm for AMD NAVI
` [PATCH v5 4/6] i2c: designware: Implement I2C_M_STOP support
` [PATCH v5 5/6] i2c: designware: Use runtime PM macro for auto-cleanup
` [PATCH v5 6/6] i2c: designware: Support of controller with IC_EMPTYFIFO_HOLD_MASTER disabled

[PATCH v2 0/3] media: dw100: Dynamic vertex map updates and fixes for PREEMPT_RT
 2026-01-22 14:44 UTC  (4+ messages)
` [PATCH v2 1/3] media: dw100: Implement V4L2 requests support
` [PATCH v2 2/3] media: dw100: Implement dynamic vertex map update
` [PATCH v2 3/3] media: dw100: Fix kernel oops with PREEMPT_RT enabled

[PATCH v5 0/3] fix wrong usage of memory allocation APIs under PREEMPT_RT in arm64
 2026-01-22 13:47 UTC  (30+ messages)
` [PATCH v5 2/3] arm64: mmu: avoid allocating pages while splitting the linear mapping
` [PATCH v5 3/3] arm64: mmu: avoid allocating pages while installing ng-mapping for KPTI

[PATCH v3 09/10] mm/vma: update vma_assert_locked() to use lockdep
 2026-01-22 12:50 UTC  (2+ messages)
` [PATCH v3 10/10] mm/vma: add and use vma_assert_stabilised()

[PATCH v3 00/21] slab: replace cpu (partial) slabs with sheaves
 2026-01-22  9:30 UTC  (89+ messages)
` [PATCH v3 05/21] slab: add sheaves to most caches
` [PATCH v3 06/21] slab: introduce percpu sheaves bootstrap
` [PATCH v3 08/21] slab: handle kmalloc "
` [PATCH v3 09/21] slab: add optimized sheaf refill from partial list
` [PATCH v3 10/21] slab: remove cpu (partial) slabs usage from allocation paths
` [PATCH v3 11/21] slab: remove SLUB_CPU_PARTIAL
` [PATCH v3 12/21] slab: remove the do_slab_free() fastpath
` [PATCH v3 13/21] slab: remove defer_deactivate_slab()
` [PATCH v3 14/21] slab: simplify kmalloc_nolock()
` [PATCH v3 15/21] slab: remove struct kmem_cache_cpu
` [PATCH v3 16/21] slab: remove unused PREEMPT_RT specific macros
` [PATCH v3 17/21] slab: refill sheaves from all nodes
` [PATCH v3 18/21] slab: update overview comments
` [PATCH v3 19/21] slab: remove frozen slab checks from __slab_free()
` [PATCH v3 20/21] mm/slub: remove DEACTIVATE_TO_* stat items
` [PATCH v3 21/21] mm/slub: cleanup and repurpose some "

[PATCH v2] mm/mm_init: Don't call cond_resched() in deferred_init_memmap_chunk() if rcu_preempt_depth() set
 2026-01-22  7:59 UTC  (2+ messages)

[PATCH] irqchip/gic-v3-its: Don't acquire rt_spin_lock in allocate_vpe_l1_table()
 2026-01-22  3:49 UTC  (18+ messages)

[5.10] net/sched: act_ife: convert comma to semicolon
 2026-01-21 14:39 UTC 

REGRESSION on linux-next (next-20260115)
 2026-01-21 13:19 UTC  (9+ messages)

[PATCH v2 0/2] add and use vma_assert_stabilised() helper
 2026-01-21  9:07 UTC  (7+ messages)
` [PATCH v2 1/2] mm/vma: use lockdep where we can, reduce duplication
` [PATCH v2 2/2] mm: add vma_assert_stabilised()


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox