include/linux/rcupdate_trace.h
Source file repositories/reference/linux-study-clean/include/linux/rcupdate_trace.h
File Facts
- System
- Linux kernel
- Corpus path
include/linux/rcupdate_trace.h- Extension
.h- Size
- 8103 bytes
- Lines
- 219
- Domain
- Core OS
- Bucket
- Core Kernel Interface
- Inferred role
- Core OS: implementation source
- Status
- source implementation candidate
Why This File Exists
Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.
- Uses kernel synchronization; read lock ordering, sleepability, and interrupt context assumptions before translating.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/sched.hlinux/rcupdate.hlinux/cleanup.h
Detected Declarations
function rcu_read_lock_trace_heldfunction rcu_read_lock_trace_heldfunction synchronize_rcu_tasks_tracefunction rcu_read_lock_tasks_tracefunction synchronize_rcu_tasks_tracefunction rcu_read_lock_tracefunction call_rcu_tasks_tracefunction rcu_read_lock_tracefunction rcu_barrier_tasks_tracefunction rcu_tasks_trace_expedite_currentfunction call_rcu_tasks_tracefunction rcu_read_lock_tracefunction rcu_read_unlock_trace
Annotated Snippet
static inline void call_rcu_tasks_trace(struct rcu_head *rhp, rcu_callback_t func) { BUG(); }
static inline void rcu_read_lock_trace(void) { BUG(); }
static inline void rcu_read_unlock_trace(void) { BUG(); }
#endif /* #ifdef CONFIG_TASKS_TRACE_RCU */
DEFINE_LOCK_GUARD_0(rcu_tasks_trace,
rcu_read_lock_trace(),
rcu_read_unlock_trace())
#endif /* __LINUX_RCUPDATE_TRACE_H */
Annotation
- Immediate include surface: `linux/sched.h`, `linux/rcupdate.h`, `linux/cleanup.h`.
- Detected declarations: `function rcu_read_lock_trace_held`, `function rcu_read_lock_trace_held`, `function synchronize_rcu_tasks_trace`, `function rcu_read_lock_tasks_trace`, `function synchronize_rcu_tasks_trace`, `function rcu_read_lock_trace`, `function call_rcu_tasks_trace`, `function rcu_read_lock_trace`, `function rcu_barrier_tasks_trace`, `function rcu_tasks_trace_expedite_current`.
- Atlas domain: Core OS / Core Kernel Interface.
- Implementation status: source implementation candidate.
- Synchronization appears in or near this file; preserve lock ordering, sleepability, and interrupt-context constraints.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.