rust/helpers/bitops.c
Source file repositories/reference/linux-study-clean/rust/helpers/bitops.c
File Facts
- System
- Linux kernel
- Corpus path
rust/helpers/bitops.c- Extension
.c- Size
- 1623 bytes
- Lines
- 70
- Domain
- Rust Kernel Layer
- Bucket
- Rust API Membrane
- Inferred role
- Rust Kernel Layer: implementation source
- Status
- source implementation candidate
Why This File Exists
Rust-side wrappers and abstractions around kernel C APIs, ownership contracts, allocation, synchronization, and module integration.
- Rust-side wrappers and abstractions around kernel C APIs, ownership contracts, allocation, synchronization, and module integration.
Dependency Surface
linux/bitops.hlinux/find.h
Detected Declarations
function rust_helper___set_bitfunction rust_helper___clear_bitfunction rust_helper_set_bitfunction rust_helper_clear_bitfunction _find_first_zero_bitfunction _find_next_zero_bitfunction _find_first_bitfunction _find_next_bit
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0
#include <linux/bitops.h>
#include <linux/find.h>
__rust_helper
void rust_helper___set_bit(unsigned long nr, unsigned long *addr)
{
__set_bit(nr, addr);
}
__rust_helper
void rust_helper___clear_bit(unsigned long nr, unsigned long *addr)
{
__clear_bit(nr, addr);
}
__rust_helper
void rust_helper_set_bit(unsigned long nr, volatile unsigned long *addr)
{
set_bit(nr, addr);
}
__rust_helper
void rust_helper_clear_bit(unsigned long nr, volatile unsigned long *addr)
{
clear_bit(nr, addr);
}
/*
* The rust_helper_ prefix is intentionally omitted below so that the
* declarations in include/linux/find.h are compatible with these helpers.
*
* Note that the below #ifdefs mean that the helper is only created if C does
* not provide a definition.
*/
#ifdef find_first_zero_bit
__rust_helper
unsigned long _find_first_zero_bit(const unsigned long *p, unsigned long size)
{
return find_first_zero_bit(p, size);
}
#endif /* find_first_zero_bit */
#ifdef find_next_zero_bit
__rust_helper
unsigned long _find_next_zero_bit(const unsigned long *addr,
unsigned long size, unsigned long offset)
{
return find_next_zero_bit(addr, size, offset);
}
#endif /* find_next_zero_bit */
#ifdef find_first_bit
__rust_helper
unsigned long _find_first_bit(const unsigned long *addr, unsigned long size)
{
return find_first_bit(addr, size);
}
#endif /* find_first_bit */
#ifdef find_next_bit
__rust_helper
unsigned long _find_next_bit(const unsigned long *addr, unsigned long size,
unsigned long offset)
{
return find_next_bit(addr, size, offset);
}
#endif /* find_next_bit */
Annotation
- Immediate include surface: `linux/bitops.h`, `linux/find.h`.
- Detected declarations: `function rust_helper___set_bit`, `function rust_helper___clear_bit`, `function rust_helper_set_bit`, `function rust_helper_clear_bit`, `function _find_first_zero_bit`, `function _find_next_zero_bit`, `function _find_first_bit`, `function _find_next_bit`.
- Atlas domain: Rust Kernel Layer / Rust API Membrane.
- 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.