net/ipv6/esp6_offload.c
Source file repositories/reference/linux-study-clean/net/ipv6/esp6_offload.c
File Facts
- System
- Linux kernel
- Corpus path
net/ipv6/esp6_offload.c- Extension
.c- Size
- 10325 bytes
- Lines
- 436
- 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/skbuff.hlinux/init.hnet/protocol.hcrypto/aead.hcrypto/authenc.hlinux/err.hlinux/module.hnet/gro.hnet/gso.hnet/ip.hnet/xfrm.hnet/esp.hlinux/scatterlist.hlinux/kernel.hlinux/slab.hlinux/spinlock.hnet/ip6_route.hnet/ipv6.hlinux/icmpv6.h
Detected Declarations
function Copyrightfunction esp6_gso_encapfunction esp6_input_tailfunction esp6_xmitfunction esp6_offload_initfunction esp6_offload_exitmodule init esp6_offload_init
Annotated Snippet
module_init(esp6_offload_init);
module_exit(esp6_offload_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Steffen Klassert <steffen.klassert@secunet.com>");
MODULE_ALIAS_XFRM_OFFLOAD_TYPE(AF_INET6, XFRM_PROTO_ESP);
MODULE_DESCRIPTION("IPV6 GSO/GRO offload support");
Annotation
- Immediate include surface: `linux/skbuff.h`, `linux/init.h`, `net/protocol.h`, `crypto/aead.h`, `crypto/authenc.h`, `linux/err.h`, `linux/module.h`, `net/gro.h`.
- Detected declarations: `function Copyright`, `function esp6_gso_encap`, `function esp6_input_tail`, `function esp6_xmit`, `function esp6_offload_init`, `function esp6_offload_exit`, `module init esp6_offload_init`.
- 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.