tools/include/vdso/unaligned.h
Source file repositories/reference/linux-study-clean/tools/include/vdso/unaligned.h
File Facts
- System
- Linux kernel
- Corpus path
tools/include/vdso/unaligned.h- Extension
.h- Size
- 1736 bytes
- Lines
- 45
- Domain
- Support Tooling And Documentation
- Bucket
- tools
- Inferred role
- Support Tooling And Documentation: implementation source
- Status
- source implementation candidate
Why This File Exists
Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
Dependency Surface
linux/compiler_types.h
Detected Declarations
- No top-level syscall, struct, function, initcall, or export declaration detected by the generator.
Annotated Snippet
#ifndef __VDSO_UNALIGNED_H
#define __VDSO_UNALIGNED_H
#include <linux/compiler_types.h>
/**
* __get_unaligned_t - read an unaligned value from memory.
* @type: the type to load from the pointer.
* @ptr: the pointer to load from.
*
* Use memcpy to affect an unaligned type sized load avoiding undefined behavior
* from approaches like type punning that require -fno-strict-aliasing in order
* to be correct. As type may be const, use __unqual_scalar_typeof to map to a
* non-const type - you can't memcpy into a const type. The
* __get_unaligned_ctrl_type gives __unqual_scalar_typeof its required
* expression rather than type, a pointer is used to avoid warnings about mixing
* the use of 0 and NULL. The void* cast silences ubsan warnings.
*/
#define __get_unaligned_t(type, ptr) ({ \
type *__get_unaligned_ctrl_type __always_unused = NULL; \
__unqual_scalar_typeof(*__get_unaligned_ctrl_type) __get_unaligned_val; \
__builtin_memcpy(&__get_unaligned_val, (void *)(ptr), \
sizeof(__get_unaligned_val)); \
__get_unaligned_val; \
})
/**
* __put_unaligned_t - write an unaligned value to memory.
* @type: the type of the value to store.
* @val: the value to store.
* @ptr: the pointer to store to.
*
* Use memcpy to affect an unaligned type sized store avoiding undefined
* behavior from approaches like type punning that require -fno-strict-aliasing
* in order to be correct. The void* cast silences ubsan warnings.
*/
#define __put_unaligned_t(type, val, ptr) do { \
type __put_unaligned_val = (val); \
__builtin_memcpy((void *)(ptr), &__put_unaligned_val, \
sizeof(__put_unaligned_val)); \
} while (0)
#endif /* __VDSO_UNALIGNED_H */
Annotation
- Immediate include surface: `linux/compiler_types.h`.
- Atlas domain: Support Tooling And Documentation / tools.
- 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.