arch/openrisc/include/asm/bitops.h
Source file repositories/reference/linux-study-clean/arch/openrisc/include/asm/bitops.h
File Facts
- System
- Linux kernel
- Corpus path
arch/openrisc/include/asm/bitops.h- Extension
.h- Size
- 1289 bytes
- Lines
- 49
- Domain
- Architecture Layer
- Bucket
- arch/openrisc
- Inferred role
- Architecture Layer: implementation source
- Status
- source implementation candidate
Why This File Exists
CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
Dependency Surface
linux/irqflags.hlinux/compiler.hasm/barrier.hasm/bitops/__ffs.hasm-generic/bitops/ffz.hasm/bitops/fls.hasm/bitops/__fls.hasm-generic/bitops/fls64.hasm-generic/bitops/sched.hasm/bitops/ffs.hasm-generic/bitops/hweight.hasm-generic/bitops/lock.hasm/bitops/atomic.hasm-generic/bitops/non-atomic.hasm-generic/bitops/le.hasm-generic/bitops/ext2-atomic.h
Detected Declarations
- No top-level syscall, struct, function, initcall, or export declaration detected by the generator.
Annotated Snippet
#ifndef __ASM_OPENRISC_BITOPS_H
#define __ASM_OPENRISC_BITOPS_H
/*
* Where we haven't written assembly versions yet, we fall back to the
* generic implementations. Otherwise, we pull in our (hopefully)
* optimized versions.
*/
#include <linux/irqflags.h>
#include <linux/compiler.h>
#include <asm/barrier.h>
#include <asm/bitops/__ffs.h>
#include <asm-generic/bitops/ffz.h>
#include <asm/bitops/fls.h>
#include <asm/bitops/__fls.h>
#include <asm-generic/bitops/fls64.h>
#ifndef _LINUX_BITOPS_H
#error only <linux/bitops.h> can be included directly
#endif
#include <asm-generic/bitops/sched.h>
#include <asm/bitops/ffs.h>
#include <asm-generic/bitops/hweight.h>
#include <asm-generic/bitops/lock.h>
#include <asm/bitops/atomic.h>
#include <asm-generic/bitops/non-atomic.h>
#include <asm-generic/bitops/le.h>
#include <asm-generic/bitops/ext2-atomic.h>
#endif /* __ASM_GENERIC_BITOPS_H */
Annotation
- Immediate include surface: `linux/irqflags.h`, `linux/compiler.h`, `asm/barrier.h`, `asm/bitops/__ffs.h`, `asm-generic/bitops/ffz.h`, `asm/bitops/fls.h`, `asm/bitops/__fls.h`, `asm-generic/bitops/fls64.h`.
- Atlas domain: Architecture Layer / arch/openrisc.
- 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.