Symbol: tcp_flag_word
drivers/net/ethernet/broadcom/bnx2x/bnx2x.h
782
#define pbd_tcp_flags(tcp_hdr) (ntohl(tcp_flag_word(tcp_hdr))>>16 & 0xff)
drivers/net/ethernet/fungible/funeth/funeth_tx.c
104
return *(__be16 *)&tcp_flag_word(th);
drivers/net/ethernet/mellanox/mlx5/core/en_rx.c
1112
tcp_flag_word(skb_tcp_hd) |= tcp_flag_word(last_tcp_hd) & (TCP_FLAG_FIN | TCP_FLAG_PSH);
include/net/tcp.h
1022
#define tcp_flags_ntohs(th) (ntohs(*(__be16 *)&tcp_flag_word(th)) & \
net/core/flow_dissector.c
847
key_tcp->flags = (*(__be16 *) &tcp_flag_word(th) & htons(0x0FFF));
net/ipv4/tcp_input.c
293
!(tcp_flag_word(tcp_hdr(skb)) & TCP_REMNANT))) {
net/ipv4/tcp_input.c
6559
if ((tcp_flag_word(th) & TCP_HP_BITS) == tp->pred_flags &&
net/ipv4/tcp_minisocks.c
698
__be32 flg = tcp_flag_word(th) & (TCP_FLAG_RST|TCP_FLAG_SYN|TCP_FLAG_ACK);
net/ipv4/tcp_offload.c
300
flags = tcp_flag_word(th);
net/ipv4/tcp_offload.c
307
flush = (__force int)((flags ^ tcp_flag_word(th2)) &
net/ipv4/tcp_offload.c
331
flush |= (__force int)(flags ^ tcp_flag_word(th2));
net/ipv4/tcp_offload.c
348
tcp_flag_word(th2) |= flags & (TCP_FLAG_FIN | TCP_FLAG_PSH);
net/netfilter/nf_conntrack_proto_tcp.c
601
} else if (((tcp_flag_word(tcph) & (TCP_FLAG_ACK|TCP_FLAG_RST)) ==
net/netfilter/nf_log_syslog.c
217
nf_log_buf_add(m, "RES=0x%02x ", (u_int8_t)(ntohl(tcp_flag_word(th) &
net/netfilter/nf_synproxy_core.c
1016
tcp_flag_word(nth) = TCP_FLAG_ACK;
net/netfilter/nf_synproxy_core.c
475
tcp_flag_word(nth) = TCP_FLAG_SYN | TCP_FLAG_ACK;
net/netfilter/nf_synproxy_core.c
477
tcp_flag_word(nth) |= TCP_FLAG_ECE;
net/netfilter/nf_synproxy_core.c
521
tcp_flag_word(nth) = TCP_FLAG_SYN;
net/netfilter/nf_synproxy_core.c
523
tcp_flag_word(nth) |= TCP_FLAG_ECE | TCP_FLAG_CWR;
net/netfilter/nf_synproxy_core.c
563
tcp_flag_word(nth) = TCP_FLAG_ACK;
net/netfilter/nf_synproxy_core.c
601
tcp_flag_word(nth) = TCP_FLAG_ACK;
net/netfilter/nf_synproxy_core.c
888
tcp_flag_word(nth) = TCP_FLAG_SYN | TCP_FLAG_ACK;
net/netfilter/nf_synproxy_core.c
890
tcp_flag_word(nth) |= TCP_FLAG_ECE;
net/netfilter/nf_synproxy_core.c
935
tcp_flag_word(nth) = TCP_FLAG_SYN;
net/netfilter/nf_synproxy_core.c
937
tcp_flag_word(nth) |= TCP_FLAG_ECE | TCP_FLAG_CWR;
net/netfilter/nf_synproxy_core.c
977
tcp_flag_word(nth) = TCP_FLAG_ACK;
net/openvswitch/flow.c
59
#define TCP_FLAGS_BE16(tp) (*(__be16 *)&tcp_flag_word(tp) & htons(0x0FFF))
net/sched/sch_cake.c
1155
if (((tcp_flag_word(tcph) &
net/sched/sch_cake.c
1243
if ((tcp_flag_word(tcph) &
net/sched/sch_cake.c
1292
if (elig_ack && (tcp_flag_word(tcph_check) &
net/sched/sch_cake.c
1335
elig_flags = (tcp_flag_word(tcph_check)
net/sched/sch_cake.c
1350
(elig_flags == (tcp_flag_word(tcph) &
tools/testing/selftests/bpf/progs/xdp_synproxy_kern.c
520
tcp_flag_word(tcp_header) = TCP_FLAG_SYN | TCP_FLAG_ACK;
tools/testing/selftests/bpf/progs/xdp_synproxy_kern.c
522
tcp_flag_word(tcp_header) |= TCP_FLAG_ECE;
tools/testing/selftests/bpf/progs/xdpwall.c
176
return (tcp_flag_word(tcp) &