Searched refs:th (Results 76 - 100 of 187) sorted by relevance

12345678

/linux-master/tools/perf/util/hisi-ptt-decoder/
H A Dhisi-ptt-pkt-decoder.c82 uint32_t th : 1; member in struct:hisi_ptt_4dw::__anon135
139 "T8", dw0.t8, "TH", dw0.th, "SO", dw0.so, "Length",
/linux-master/tools/testing/selftests/net/forwarding/
H A Ddevlink_lib.sh157 local th=$1; shift
159 devlink sb port pool set $port pool $pool th $th
172 devlink sb port pool set $port pool $pool th $orig
241 local th=$1; shift
243 devlink sb tc bind set $port tc $tc type $dir pool $pool th $th
258 pool ${orig[0]} th ${orig[1]}
/linux-master/fs/reiserfs/
H A Dxattr.h39 int reiserfs_security_write(struct reiserfs_transaction_handle *th,
109 reiserfs_security_write(struct reiserfs_transaction_handle *th, argument
H A Dxattr_security.c95 int reiserfs_security_write(struct reiserfs_transaction_handle *th, argument
107 error = reiserfs_xattr_set_handle(th, inode, xattr_name, sec->value,
H A Dreiserfs.h1854 * | directory |N-1| N-2 | .... | 1st |0th|
2244 * calculates length of i-th directory entry using directory entry
2245 * locations from dir entry head. When it calculates length of 0-th
2899 struct reiserfs_transaction_handle *th = current->journal_info; local
2900 if (th && th->t_super == s)
2902 if (th && th->t_super == NULL)
2907 static inline int reiserfs_transaction_free_space(struct reiserfs_transaction_handle *th) argument
2909 return th
3098 reiserfs_update_sd(struct reiserfs_transaction_handle *th, struct inode *inode) argument
3286 struct reiserfs_transaction_handle *th; member in struct:__reiserfs_blocknr_hint
3349 reiserfs_new_unf_blocknrs(struct reiserfs_transaction_handle *th, struct inode *inode, b_blocknr_t * new_blocknrs, struct treepath *path, sector_t block) argument
3367 reiserfs_new_unf_blocknrs2(struct reiserfs_transaction_handle *th, struct inode *inode, b_blocknr_t * new_blocknrs, struct treepath *path, sector_t block) argument
[all...]
/linux-master/tools/testing/selftests/bpf/
H A Dtest_tcp_hdr_options.h96 static inline unsigned int tcp_hdrlen(const struct tcphdr *th) argument
98 return th->doff << 2;
/linux-master/security/
H A Dlsm_audit.c58 struct tcphdr *th = tcp_hdr(skb); local
60 ad->u.net->sport = th->source;
61 ad->u.net->dport = th->dest;
122 struct tcphdr _tcph, *th; local
124 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph);
125 if (th == NULL)
128 ad->u.net->sport = th->source;
129 ad->u.net->dport = th->dest;
/linux-master/net/netfilter/
H A Dnf_conntrack_proto_tcp.c802 static bool tcp_error(const struct tcphdr *th, argument
811 if (th->doff*4 < sizeof(struct tcphdr) || tcplen < th->doff*4) {
829 tcpflags = (tcp_flag_byte(th) & ~(TCPHDR_ECE|TCPHDR_CWR|TCPHDR_PSH));
840 const struct tcphdr *th,
848 new_state = tcp_conntracks[0][get_conntrack_index(th)][TCP_CONNTRACK_NONE];
860 segment_seq_plus_len(ntohl(th->seq), skb->len,
861 dataoff, th);
862 ct->proto.tcp.seen[0].td_maxwin = ntohs(th->window);
868 tcp_options(skb, dataoff, th,
838 tcp_new(struct nf_conn *ct, const struct sk_buff *skb, unsigned int dataoff, const struct tcphdr *th, const struct nf_hook_state *state) argument
975 const struct tcphdr *th; local
[all...]
H A Dnf_conntrack_seqadj.c64 const struct tcphdr *th; local
69 th = (struct tcphdr *)(skb_network_header(skb) + ip_hdrlen(skb));
70 nf_ct_seqadj_set(ct, ctinfo, th->seq, off);
H A Dnf_conntrack_ftp.c375 const struct tcphdr *th; local
400 th = skb_header_pointer(skb, protoff, sizeof(_tcph), &_tcph);
401 if (th == NULL)
404 dataoff = protoff + th->doff * 4;
418 seq = ntohl(th->seq) + datalen;
421 if (!find_nl_seq(ntohl(th->seq), ct_ftp_info, dir)) {
472 matchlen, ntohl(th->seq) + matchoff);
/linux-master/include/trace/events/
H A Dtcp.h267 const struct tcphdr *th = (const struct tcphdr *)skb->data;
282 __entry->data_len = skb->len - __tcp_hdrlen(th);
307 const struct tcphdr *th = (const struct tcphdr *)skb->data; \
311 v4->sin_port = th->source; \
315 v4->sin_port = th->dest; \
326 const struct tcphdr *th = (const struct tcphdr *)skb->data; \
330 v6->sin6_port = th->source; \
334 v6->sin6_port = th->dest; \
/linux-master/samples/bpf/
H A Dxdp_tx_iptunnel_kern.c48 struct tcphdr *th; local
53 th = (struct tcphdr *)trans_data;
54 if (th + 1 > data_end)
56 return th->dest;
/linux-master/tools/testing/selftests/bpf/progs/
H A Dtest_xdp.c50 struct tcphdr *th; local
55 th = (struct tcphdr *)trans_data;
56 if (th + 1 > data_end)
58 return th->dest;
H A Dtest_xdp_loop.c46 struct tcphdr *th; local
51 th = (struct tcphdr *)trans_data;
52 if (th + 1 > data_end)
54 return th->dest;
H A Dtest_tc_dtime.c146 struct tcphdr *th; local
185 th = trans;
186 if (th + 1 > data_end)
188 sport = th->source;
189 dport = th->dest;
/linux-master/net/ipv4/
H A Dtcp_input.c391 static void tcp_ecn_rcv_synack(struct tcp_sock *tp, const struct tcphdr *th) argument
393 if ((tp->ecn_flags & TCP_ECN_OK) && (!th->ece || th->cwr))
397 static void tcp_ecn_rcv_syn(struct tcp_sock *tp, const struct tcphdr *th) argument
399 if ((tp->ecn_flags & TCP_ECN_OK) && (!th->ece || !th->cwr))
403 static bool tcp_ecn_rcv_ecn_echo(const struct tcp_sock *tp, const struct tcphdr *th) argument
405 if (th->ece && !th->syn && (tp->ecn_flags & TCP_ECN_OK))
4052 static bool smc_parse_options(const struct tcphdr *th, argument
4073 tcp_parse_mss_option(const struct tcphdr *th, u16 user_mss) argument
4124 const struct tcphdr *th = tcp_hdr(skb); local
4242 tcp_parse_aligned_timestamp(struct tcp_sock *tp, const struct tcphdr *th) argument
4264 tcp_fast_parse_options(const struct net *net, const struct sk_buff *skb, const struct tcphdr *th, struct tcp_sock *tp) argument
4291 tcp_do_parse_auth_options(const struct tcphdr *th, const u8 **md5_hash, const u8 **ao_hash) argument
4384 const struct tcphdr *th = tcp_hdr(skb); local
5746 tcp_check_urg(struct sock *sk, const struct tcphdr *th) argument
5812 tcp_urg(struct sock *sk, struct sk_buff *skb, const struct tcphdr *th) argument
5857 tcp_validate_incoming(struct sock *sk, struct sk_buff *skb, const struct tcphdr *th, int syn_inerr) argument
6001 const struct tcphdr *th = (const struct tcphdr *)skb->data; local
6334 tcp_rcv_synsent_state_process(struct sock *sk, struct sk_buff *skb, const struct tcphdr *th) argument
6627 const struct tcphdr *th = tcp_hdr(skb); local
6927 const struct tcphdr *th = tcp_hdr(skb); local
7071 tcp_get_syncookie_mss(struct request_sock_ops *rsk_ops, const struct tcp_request_sock_ops *af_ops, struct sock *sk, struct tcphdr *th) argument
[all...]
H A Dtcp_output.c253 * value can be stuffed directly into th->window for an outgoing
363 tcp_ecn_make_synack(const struct request_sock *req, struct tcphdr *th) argument
366 th->ece = 1;
373 struct tcphdr *th, int tcp_header_len)
384 th->cwr = 1;
392 th->ece = 1;
455 static void mptcp_options_write(struct tcphdr *th, __be32 *ptr, argument
461 mptcp_write_options(th, ptr, tp, &opts->mptcp);
655 static void tcp_options_write(struct tcphdr *th, struct tcp_sock *tp, argument
660 __be32 *ptr = (__be32 *)(th
372 tcp_ecn_send(struct sock *sk, struct sk_buff *skb, struct tcphdr *th, int tcp_header_len) argument
1292 struct tcphdr *th; local
3676 struct tcphdr *th; local
[all...]
/linux-master/net/ipv6/ila/
H A Dila_common.c84 struct tcphdr *th = (struct tcphdr *) local
88 inet_proto_csum_replace_by_diff(&th->check, skb,
/linux-master/drivers/s390/net/
H A Dctcm_mpc.h106 struct th_header th; member in struct:th_sweep
155 struct th_header *th; member in struct:mpcg_info
/linux-master/arch/x86/kernel/
H A Dftrace_32.S137 pushl %esp # 4th argument: pt_regs
142 addl $4, %esp # skip 4th argument
/linux-master/include/net/
H A Darp.h65 const unsigned char *src_hw, const unsigned char *th);
/linux-master/net/ipv6/
H A Dtcp_ao.c57 const struct tcphdr *th = tcp_hdr(skb); local
60 &iph->daddr, th->source,
61 th->dest, sisn, disn);
/linux-master/drivers/staging/rts5208/
H A Drtsx.c784 struct task_struct *th; local
893 th = kthread_run(rtsx_control_thread, dev, CR_DRIVER_NAME);
894 if (IS_ERR(th)) {
896 err = PTR_ERR(th);
899 dev->ctl_thread = th;
908 th = kthread_run(rtsx_scan_thread, dev, "rtsx-scan");
909 if (IS_ERR(th)) {
912 err = PTR_ERR(th);
917 th = kthread_run(rtsx_polling_thread, dev, "rtsx-polling");
918 if (IS_ERR(th)) {
[all...]
/linux-master/drivers/media/v4l2-core/
H A Dv4l2-jpeg.c371 u8 tc, th, *table; local
384 th = tc_th & 0xf;
386 if (th > 1)
407 tables[(tc << 1) | th].start = table;
408 tables[(tc << 1) | th].length = stream->curr - table;
/linux-master/drivers/net/ethernet/netronome/nfp/crypto/
H A Dtls.c479 struct tcphdr *th; local
487 th = pkt + req->l4_offset;
489 if ((u8 *)&th[1] > (u8 *)pkt + pkt_len) {
499 iph->saddr, th->source, iph->daddr,
500 th->dest, netdev->ifindex);
505 &ipv6h->saddr, th->source,
506 &ipv6h->daddr, ntohs(th->dest),

Completed in 685 milliseconds

12345678