net/ipv4/tcp_vegas.c
Source file repositories/reference/linux-study-clean/net/ipv4/tcp_vegas.c
File Facts
- System
- Linux kernel
- Corpus path
net/ipv4/tcp_vegas.c- Extension
.c- Size
- 10209 bytes
- Lines
- 348
- 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/mm.hlinux/module.hlinux/skbuff.hlinux/inet_diag.hnet/tcp.htcp_vegas.h
Detected Declarations
function datafunction vegas_disablefunction tcp_vegas_initfunction delayfunction tcp_vegas_statefunction tcp_vegas_cwnd_eventfunction tcp_vegas_cwnd_event_tx_startfunction tcp_vegas_ssthreshfunction tcp_vegas_cong_avoidfunction tcp_vegas_get_infofunction tcp_vegas_registerfunction tcp_vegas_unregistermodule init tcp_vegas_registerexport tcp_vegas_initexport tcp_vegas_pkts_ackedexport tcp_vegas_stateexport tcp_vegas_cwnd_eventexport tcp_vegas_cwnd_event_tx_startexport tcp_vegas_get_info
Annotated Snippet
module_init(tcp_vegas_register);
module_exit(tcp_vegas_unregister);
MODULE_AUTHOR("Stephen Hemminger");
MODULE_LICENSE("GPL");
MODULE_DESCRIPTION("TCP Vegas");
Annotation
- Immediate include surface: `linux/mm.h`, `linux/module.h`, `linux/skbuff.h`, `linux/inet_diag.h`, `net/tcp.h`, `tcp_vegas.h`.
- Detected declarations: `function data`, `function vegas_disable`, `function tcp_vegas_init`, `function delay`, `function tcp_vegas_state`, `function tcp_vegas_cwnd_event`, `function tcp_vegas_cwnd_event_tx_start`, `function tcp_vegas_ssthresh`, `function tcp_vegas_cong_avoid`, `function tcp_vegas_get_info`.
- 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.