Lines Matching defs:skops
101 static inline __u8 skops_tcp_flags(const struct bpf_sock_ops *skops)
103 return skops->skb_tcp_flags;
106 static inline void clear_hdr_cb_flags(struct bpf_sock_ops *skops)
108 bpf_sock_ops_cb_flags_set(skops,
109 skops->bpf_sock_ops_cb_flags &
114 static inline void set_hdr_cb_flags(struct bpf_sock_ops *skops, __u32 extra)
116 bpf_sock_ops_cb_flags_set(skops,
117 skops->bpf_sock_ops_cb_flags |
123 clear_parse_all_hdr_cb_flags(struct bpf_sock_ops *skops)
125 bpf_sock_ops_cb_flags_set(skops,
126 skops->bpf_sock_ops_cb_flags &
131 set_parse_all_hdr_cb_flags(struct bpf_sock_ops *skops)
133 bpf_sock_ops_cb_flags_set(skops,
134 skops->bpf_sock_ops_cb_flags |
144 __lport = skops->local_port; \
146 clear_hdr_cb_flags(skops); \
147 clear_parse_all_hdr_cb_flags(skops); \