include/trace/events/mmap_lock.h
Source file repositories/reference/linux-study-clean/include/trace/events/mmap_lock.h
File Facts
- System
- Linux kernel
- Corpus path
include/trace/events/mmap_lock.h- Extension
.h- Size
- 1731 bytes
- Lines
- 80
- Domain
- Repository Root And Misc
- Bucket
- include
- Inferred role
- Repository Root And Misc: implementation source
- Status
- source implementation candidate
Why This File Exists
Top-level or miscellaneous repository surface. Use this as map coverage unless a later manual pass promotes the file into a deeper subsystem dossier.
- Top-level or miscellaneous repository surface. Use this as map coverage unless a later manual pass promotes the file into a deeper subsystem dossier.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/memcontrol.hlinux/tracepoint.hlinux/types.htrace/define_trace.h
Detected Declarations
struct mm_struct
Annotated Snippet
#undef TRACE_SYSTEM
#define TRACE_SYSTEM mmap_lock
#if !defined(_TRACE_MMAP_LOCK_H) || defined(TRACE_HEADER_MULTI_READ)
#define _TRACE_MMAP_LOCK_H
#include <linux/memcontrol.h>
#include <linux/tracepoint.h>
#include <linux/types.h>
struct mm_struct;
DECLARE_EVENT_CLASS(mmap_lock,
TP_PROTO(struct mm_struct *mm, bool write),
TP_ARGS(mm, write),
TP_STRUCT__entry(
__field(struct mm_struct *, mm)
__field(u64, memcg_id)
__field(bool, write)
),
TP_fast_assign(
__entry->mm = mm;
__entry->memcg_id = cgroup_id_from_mm(mm);
__entry->write = write;
),
TP_printk(
"mm=%p memcg_id=%llu write=%s",
__entry->mm, __entry->memcg_id,
__entry->write ? "true" : "false"
)
);
#define DEFINE_MMAP_LOCK_EVENT(name) \
DEFINE_EVENT(mmap_lock, name, \
TP_PROTO(struct mm_struct *mm, bool write), \
TP_ARGS(mm, write))
DEFINE_MMAP_LOCK_EVENT(mmap_lock_start_locking);
DEFINE_MMAP_LOCK_EVENT(mmap_lock_released);
TRACE_EVENT(mmap_lock_acquire_returned,
TP_PROTO(struct mm_struct *mm, bool write, bool success),
TP_ARGS(mm, write, success),
TP_STRUCT__entry(
__field(struct mm_struct *, mm)
__field(u64, memcg_id)
__field(bool, write)
__field(bool, success)
),
TP_fast_assign(
__entry->mm = mm;
__entry->memcg_id = cgroup_id_from_mm(mm);
__entry->write = write;
__entry->success = success;
),
TP_printk(
"mm=%p memcg_id=%llu write=%s success=%s",
__entry->mm,
__entry->memcg_id,
__entry->write ? "true" : "false",
__entry->success ? "true" : "false"
)
);
#endif /* _TRACE_MMAP_LOCK_H */
/* This part must be outside protection */
#include <trace/define_trace.h>
Annotation
- Immediate include surface: `linux/memcontrol.h`, `linux/tracepoint.h`, `linux/types.h`, `trace/define_trace.h`.
- Detected declarations: `struct mm_struct`.
- Atlas domain: Repository Root And Misc / include.
- Implementation status: source implementation candidate.
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.