include/net/tc_act/tc_connmark.h

Source file repositories/reference/linux-study-clean/include/net/tc_act/tc_connmark.h

File Facts

System
Linux kernel
Corpus path
include/net/tc_act/tc_connmark.h
Extension
.h
Size
405 bytes
Lines
22
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.

Dependency Surface

Detected Declarations

Annotated Snippet

struct tcf_connmark_parms {
	struct net *net;
	u16 zone;
	int action;
	struct rcu_head rcu;
};

struct tcf_connmark_info {
	struct tc_action common;
	struct tcf_connmark_parms __rcu *parms;
};

#define to_connmark(a) ((struct tcf_connmark_info *)a)

#endif /* __NET_TC_CONNMARK_H */

Annotation

Implementation Notes