include/linux/ceph/buffer.h
Source file repositories/reference/linux-study-clean/include/linux/ceph/buffer.h
File Facts
- System
- Linux kernel
- Corpus path
include/linux/ceph/buffer.h- Extension
.h- Size
- 833 bytes
- Lines
- 40
- 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.
- Allocates kernel memory; connect allocation flags and lifetime to context constraints.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/kref.hlinux/mm.hlinux/vmalloc.hlinux/types.hlinux/uio.h
Detected Declarations
struct ceph_bufferfunction ceph_buffer_put
Annotated Snippet
struct ceph_buffer {
struct kref kref;
struct kvec vec;
size_t alloc_len;
};
extern struct ceph_buffer *ceph_buffer_new(size_t len, gfp_t gfp);
extern void ceph_buffer_release(struct kref *kref);
static inline struct ceph_buffer *ceph_buffer_get(struct ceph_buffer *b)
{
kref_get(&b->kref);
return b;
}
static inline void ceph_buffer_put(struct ceph_buffer *b)
{
if (b)
kref_put(&b->kref, ceph_buffer_release);
}
extern int ceph_decode_buffer(struct ceph_buffer **b, void **p, void *end);
#endif
Annotation
- Immediate include surface: `linux/kref.h`, `linux/mm.h`, `linux/vmalloc.h`, `linux/types.h`, `linux/uio.h`.
- Detected declarations: `struct ceph_buffer`, `function ceph_buffer_put`.
- Atlas domain: Core OS / Core Kernel Interface.
- 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.