drivers/staging/rtl8723bs/include/osdep_service.h
Source file repositories/reference/linux-study-clean/drivers/staging/rtl8723bs/include/osdep_service.h
File Facts
- System
- Linux kernel
- Corpus path
drivers/staging/rtl8723bs/include/osdep_service.h- Extension
.h- Size
- 2617 bytes
- Lines
- 110
- Domain
- Driver Families
- Bucket
- drivers/staging
- Inferred role
- Driver Families: implementation source
- Status
- source implementation candidate
Why This File Exists
Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
osdep_service_linux.h
Detected Declarations
struct rtw_cbuffunction flush_signals_threadfunction rtw_bug_check
Annotated Snippet
struct rtw_cbuf {
u32 write;
u32 read;
u32 size;
void *bufs[];
};
bool rtw_cbuf_full(struct rtw_cbuf *cbuf);
bool rtw_cbuf_empty(struct rtw_cbuf *cbuf);
bool rtw_cbuf_push(struct rtw_cbuf *cbuf, void *buf);
void *rtw_cbuf_pop(struct rtw_cbuf *cbuf);
struct rtw_cbuf *rtw_cbuf_alloc(u32 size);
/* String handler */
/*
* Write formatted output to sized buffer
*/
#define rtw_sprintf(buf, size, format, arg...) snprintf(buf, size, format, ##arg)
#endif
Annotation
- Immediate include surface: `osdep_service_linux.h`.
- Detected declarations: `struct rtw_cbuf`, `function flush_signals_thread`, `function rtw_bug_check`.
- Atlas domain: Driver Families / drivers/staging.
- 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.