rcu.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
[PATCH] rcu/nocb: Fix using smp_processor_id() in preemptible warning
 2024-05-14 15:18 UTC  (3+ messages)

[syzbot] [bcachefs?] kernel panic: bch_dev->ref underflow, last put: bch2_get_next_dev
 2024-05-14 13:56 UTC 

[PATCH v2 00/27] context_tracking, rcu: Spring cleaning renaming
 2024-05-14 12:09 UTC  (65+ messages)
` [PATCH v2 01/27] treewide: context_tracking: Rename CONTEXT_* into CT_STATE_*
` [PATCH v2 02/27] context_tracking, rcu: Rename RCU_DYNTICKS_IDX into CT_RCU_WATCHING
` [PATCH v2 03/27] context_tracking, rcu: Rename ct_dynticks() into ct_rcu_watching()
` [PATCH v2 04/27] context_tracking, rcu: Rename ct_dynticks_cpu() into ct_rcu_watching_cpu()
` [PATCH v2 05/27] context_tracking, rcu: Rename ct_dynticks_cpu_acquire() into ct_rcu_watching_cpu_acquire()
` [PATCH v2 06/27] context_tracking, rcu: Rename struct context_tracking .dynticks_nesting into .nesting
` [PATCH v2 07/27] context_tracking, rcu: Rename ct_dynticks_nesting() into ct_nesting()
` [PATCH v2 08/27] context_tracking, rcu: Rename ct_dynticks_nesting_cpu() into ct_nesting_cpu()
` [PATCH v2 09/27] context_tracking, rcu: Rename struct context_tracking .dynticks_nmi_nesting into .nmi_nesting
` [PATCH v2 10/27] context_tracking, rcu: Rename ct_dynticks_nmi_nesting() into ct_nmi_nesting()
` [PATCH v2 11/27] context_tracking, rcu: Rename ct_dynticks_nmi_nesting_cpu() into ct_nmi_nesting_cpu()
` [PATCH v2 12/27] context_tracking, rcu: Rename DYNTICK_IRQ_NONIDLE into CT_NESTING_IRQ_NONIDLE
` [PATCH v2 13/27] context_tracking, rcu: Rename rcu_dynticks_task*() into rcu_task*()
` [PATCH v2 14/27] context_tracking, rcu: Rename rcu_dynticks_curr_cpu_in_eqs() into rcu_watching_curr_cpu()
` [PATCH v2 15/27] rcu: Rename rcu_dynticks_eqs_online() into rcu_watching_eqs_online()
` [PATCH v2 16/27] rcu: Rename rcu_dynticks_snap() into rcu_watching_snap()
` [PATCH v2 17/27] rcu: Rename rcu_dynticks_in_eqs() into rcu_watching_in_eqs()
` [PATCH v2 18/27] rcu: Rename rcu_dynticks_in_eqs_since() into rcu_watching_changed_since()
` [PATCH v2 19/27] rcu: Rename rcu_dynticks_zero_in_eqs() into rcu_watching_zero_in_eqs()
` [PATCH v2 20/27] rcu: Rename struct rcu_data .dynticks_snap into .watching_snap
` [PATCH v2 21/27] rcu: Rename struct rcu_data .exp_dynticks_snap into .exp_watching_snap
` [PATCH v2 22/27] rcu: Rename dyntick_save_progress_counter() into eqs_save_progress_counter()
` [PATCH v2 23/27] rcu: Rename rcu_implicit_dynticks_qs() into rcu_implicit_eqs()
` [PATCH v2 24/27] rcu: Rename rcu_momentary_dyntick_idle() into rcu_momentary_eqs()
` [PATCH v2 25/27] context_tracking, rcu: Rename stray ->dynticks comments
` [PATCH v2 26/27] rcu: Update stray documentation references to rcu_dynticks_eqs_{enter, exit}()
` [PATCH v2 27/27] context_tracking, rcu: Rename rcu_dyntick trace event into rcu_watching

[GIT PULL] RCU changes for v6.10
 2024-05-13 17:05 UTC  (8+ messages)

[PATCH 00/48] RCU changes for v6.10
 2024-05-13 14:13 UTC  (69+ messages)
` [PATCH 01/48] scftorture: Increase memory provided to guest OS
` [PATCH 02/48] rcutorture: Disable tracing to permit Tasks Rude RCU testing
` [PATCH 03/48] rcu: Add lockdep checks and kernel-doc header to rcu_softirq_qs()
` [PATCH 04/48] rcutorture: Enable RCU priority boosting for TREE09
` [PATCH 05/48] rcutorture: Dump # online CPUs on insufficient cb-flood laundering
` [PATCH 06/48] rcutorture: Dump GP kthread state "
` [PATCH 07/48] rcutorture: ASSERT_EXCLUSIVE_WRITER() for ->rtort_pipe_count updates
` [PATCH 08/48] rcu-tasks: Make Tasks RCU wait idly for grace-period delays
` [PATCH 09/48] doc: Remove references to arrayRCU.rst
` [PATCH 10/48] MAINTAINERS: Update Neeraj's email address
` [PATCH 11/48] bpf: Select new NEED_TASKS_RCU Kconfig option
` [PATCH 12/48] arch: "
` [PATCH 13/48] rcu: Add data structures for synchronize_rcu()
` [PATCH 14/48] tracing: Select new NEED_TASKS_RCU Kconfig option
` [PATCH 15/48] bpf: Choose RCU Tasks based on TASKS_RCU rather than PREEMPTION
` [PATCH 16/48] ftrace: "
` [PATCH 17/48] rcu: Update lockdep while in RCU read-side critical section
` [PATCH 18/48] rcu: Make TINY_RCU depend on !PREEMPT_RCU rather than !PREEMPTION
` [PATCH 19/48] srcu: Make Tiny SRCU explicitly disable preemption
` [PATCH 20/48] rcu: Create NEED_TASKS_RCU to factor out enablement logic
` [PATCH 21/48] rcu: Remove redundant BH disabling in TINY_RCU
` [PATCH 22/48] rcu: Make Tiny RCU explicitly disable preemption
` [PATCH 23/48] rcu: Remove redundant READ_ONCE() of rcu_state.gp_flags in tree.c
` [PATCH 24/48] rcu: Bring diagnostic read of rcu_state.gp_flags into alignment
` [PATCH 25/48] rcu: Mark writes to rcu_sync ->gp_count field
  ` [PATCH] rcu/sync: don't read rcu_sync->gp_count lockless
` [PATCH 26/48] rcu: Mark loads from rcu_state.n_online_cpus
` [PATCH 27/48] rcu: Make hotplug operations track GP state, not flags
` [PATCH 28/48] rcu: Inform KCSAN of one-byte cmpxchg() in rcu_trc_cmpxchg_need_qs()
` [PATCH 29/48] rcu: Remove redundant CONFIG_PROVE_RCU #if condition
` [PATCH 30/48] rcu-tasks: Replace exit_tasks_rcu_start() initialization with WARN_ON_ONCE()
` [PATCH 31/48] rcu-tasks: Fix the comments for tasks_rcu_exit_srcu_stall_timer
` [PATCH 32/48] rcu-tasks: Fix show_rcu_tasks_trace_gp_kthread buffer overflow
` [PATCH 33/48] rcu: Mollify sparse with RCU guard
` [PATCH 34/48] rcu: Fix buffer overflow in print_cpu_stall_info()
` [PATCH 35/48] rcu: Reduce synchronize_rcu() latency
` [PATCH 36/48] rcu: Add a trace event for synchronize_rcu_normal()
` [PATCH 37/48] rcu: Support direct wake-up of synchronize_rcu() users
` [PATCH 38/48] rcu: Allocate WQ with WQ_MEM_RECLAIM bit set
` [PATCH 39/48] rcutorture: Remove extraneous rcu_torture_pipe_update_one() READ_ONCE()
` [PATCH 40/48] rcutorture: Fix rcu_torture_one_read() pipe_count overflow comment
` [PATCH 41/48] rcutorture: Re-use value stored to ->rtort_pipe_count instead of re-reading
` [PATCH 42/48] rcutorture: Use the gp_kthread_dbg operation specified by cur_ops
` [PATCH 43/48] rcutorture: Make rcutorture support print rcu-tasks gp state
` [PATCH 44/48] rcutorture: Removing redundant function pointer initialization
` [PATCH 45/48] rcutorture: Make stall-tasks directly exit when rcutorture tests end
` [PATCH 46/48] rcutorture: Fix invalid context warning when enable srcu barrier testing
` [PATCH 47/48] torture: Scale --do-kvfree test time
` [PATCH 48/48] rcutorture: Use rcu_gp_slow_register/unregister() only for rcutype test

[syzbot] [bcachefs?] [rcu?] WARNING: lock held when returning to user space in srcu_lock_acquire
 2024-05-13 11:21 UTC 

[syzbot] [bcachefs?] kernel panic: bch_dev->ref underflow, last put: bch2_trigger_alloc
 2024-05-13 10:35 UTC 

kernel panic when build w/ CONFIG_HID_BPF=y
 2024-05-11 10:47 UTC 

[RFC PATCH v1 0/2] Avoid rcu_core() if CPU just left guest vcpu
 2024-05-11  2:08 UTC  (35+ messages)

[linux-next:master] [rcu/nocb] 4c66bc7cac: BUG:using_smp_processor_id()in_preemptible
 2024-05-09  7:23 UTC  (5+ messages)

[bug report] rcu: Kill rnp->ofl_seq and use only rcu_state.ofl_lock for exclusion
 2024-05-09  6:46 UTC  (7+ messages)

[RFC PATCH v1 0/2] Avoid rcu_core() if CPU just left guest vcpu
 2024-05-07 22:36 UTC  (14+ messages)

[PATCH printk v5 00/30] wire up write_atomic() printing
 2024-05-02 21:38 UTC  (2+ messages)
` [PATCH printk v5 29/30] rcu: Mark emergency sections in rcu stalls


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