include/net/netfilter/nf_conntrack_timestamp.h
Source file repositories/reference/linux-study-clean/include/net/netfilter/nf_conntrack_timestamp.h
File Facts
- System
- Linux kernel
- Corpus path
include/net/netfilter/nf_conntrack_timestamp.h- Extension
.h- Size
- 1124 bytes
- Lines
- 48
- Domain
- Networking Core
- Bucket
- Sockets, Protocols, Packet Path, And Network Policy
- Inferred role
- Networking Core: implementation source
- Status
- source 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.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
net/net_namespace.hlinux/netfilter/nf_conntrack_common.hlinux/netfilter/nf_conntrack_tuple_common.hnet/netfilter/nf_conntrack.hnet/netfilter/nf_conntrack_extend.h
Detected Declarations
struct nf_conn_tstampfunction nf_conntrack_tstamp_pernet_init
Annotated Snippet
struct nf_conn_tstamp {
u_int64_t start;
u_int64_t stop;
};
static inline
struct nf_conn_tstamp *nf_conn_tstamp_find(const struct nf_conn *ct)
{
#ifdef CONFIG_NF_CONNTRACK_TIMESTAMP
return nf_ct_ext_find(ct, NF_CT_EXT_TSTAMP);
#else
return NULL;
#endif
}
static inline
struct nf_conn_tstamp *nf_ct_tstamp_ext_add(struct nf_conn *ct, gfp_t gfp)
{
#ifdef CONFIG_NF_CONNTRACK_TIMESTAMP
struct net *net = nf_ct_net(ct);
if (!net->ct.sysctl_tstamp)
return NULL;
return nf_ct_ext_add(ct, NF_CT_EXT_TSTAMP, gfp);
#else
return NULL;
#endif
};
#ifdef CONFIG_NF_CONNTRACK_TIMESTAMP
void nf_conntrack_tstamp_pernet_init(struct net *net);
#else
static inline void nf_conntrack_tstamp_pernet_init(struct net *net) {}
#endif /* CONFIG_NF_CONNTRACK_TIMESTAMP */
#endif /* _NF_CONNTRACK_TSTAMP_H */
Annotation
- Immediate include surface: `net/net_namespace.h`, `linux/netfilter/nf_conntrack_common.h`, `linux/netfilter/nf_conntrack_tuple_common.h`, `net/netfilter/nf_conntrack.h`, `net/netfilter/nf_conntrack_extend.h`.
- Detected declarations: `struct nf_conn_tstamp`, `function nf_conntrack_tstamp_pernet_init`.
- Atlas domain: Networking Core / Sockets, Protocols, Packet Path, And Network Policy.
- 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.