net/sched/act_meta_skbprio.c
Source file repositories/reference/linux-study-clean/net/sched/act_meta_skbprio.c
File Facts
- System
- Linux kernel
- Corpus path
net/sched/act_meta_skbprio.c- Extension
.c- Size
- 1692 bytes
- Lines
- 72
- Domain
- Networking Core
- Bucket
- Sockets, Protocols, Packet Path, And Network Policy
- Inferred role
- Networking Core: exported/initcall integration point
- Status
- integration implementation candidate
Why This File Exists
Networking stack implementation surface: socket APIs, protocol dispatch, packet flow, routing, filtering, and network namespaces.
- Networking stack implementation surface: socket APIs, protocol dispatch, packet flow, routing, filtering, and network namespaces.
- Exports symbols or registers init work; inspect boot/module ordering and who consumes the exported contract.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
linux/types.hlinux/kernel.hlinux/string.hlinux/errno.hlinux/skbuff.hlinux/rtnetlink.hlinux/module.hlinux/init.hnet/netlink.hnet/pkt_sched.huapi/linux/tc_act/tc_ife.hnet/tc_act/tc_ife.h
Detected Declarations
function Salimfunction skbprio_encodefunction skbprio_decodefunction ifeprio_init_modulefunction ifeprio_cleanup_modulemodule init ifeprio_init_module
Annotated Snippet
module_init(ifeprio_init_module);
module_exit(ifeprio_cleanup_module);
MODULE_AUTHOR("Jamal Hadi Salim(2015)");
MODULE_DESCRIPTION("Inter-FE skb prio metadata action");
MODULE_LICENSE("GPL");
MODULE_ALIAS_IFE_META("skbprio");
Annotation
- Immediate include surface: `linux/types.h`, `linux/kernel.h`, `linux/string.h`, `linux/errno.h`, `linux/skbuff.h`, `linux/rtnetlink.h`, `linux/module.h`, `linux/init.h`.
- Detected declarations: `function Salim`, `function skbprio_encode`, `function skbprio_decode`, `function ifeprio_init_module`, `function ifeprio_cleanup_module`, `module init ifeprio_init_module`.
- Atlas domain: Networking Core / Sockets, Protocols, Packet Path, And Network Policy.
- Implementation status: integration 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.