Home
last modified time | relevance | path

Searched refs:th (Results 1 – 198 of 198) sorted by relevance

/linux-4.1.27/drivers/macintosh/
Dtherm_adt746x.c90 static void write_both_fan_speed(struct thermostat *th, int speed);
91 static void write_fan_speed(struct thermostat *th, int speed, int fan);
94 write_reg(struct thermostat* th, int reg, u8 data) in write_reg() argument
101 rc = i2c_master_send(th->clt, (const char *)tmp, 2); in write_reg()
110 read_reg(struct thermostat* th, int reg) in read_reg() argument
116 rc = i2c_master_send(th->clt, &reg_addr, 1); in read_reg()
121 rc = i2c_master_recv(th->clt, (char *)&data, 1); in read_reg()
127 static int read_fan_speed(struct thermostat *th, u8 addr) in read_fan_speed() argument
133 tmp[1] = read_reg(th, addr); in read_fan_speed()
134 tmp[0] = read_reg(th, addr + 1); in read_fan_speed()
[all …]
/linux-4.1.27/drivers/sfi/
Dsfi_core.c166 struct sfi_table_header *th; in sfi_map_table() local
170 th = sfi_map_memory(pa, sizeof(struct sfi_table_header)); in sfi_map_table()
172 th = (void *)syst_va + (pa - syst_pa); in sfi_map_table()
175 if (TABLE_ON_PAGE(th, th, th->len)) in sfi_map_table()
176 return th; in sfi_map_table()
179 length = th->len; in sfi_map_table()
181 sfi_unmap_memory(th, sizeof(struct sfi_table_header)); in sfi_map_table()
192 static void sfi_unmap_table(struct sfi_table_header *th) in sfi_unmap_table() argument
194 if (!TABLE_ON_PAGE(syst_va, th, th->len)) in sfi_unmap_table()
195 sfi_unmap_memory(th, TABLE_ON_PAGE(th, th, th->len) ? in sfi_unmap_table()
[all …]
Dsfi_acpi.c81 struct acpi_table_header *th) in acpi_to_sfi_th() argument
83 return (struct sfi_table_header *)th; in acpi_to_sfi_th()
87 struct sfi_table_header *th) in sfi_to_acpi_th() argument
89 return (struct acpi_table_header *)th; in sfi_to_acpi_th()
97 static int __init sfi_acpi_parse_xsdt(struct sfi_table_header *th) in sfi_acpi_parse_xsdt() argument
103 xsdt_va = (struct acpi_table_xsdt *)th; in sfi_acpi_parse_xsdt()
181 struct acpi_table_header *th = NULL; in sfi_acpi_table_show() local
189 th = sfi_acpi_get_table(&key); in sfi_acpi_table_show()
190 if (!th) in sfi_acpi_table_show()
194 th, th->length); in sfi_acpi_table_show()
[all …]
/linux-4.1.27/net/ipv4/
Dtcp_offload.c40 struct tcphdr *th = tcp_hdr(skb); in tcp4_gso_segment() local
46 th->check = 0; in tcp4_gso_segment()
59 struct tcphdr *th; in tcp_gso_segment() local
69 th = tcp_hdr(skb); in tcp_gso_segment()
70 thlen = th->doff * 4; in tcp_gso_segment()
71 if (thlen < sizeof(*th)) in tcp_gso_segment()
125 th = tcp_hdr(skb); in tcp_gso_segment()
126 seq = ntohl(th->seq); in tcp_gso_segment()
131 newcheck = ~csum_fold((__force __wsum)((__force u32)th->check + in tcp_gso_segment()
135 th->fin = th->psh = 0; in tcp_gso_segment()
[all …]
Dsyncookies.c178 u32 __cookie_v4_init_sequence(const struct iphdr *iph, const struct tcphdr *th, in __cookie_v4_init_sequence() argument
190 th->source, th->dest, ntohl(th->seq), in __cookie_v4_init_sequence()
199 const struct tcphdr *th = tcp_hdr(skb); in cookie_v4_init_sequence() local
204 return __cookie_v4_init_sequence(iph, th, mssp); in cookie_v4_init_sequence()
211 int __cookie_v4_check(const struct iphdr *iph, const struct tcphdr *th, in __cookie_v4_check() argument
214 __u32 seq = ntohl(th->seq) - 1; in __cookie_v4_check()
216 th->source, th->dest, seq); in __cookie_v4_check()
298 const struct tcphdr *th = tcp_hdr(skb); in cookie_v4_check() local
299 __u32 cookie = ntohl(th->ack_seq) - 1; in cookie_v4_check()
307 if (!sysctl_tcp_syncookies || !th->ack || th->rst) in cookie_v4_check()
[all …]
Dtcp_ipv4.c94 __be32 daddr, __be32 saddr, const struct tcphdr *th);
360 struct tcphdr *th = (struct tcphdr *)(icmp_skb->data + (iph->ihl << 2)); in tcp_v4_err() local
375 th->dest, iph->saddr, ntohs(th->source), in tcp_v4_err()
385 seq = ntohl(th->seq); in tcp_v4_err()
543 struct tcphdr *th = tcp_hdr(skb); in __tcp_v4_send_check() local
546 th->check = ~tcp_v4_check(skb->len, saddr, daddr, 0); in __tcp_v4_send_check()
550 th->check = tcp_v4_check(skb->len, saddr, daddr, in __tcp_v4_send_check()
551 csum_partial(th, in __tcp_v4_send_check()
552 th->doff << 2, in __tcp_v4_send_check()
581 const struct tcphdr *th = tcp_hdr(skb); in tcp_v4_send_reset() local
[all …]
Dtcp_minisocks.c101 const struct tcphdr *th) in tcp_timewait_state_process() argument
108 if (th->doff > (sizeof(*th) >> 2) && tcptw->tw_ts_recent_stamp) { in tcp_timewait_state_process()
115 paws_reject = tcp_paws_reject(&tmp_opt, th->rst); in tcp_timewait_state_process()
130 if (th->rst) in tcp_timewait_state_process()
133 if (th->syn && !before(TCP_SKB_CB(skb)->seq, tcptw->tw_rcv_nxt)) in tcp_timewait_state_process()
137 if (!th->ack || in tcp_timewait_state_process()
147 if (!th->fin || in tcp_timewait_state_process()
191 (TCP_SKB_CB(skb)->seq == TCP_SKB_CB(skb)->end_seq || th->rst))) { in tcp_timewait_state_process()
194 if (th->rst) { in tcp_timewait_state_process()
234 if (th->syn && !th->rst && !th->ack && !paws_reject && in tcp_timewait_state_process()
[all …]
Dtcp_input.c259 static void tcp_ecn_rcv_synack(struct tcp_sock *tp, const struct tcphdr *th) in tcp_ecn_rcv_synack() argument
261 if ((tp->ecn_flags & TCP_ECN_OK) && (!th->ece || th->cwr)) in tcp_ecn_rcv_synack()
265 static void tcp_ecn_rcv_syn(struct tcp_sock *tp, const struct tcphdr *th) in tcp_ecn_rcv_syn() argument
267 if ((tp->ecn_flags & TCP_ECN_OK) && (!th->ece || !th->cwr)) in tcp_ecn_rcv_syn()
271 static bool tcp_ecn_rcv_ecn_echo(const struct tcp_sock *tp, const struct tcphdr *th) in tcp_ecn_rcv_ecn_echo() argument
273 if (th->ece && !th->syn && (tp->ecn_flags & TCP_ECN_OK)) in tcp_ecn_rcv_ecn_echo()
3653 const struct tcphdr *th = tcp_hdr(skb); in tcp_parse_options() local
3654 int length = (th->doff * 4) - sizeof(struct tcphdr); in tcp_parse_options()
3656 ptr = (const unsigned char *)(th + 1); in tcp_parse_options()
3677 if (opsize == TCPOLEN_MSS && th->syn && !estab) { in tcp_parse_options()
[all …]
Dtcp_output.c354 tcp_ecn_make_synack(const struct request_sock *req, struct tcphdr *th, in tcp_ecn_make_synack() argument
358 th->ece = 1; in tcp_ecn_make_synack()
916 struct tcphdr *th; in tcp_transmit_skb() local
966 th = tcp_hdr(skb); in tcp_transmit_skb()
967 th->source = inet->inet_sport; in tcp_transmit_skb()
968 th->dest = inet->inet_dport; in tcp_transmit_skb()
969 th->seq = htonl(tcb->seq); in tcp_transmit_skb()
970 th->ack_seq = htonl(tp->rcv_nxt); in tcp_transmit_skb()
971 *(((__be16 *)th) + 6) = htons(((tcp_header_size >> 2) << 12) | in tcp_transmit_skb()
978 th->window = htons(min(tp->rcv_wnd, 65535U)); in tcp_transmit_skb()
[all …]
Dtcp_probe.c108 const struct tcphdr *th, unsigned int len) in jtcp_rcv_established() argument
Dtcp.c2929 const struct tcphdr *th) in tcp_md5_hash_header() argument
2936 memcpy(&hdr, th, sizeof(hdr)); in tcp_md5_hash_header()
/linux-4.1.27/net/ipv4/netfilter/
Dipt_SYNPROXY.c71 synproxy_send_client_synack(const struct sk_buff *skb, const struct tcphdr *th, in synproxy_send_client_synack() argument
93 nth->source = th->dest; in synproxy_send_client_synack()
94 nth->dest = th->source; in synproxy_send_client_synack()
95 nth->seq = htonl(__cookie_v4_init_sequence(iph, th, &mss)); in synproxy_send_client_synack()
96 nth->ack_seq = htonl(ntohl(th->seq) + 1); in synproxy_send_client_synack()
113 const struct sk_buff *skb, const struct tcphdr *th, in synproxy_send_server_syn() argument
134 nth->source = th->source; in synproxy_send_server_syn()
135 nth->dest = th->dest; in synproxy_send_server_syn()
140 nth->ack_seq = htonl(ntohl(th->ack_seq) - 1); in synproxy_send_server_syn()
145 nth->window = th->window; in synproxy_send_server_syn()
[all …]
Dnf_nat_h323.c34 const struct tcphdr *th; in set_addr() local
50 th = skb_header_pointer(skb, ip_hdrlen(skb), in set_addr()
52 if (th == NULL) in set_addr()
54 *data = skb->data + ip_hdrlen(skb) + th->doff * 4 + dataoff; in set_addr()
/linux-4.1.27/net/ceph/
Dauth_x.c99 struct ceph_x_ticket_handler *th; in get_ticket_handler() local
105 th = rb_entry(parent, struct ceph_x_ticket_handler, node); in get_ticket_handler()
106 if (service < th->service) in get_ticket_handler()
108 else if (service > th->service) in get_ticket_handler()
111 return th; in get_ticket_handler()
115 th = kzalloc(sizeof(*th), GFP_NOFS); in get_ticket_handler()
116 if (!th) in get_ticket_handler()
118 th->service = service; in get_ticket_handler()
119 rb_link_node(&th->node, parent, p); in get_ticket_handler()
120 rb_insert_color(&th->node, &xi->ticket_handlers); in get_ticket_handler()
[all …]
/linux-4.1.27/net/ipv6/netfilter/
Dip6t_SYNPROXY.c86 synproxy_send_client_synack(const struct sk_buff *skb, const struct tcphdr *th, in synproxy_send_client_synack() argument
108 nth->source = th->dest; in synproxy_send_client_synack()
109 nth->dest = th->source; in synproxy_send_client_synack()
110 nth->seq = htonl(__cookie_v6_init_sequence(iph, th, &mss)); in synproxy_send_client_synack()
111 nth->ack_seq = htonl(ntohl(th->seq) + 1); in synproxy_send_client_synack()
128 const struct sk_buff *skb, const struct tcphdr *th, in synproxy_send_server_syn() argument
149 nth->source = th->source; in synproxy_send_server_syn()
150 nth->dest = th->dest; in synproxy_send_server_syn()
155 nth->ack_seq = htonl(ntohl(th->ack_seq) - 1); in synproxy_send_server_syn()
160 nth->window = th->window; in synproxy_send_server_syn()
[all …]
/linux-4.1.27/net/netfilter/
Dnf_log_common.c61 const struct tcphdr *th; in nf_log_dump_tcp_header() local
70 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph); in nf_log_dump_tcp_header()
71 if (th == NULL) { in nf_log_dump_tcp_header()
78 ntohs(th->source), ntohs(th->dest)); in nf_log_dump_tcp_header()
82 ntohl(th->seq), ntohl(th->ack_seq)); in nf_log_dump_tcp_header()
86 nf_log_buf_add(m, "WINDOW=%u ", ntohs(th->window)); in nf_log_dump_tcp_header()
88 nf_log_buf_add(m, "RES=0x%02x ", (u_int8_t)(ntohl(tcp_flag_word(th) & in nf_log_dump_tcp_header()
91 if (th->cwr) in nf_log_dump_tcp_header()
93 if (th->ece) in nf_log_dump_tcp_header()
95 if (th->urg) in nf_log_dump_tcp_header()
[all …]
Dxt_tcpmss.c31 const struct tcphdr *th; in tcpmss_mt() local
39 th = skb_header_pointer(skb, par->thoff, sizeof(_tcph), &_tcph); in tcpmss_mt()
40 if (th == NULL) in tcpmss_mt()
44 if (th->doff*4 < sizeof(*th)) in tcpmss_mt()
47 optlen = th->doff*4 - sizeof(*th); in tcpmss_mt()
52 op = skb_header_pointer(skb, par->thoff + sizeof(*th), optlen, _opt); in tcpmss_mt()
Dxt_ecn.c34 const struct tcphdr *th; in match_tcp() local
39 th = skb_header_pointer(skb, par->thoff, sizeof(_tcph), &_tcph); in match_tcp()
40 if (th == NULL) in match_tcp()
45 if (th->ece == 1) in match_tcp()
48 if (th->ece == 0) in match_tcp()
55 if (th->cwr == 1) in match_tcp()
58 if (th->cwr == 0) in match_tcp()
Dxt_tcpudp.c67 const struct tcphdr *th; in tcp_mt() local
88 th = skb_header_pointer(skb, par->thoff, sizeof(_tcph), &_tcph); in tcp_mt()
89 if (th == NULL) { in tcp_mt()
98 ntohs(th->source), in tcp_mt()
102 ntohs(th->dest), in tcp_mt()
105 if (!FWINVTCP((((unsigned char *)th)[13] & tcpinfo->flg_mask) in tcp_mt()
110 if (th->doff * 4 < sizeof(_tcph)) { in tcp_mt()
115 th->doff*4 - sizeof(_tcph), in tcp_mt()
Dnf_synproxy_core.c29 const struct tcphdr *th, struct synproxy_options *opts) in synproxy_parse_options() argument
31 int length = (th->doff * 4) - sizeof(*th); in synproxy_parse_options()
34 ptr = skb_header_pointer(skb, doff + sizeof(*th), length, buf); in synproxy_parse_options()
110 synproxy_build_options(struct tcphdr *th, const struct synproxy_options *opts) in synproxy_build_options() argument
112 __be32 *ptr = (__be32 *)(th + 1); in synproxy_build_options()
182 struct tcphdr *th, in synproxy_tstamp_adjust() argument
194 optend = protoff + th->doff * 4; in synproxy_tstamp_adjust()
226 inet_proto_csum_replace4(&th->check, skb, in synproxy_tstamp_adjust()
Dnf_conntrack_proto_tcp.c759 const struct tcphdr *th; in tcp_error() local
765 th = skb_header_pointer(skb, dataoff, sizeof(_tcph), &_tcph); in tcp_error()
766 if (th == NULL) { in tcp_error()
774 if (th->doff*4 < sizeof(struct tcphdr) || tcplen < th->doff*4) { in tcp_error()
795 tcpflags = (tcp_flag_byte(th) & ~(TCPHDR_ECE|TCPHDR_CWR|TCPHDR_PSH)); in tcp_error()
825 const struct tcphdr *th; in tcp_packet() local
830 th = skb_header_pointer(skb, dataoff, sizeof(_tcph), &_tcph); in tcp_packet()
831 BUG_ON(th == NULL); in tcp_packet()
836 index = get_conntrack_index(th); in tcp_packet()
891 && ntohl(th->ack_seq) == ct->proto.tcp.last_end) { in tcp_packet()
[all …]
Dnf_conntrack_irc.c111 const struct tcphdr *th; in help() local
134 th = skb_header_pointer(skb, protoff, sizeof(_tcph), &_tcph); in help()
135 if (th == NULL) in help()
139 dataoff = protoff + th->doff*4; in help()
163 &iph->saddr, ntohs(th->source), in help()
164 &iph->daddr, ntohs(th->dest)); in help()
Dnf_conntrack_sane.c67 const struct tcphdr *th; in help() local
84 th = skb_header_pointer(skb, protoff, sizeof(_tcph), &_tcph); in help()
85 if (th == NULL) in help()
89 dataoff = protoff + th->doff * 4; in help()
Dnf_conntrack_ftp.c391 const struct tcphdr *th; in help() local
413 th = skb_header_pointer(skb, protoff, sizeof(_tcph), &_tcph); in help()
414 if (th == NULL) in help()
417 dataoff = protoff + th->doff * 4; in help()
431 seq = ntohl(th->seq) + datalen; in help()
434 if (!find_nl_seq(ntohl(th->seq), ct_ftp_info, dir)) { in help()
485 matchlen, ntohl(th->seq) + matchoff); in help()
Dnf_conntrack_seqadj.c63 const struct tcphdr *th; in nf_ct_tcp_seqadj_set() local
68 th = (struct tcphdr *)(skb_network_header(skb) + ip_hdrlen(skb)); in nf_ct_tcp_seqadj_set()
69 nf_ct_seqadj_set(ct, ctinfo, th->seq, off); in nf_ct_tcp_seqadj_set()
Dnf_nat_sip.c40 struct tcphdr *th; in mangle_packet() local
44 th = (struct tcphdr *)(skb->data + protoff); in mangle_packet()
45 baseoff = protoff + th->doff * 4; in mangle_packet()
306 const struct tcphdr *th; in nf_nat_sip_seq_adjust() local
311 th = (struct tcphdr *)(skb->data + protoff); in nf_nat_sip_seq_adjust()
312 nf_ct_seqadj_set(ct, ctinfo, th->seq, off); in nf_nat_sip_seq_adjust()
Dnf_conntrack_sip.c1485 struct tcphdr *th, _tcph; in sip_help_tcp() local
1499 th = skb_header_pointer(skb, protoff, sizeof(_tcph), &_tcph); in sip_help_tcp()
1500 if (th == NULL) in sip_help_tcp()
1502 dataoff = protoff + th->doff * 4; in sip_help_tcp()
Dnf_conntrack_h323_main.c125 const struct tcphdr *th; in get_tpkt_data() local
134 th = skb_header_pointer(skb, protoff, sizeof(_tcph), &_tcph); in get_tpkt_data()
135 if (th == NULL) in get_tpkt_data()
139 tcpdataoff = protoff + th->doff * 4; in get_tpkt_data()
/linux-4.1.27/drivers/staging/lustre/lustre/include/
Ddt_object.h99 typedef void (*dt_cb_t)(struct lu_env *env, struct thandle *th,
133 struct dt_device *dev, struct thandle *th);
138 struct thandle *th);
142 int (*dt_trans_cb_add)(struct thandle *th,
394 struct thandle *th);
399 struct thandle *th);
408 struct thandle *th);
410 struct thandle *th);
428 struct dt_object *dt, struct thandle *th);
430 struct dt_object *dt, struct thandle *th);
[all …]
Dlustre_log.h178 void *buf, struct thandle *th);
181 struct llog_rec_hdr *rec, struct thandle *th);
256 struct thandle *th);
258 struct thandle *th);
266 int idx, struct thandle *th);
271 void *buf, int idx, struct thandle *th);
278 struct llog_rec_hdr *rec, struct thandle *th);
281 void *buf, struct thandle *th);
515 struct llog_handle *loghandle, struct thandle *th);
517 struct thandle *th);
[all …]
/linux-4.1.27/fs/reiserfs/
Dnamei.c429 static int reiserfs_add_entry(struct reiserfs_transaction_handle *th, in reiserfs_add_entry() argument
450 BUG_ON(!th->t_trans_id); in reiserfs_add_entry()
544 PROC_INFO_MAX(th->t_super, max_hash_collisions, gen_number); in reiserfs_add_entry()
563 reiserfs_paste_into_item(th, &path, &entry_key, dir, buffer, in reiserfs_add_entry()
576 reiserfs_update_sd(th, dir); in reiserfs_add_entry()
633 struct reiserfs_transaction_handle th; in reiserfs_create() local
652 retval = journal_begin(&th, dir->i_sb, jbegin_count); in reiserfs_create()
659 reiserfs_new_inode(&th, dir, mode, NULL, 0 /*i_size */ , dentry, in reiserfs_create()
669 reiserfs_add_entry(&th, dir, dentry->d_name.name, in reiserfs_create()
674 reiserfs_update_sd(&th, inode); in reiserfs_create()
[all …]
Dinode.c35 struct reiserfs_transaction_handle th; in reiserfs_evict_inode() local
56 if (journal_begin(&th, inode->i_sb, jbegin_count)) in reiserfs_evict_inode()
60 reiserfs_discard_prealloc(&th, inode); in reiserfs_evict_inode()
62 err = reiserfs_delete_object(&th, inode); in reiserfs_evict_inode()
75 if (journal_end(&th)) in reiserfs_evict_inode()
251 static int restart_transaction(struct reiserfs_transaction_handle *th, in restart_transaction() argument
254 struct super_block *s = th->t_super; in restart_transaction()
257 BUG_ON(!th->t_trans_id); in restart_transaction()
258 BUG_ON(!th->t_refcount); in restart_transaction()
263 if (th->t_refcount > 1) { in restart_transaction()
[all …]
Dstree.c1016 static char prepare_for_delete_or_cut(struct reiserfs_transaction_handle *th, in prepare_for_delete_or_cut() argument
1035 BUG_ON(!th->t_trans_id); in prepare_for_delete_or_cut()
1094 reiserfs_transaction_free_space(th) < JOURNAL_FOR_FREE_BLOCK_AND_UPDATE_SD) in prepare_for_delete_or_cut()
1103 journal_mark_dirty(th, bh); in prepare_for_delete_or_cut()
1104 reiserfs_free_block(th, inode, block, 1); in prepare_for_delete_or_cut()
1172 static void init_tb_struct(struct reiserfs_transaction_handle *th, in init_tb_struct() argument
1178 BUG_ON(!th->t_trans_id); in init_tb_struct()
1181 tb->transaction_handle = th; in init_tb_struct()
1233 int reiserfs_delete_item(struct reiserfs_transaction_handle *th, in reiserfs_delete_item() argument
1250 BUG_ON(!th->t_trans_id); in reiserfs_delete_item()
[all …]
Dbitmap.c143 static int scan_bitmap_block(struct reiserfs_transaction_handle *th, in scan_bitmap_block() argument
147 struct super_block *s = th->t_super; in scan_bitmap_block()
153 BUG_ON(!th->t_trans_id); in scan_bitmap_block()
258 journal_mark_dirty(th, bh); in scan_bitmap_block()
265 journal_mark_dirty(th, SB_BUFFER_WITH_SB(s)); in scan_bitmap_block()
347 static int scan_bitmap(struct reiserfs_transaction_handle *th, in scan_bitmap() argument
352 struct super_block *s = th->t_super; in scan_bitmap()
357 BUG_ON(!th->t_trans_id); in scan_bitmap()
391 scan_bitmap_block(th, bm, &off, off_max, in scan_bitmap()
402 scan_bitmap_block(th, bm, &off, off_max, min, max, unfm); in scan_bitmap()
[all …]
Djournal.c92 static int journal_join(struct reiserfs_transaction_handle *th,
110 static int do_journal_begin_r(struct reiserfs_transaction_handle *th,
1910 static int do_journal_release(struct reiserfs_transaction_handle *th, in do_journal_release() argument
1923 BUG_ON(!th->t_trans_id); in do_journal_release()
1924 do_journal_end(th, FLUSH_ALL); in do_journal_release()
1976 int journal_release(struct reiserfs_transaction_handle *th, in journal_release() argument
1979 return do_journal_release(th, sb, 0); in journal_release()
1983 int journal_release_error(struct reiserfs_transaction_handle *th, in journal_release_error() argument
1986 return do_journal_release(th, sb, 1); in journal_release_error()
2911 int journal_transaction_should_end(struct reiserfs_transaction_handle *th, in journal_transaction_should_end() argument
[all …]
Dfile.c35 struct reiserfs_transaction_handle th; in reiserfs_file_release() local
66 err = journal_begin(&th, inode->i_sb, 1); in reiserfs_file_release()
74 err = journal_join_abort(&th, inode->i_sb); in reiserfs_file_release()
97 reiserfs_discard_prealloc(&th, inode); in reiserfs_file_release()
99 err = journal_end(&th); in reiserfs_file_release()
188 struct reiserfs_transaction_handle th; in reiserfs_commit_page() local
191 th.t_trans_id = 0; in reiserfs_commit_page()
196 ret = journal_begin(&th, s, bh_per_page + 1); in reiserfs_commit_page()
215 journal_mark_dirty(&th, bh); in reiserfs_commit_page()
230 ret = journal_end(&th); in reiserfs_commit_page()
Dobjectid.c49 __u32 reiserfs_get_unused_objectid(struct reiserfs_transaction_handle *th) in reiserfs_get_unused_objectid() argument
51 struct super_block *s = th->t_super; in reiserfs_get_unused_objectid()
56 BUG_ON(!th->t_trans_id); in reiserfs_get_unused_objectid()
92 journal_mark_dirty(th, SB_BUFFER_WITH_SB(s)); in reiserfs_get_unused_objectid()
97 void reiserfs_release_objectid(struct reiserfs_transaction_handle *th, in reiserfs_release_objectid() argument
100 struct super_block *s = th->t_super; in reiserfs_release_objectid()
105 BUG_ON(!th->t_trans_id); in reiserfs_release_objectid()
110 journal_mark_dirty(th, SB_BUFFER_WITH_SB(s)); in reiserfs_release_objectid()
Dtail_conversion.c24 int direct2indirect(struct reiserfs_transaction_handle *th, struct inode *inode, in direct2indirect() argument
47 BUG_ON(!th->t_trans_id); in direct2indirect()
83 reiserfs_insert_item(th, path, &end_key, &ind_ih, inode, in direct2indirect()
87 retval = reiserfs_paste_into_item(th, path, &end_key, inode, in direct2indirect()
138 retval = reiserfs_delete_item(th, path, &end_key, inode, in direct2indirect()
201 int indirect2direct(struct reiserfs_transaction_handle *th, in indirect2direct() argument
218 BUG_ON(!th->t_trans_id); in indirect2direct()
282 if (reiserfs_insert_item(th, path, &key, &s_ih, inode, in indirect2direct()
298 reiserfs_update_sd(th, inode); in indirect2direct()
Dsuper.c68 struct reiserfs_transaction_handle th; in reiserfs_sync_fs() local
76 if (!journal_begin(&th, s, 1)) in reiserfs_sync_fs()
77 if (!journal_end_sync(&th)) in reiserfs_sync_fs()
131 struct reiserfs_transaction_handle th; in reiserfs_freeze() local
137 int err = journal_begin(&th, s, 1); in reiserfs_freeze()
139 reiserfs_block_writes(&th); in reiserfs_freeze()
143 journal_mark_dirty(&th, SB_BUFFER_WITH_SB(s)); in reiserfs_freeze()
144 reiserfs_block_writes(&th); in reiserfs_freeze()
145 journal_end_sync(&th); in reiserfs_freeze()
172 struct reiserfs_transaction_handle th; in remove_save_link_only() local
[all …]
Dresize.c27 struct reiserfs_transaction_handle th; in reiserfs_resize() local
177 err = journal_begin(&th, s, 10); in reiserfs_resize()
185 int jerr = journal_end(&th); in reiserfs_resize()
196 journal_mark_dirty(&th, bh); in reiserfs_resize()
203 int jerr = journal_end(&th); in reiserfs_resize()
212 journal_mark_dirty(&th, bh); in reiserfs_resize()
225 journal_mark_dirty(&th, SB_BUFFER_WITH_SB(s)); in reiserfs_resize()
228 return journal_end(&th); in reiserfs_resize()
Dxattr_acl.c14 static int __reiserfs_set_acl(struct reiserfs_transaction_handle *th,
23 struct reiserfs_transaction_handle th; in reiserfs_set_acl() local
37 error = journal_begin(&th, inode->i_sb, jcreate_blocks); in reiserfs_set_acl()
40 error = __reiserfs_set_acl(&th, inode, type, acl); in reiserfs_set_acl()
42 error2 = journal_end(&th); in reiserfs_set_acl()
237 __reiserfs_set_acl(struct reiserfs_transaction_handle *th, struct inode *inode, in __reiserfs_set_acl() argument
273 error = reiserfs_xattr_set_handle(th, inode, name, value, size, 0); in __reiserfs_set_acl()
302 reiserfs_inherit_default_acl(struct reiserfs_transaction_handle *th, in reiserfs_inherit_default_acl() argument
335 err = __reiserfs_set_acl(th, inode, ACL_TYPE_DEFAULT, in reiserfs_inherit_default_acl()
341 err = __reiserfs_set_acl(th, inode, ACL_TYPE_ACCESS, in reiserfs_inherit_default_acl()
Dreiserfs.h2897 struct reiserfs_transaction_handle *th = current->journal_info; in reiserfs_transaction_running() local
2898 if (th && th->t_super == s) in reiserfs_transaction_running()
2900 if (th && th->t_super == NULL) in reiserfs_transaction_running()
2905 static inline int reiserfs_transaction_free_space(struct reiserfs_transaction_handle *th) in reiserfs_transaction_free_space() argument
2907 return th->t_blocks_allocated - th->t_blocks_logged; in reiserfs_transaction_free_space()
2923 void reiserfs_block_writes(struct reiserfs_transaction_handle *th);
2952 void add_save_link(struct reiserfs_transaction_handle *th,
2957 __u32 reiserfs_get_unused_objectid(struct reiserfs_transaction_handle *th);
2958 void reiserfs_release_objectid(struct reiserfs_transaction_handle *th,
3013 int reiserfs_insert_item(struct reiserfs_transaction_handle *th,
[all …]
Dacl.h53 int reiserfs_inherit_default_acl(struct reiserfs_transaction_handle *th,
70 reiserfs_inherit_default_acl(struct reiserfs_transaction_handle *th, in reiserfs_inherit_default_acl() argument
Dxattr_security.c91 int reiserfs_security_write(struct reiserfs_transaction_handle *th, in reiserfs_security_write() argument
99 error = reiserfs_xattr_set_handle(th, inode, sec->name, sec->value, in reiserfs_security_write()
Dxattr.h41 int reiserfs_security_write(struct reiserfs_transaction_handle *th,
114 reiserfs_security_write(struct reiserfs_transaction_handle *th, in reiserfs_security_write() argument
Dxattr.c293 struct reiserfs_transaction_handle th; in reiserfs_for_each_xattr() local
296 err = journal_begin(&th, inode->i_sb, blocks); in reiserfs_for_each_xattr()
305 jerror = journal_end(&th); in reiserfs_for_each_xattr()
498 reiserfs_xattr_set_handle(struct reiserfs_transaction_handle *th, in reiserfs_xattr_set_handle() argument
601 struct reiserfs_transaction_handle th; in reiserfs_xattr_set() local
609 error = journal_begin(&th, inode->i_sb, jbegin_count); in reiserfs_xattr_set()
615 error = reiserfs_xattr_set_handle(&th, inode, name, in reiserfs_xattr_set()
619 error2 = journal_end(&th); in reiserfs_xattr_set()
/linux-4.1.27/net/ipv6/
Dsyncookies.c118 const struct tcphdr *th, __u16 *mssp) in __cookie_v6_init_sequence() argument
129 return secure_tcp_syn_cookie(&iph->saddr, &iph->daddr, th->source, in __cookie_v6_init_sequence()
130 th->dest, ntohl(th->seq), mssind); in __cookie_v6_init_sequence()
137 const struct tcphdr *th = tcp_hdr(skb); in cookie_v6_init_sequence() local
142 return __cookie_v6_init_sequence(iph, th, mssp); in cookie_v6_init_sequence()
145 int __cookie_v6_check(const struct ipv6hdr *iph, const struct tcphdr *th, in __cookie_v6_check() argument
148 __u32 seq = ntohl(th->seq) - 1; in __cookie_v6_check()
150 th->source, th->dest, seq); in __cookie_v6_check()
163 const struct tcphdr *th = tcp_hdr(skb); in cookie_v6_check() local
164 __u32 cookie = ntohl(th->ack_seq) - 1; in cookie_v6_check()
[all …]
Dtcpv6_offload.c35 struct tcphdr *th = tcp_hdr(skb); in tcp6_gro_complete() local
37 th->check = ~tcp_v6_check(skb->len - thoff, &iph->saddr, in tcp6_gro_complete()
47 struct tcphdr *th; in tcp6_gso_segment() local
49 if (!pskb_may_pull(skb, sizeof(*th))) in tcp6_gso_segment()
54 struct tcphdr *th = tcp_hdr(skb); in tcp6_gso_segment() local
60 th->check = 0; in tcp6_gso_segment()
Dtcp_ipv6.c327 const struct tcphdr *th = (struct tcphdr *)(skb->data+offset); in tcp_v6_err() local
337 &hdr->daddr, th->dest, in tcp_v6_err()
338 &hdr->saddr, ntohs(th->source), in tcp_v6_err()
351 seq = ntohl(th->seq); in tcp_v6_err()
552 const struct tcphdr *th) in tcp_v6_md5_hash_hdr() argument
564 if (tcp_v6_md5_hash_pseudoheader(hp, daddr, saddr, th->doff << 2)) in tcp_v6_md5_hash_hdr()
566 if (tcp_md5_hash_header(hp, th)) in tcp_v6_md5_hash_hdr()
591 const struct tcphdr *th = tcp_hdr(skb); in tcp_v6_md5_hash_skb() local
612 if (tcp_md5_hash_header(hp, th)) in tcp_v6_md5_hash_skb()
614 if (tcp_md5_hash_skb_data(hp, skb, th->doff << 2)) in tcp_v6_md5_hash_skb()
[all …]
/linux-4.1.27/drivers/net/slip/
Dslhc.c239 struct tcphdr *th, *oth; in slhc_compress() local
263 th = (struct tcphdr *)(((unsigned char *)ip) + ip->ihl*4); in slhc_compress()
264 hlen = ip->ihl*4 + th->doff*4; in slhc_compress()
270 if(hlen > isize || th->syn || th->fin || th->rst || in slhc_compress()
271 ! (th->ack)){ in slhc_compress()
293 && th->source == cs->cs_tcp.source in slhc_compress()
294 && th->dest == cs->cs_tcp.dest) in slhc_compress()
351 || th->doff != cs->cs_tcp.doff in slhc_compress()
353 || (th->doff > 5 && memcmp(th+1,cs->cs_tcpopt,((th->doff)-5)*4) != 0)){ in slhc_compress()
363 if(th->urg){ in slhc_compress()
[all …]
/linux-4.1.27/security/apparmor/
Dmatch.c40 struct table_header th; in unpack_table() local
49 th.td_id = be16_to_cpu(*(u16 *) (blob)) - 1; in unpack_table()
50 th.td_flags = be16_to_cpu(*(u16 *) (blob + 2)); in unpack_table()
51 th.td_lolen = be32_to_cpu(*(u32 *) (blob + 8)); in unpack_table()
54 if (!(th.td_flags == YYTD_DATA16 || th.td_flags == YYTD_DATA32 || in unpack_table()
55 th.td_flags == YYTD_DATA8)) in unpack_table()
58 tsize = table_size(th.td_lolen, th.td_flags); in unpack_table()
64 *table = th; in unpack_table()
65 if (th.td_flags == YYTD_DATA8) in unpack_table()
66 UNPACK_ARRAY(table->td_data, blob, th.td_lolen, in unpack_table()
[all …]
/linux-4.1.27/drivers/char/
Dds1620.c335 struct therm th; in ds1620_proc_therm_show() local
338 ds1620_read_state(&th); in ds1620_proc_therm_show()
342 th.hi >> 1, th.hi & 1 ? 5 : 0, in ds1620_proc_therm_show()
343 th.lo >> 1, th.lo & 1 ? 5 : 0, in ds1620_proc_therm_show()
379 struct therm th, th_start; in ds1620_init() local
393 ds1620_read_state(&th); in ds1620_init()
400 ds1620_write_state(&th); in ds1620_init()
411 ds1620_read_state(&th); in ds1620_init()
416 th.hi >> 1, th.hi & 1 ? 5 : 0, in ds1620_init()
417 th.lo >> 1, th.lo & 1 ? 5 : 0, in ds1620_init()
/linux-4.1.27/net/netfilter/ipvs/
Dip_vs_app.c293 static inline void vs_fix_seq(const struct ip_vs_seq *vseq, struct tcphdr *th) in vs_fix_seq() argument
295 __u32 seq = ntohl(th->seq); in vs_fix_seq()
304 th->seq = htonl(seq + vseq->delta); in vs_fix_seq()
308 th->seq = htonl(seq + vseq->previous_delta); in vs_fix_seq()
320 vs_fix_ack_seq(const struct ip_vs_seq *vseq, struct tcphdr *th) in vs_fix_ack_seq() argument
322 __u32 ack_seq = ntohl(th->ack_seq); in vs_fix_ack_seq()
333 th->ack_seq = htonl(ack_seq - vseq->delta); in vs_fix_ack_seq()
338 th->ack_seq = htonl(ack_seq - vseq->previous_delta); in vs_fix_ack_seq()
370 struct tcphdr *th; in app_tcp_pkt_out() local
373 if (!skb_make_writable(skb, tcp_offset + sizeof(*th))) in app_tcp_pkt_out()
[all …]
Dip_vs_proto_tcp.c41 struct tcphdr _tcph, *th; in tcp_conn_schedule() local
44 th = skb_header_pointer(skb, iph->len, sizeof(_tcph), &_tcph); in tcp_conn_schedule()
45 if (th == NULL) { in tcp_conn_schedule()
53 if ((th->syn || sysctl_sloppy_tcp(ipvs)) && !th->rst && in tcp_conn_schedule()
55 &iph->daddr, th->dest))) { in tcp_conn_schedule()
460 static inline int tcp_state_idx(struct tcphdr *th) in tcp_state_idx() argument
462 if (th->rst) in tcp_state_idx()
464 if (th->syn) in tcp_state_idx()
466 if (th->fin) in tcp_state_idx()
468 if (th->ack) in tcp_state_idx()
[all …]
Dip_vs_ftp.c173 struct tcphdr *th; in ip_vs_ftp_out() local
206 th = (struct tcphdr *)&(((char *)iph)[iph->ihl*4]); in ip_vs_ftp_out()
207 data = (char *)th + (th->doff << 2); in ip_vs_ftp_out()
317 struct tcphdr *th; in ip_vs_ftp_in() local
348 th = (struct tcphdr *)&(((char *)iph)[iph->ihl*4]); in ip_vs_ftp_in()
353 data = data_start = (char *)th + (th->doff << 2); in ip_vs_ftp_in()
Dip_vs_sh.c284 struct tcphdr _tcph, *th; in ip_vs_sh_get_port() local
290 th = skb_header_pointer(skb, iph->len, sizeof(_tcph), &_tcph); in ip_vs_sh_get_port()
291 if (unlikely(th == NULL)) in ip_vs_sh_get_port()
293 port = th->source; in ip_vs_sh_get_port()
Dip_vs_core.c1033 struct tcphdr _tcph, *th; in is_tcp_reset() local
1035 th = skb_header_pointer(skb, nh_len, sizeof(_tcph), &_tcph); in is_tcp_reset()
1036 if (th == NULL) in is_tcp_reset()
1038 return th->rst; in is_tcp_reset()
1046 struct tcphdr _tcph, *th; in is_new_conn() local
1048 th = skb_header_pointer(skb, iph->len, sizeof(_tcph), &_tcph); in is_new_conn()
1049 if (th == NULL) in is_new_conn()
1051 return th->syn; in is_new_conn()
/linux-4.1.27/crypto/
Dvmac.c113 int i; u64 th, tl; \
116 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i], \
118 ADD128(rh, rl, th, tl); \
124 int i; u64 th, tl; \
127 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i], \
129 ADD128(rh, rl, th, tl); \
130 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i+2], \
132 ADD128(rh1, rl1, th, tl); \
139 int i; u64 th, tl; \
142 MUL64(th, tl, pe64_to_cpup((mp)+i)+(kp)[i], \
[all …]
/linux-4.1.27/drivers/staging/lustre/lustre/obdclass/
Dllog_cat.c64 struct thandle *th) in llog_cat_new_log() argument
85 rc = llog_create(env, loghandle, th); in llog_cat_new_log()
132 &loghandle->u.phd.phd_cookie, 1, NULL, index, th); in llog_cat_new_log()
267 struct thandle *th) in llog_cat_current_log() argument
325 void *buf, struct thandle *th) in llog_cat_add_rec() argument
331 loghandle = llog_cat_current_log(cathandle, th); in llog_cat_add_rec()
336 rc = llog_cat_new_log(env, cathandle, loghandle, th); in llog_cat_add_rec()
343 rc = llog_write_rec(env, loghandle, rec, reccookie, 1, buf, -1, th); in llog_cat_add_rec()
350 loghandle = llog_cat_current_log(cathandle, th); in llog_cat_add_rec()
354 rc = llog_cat_new_log(env, cathandle, loghandle, th); in llog_cat_add_rec()
[all …]
Dllog.c603 struct llog_handle *loghandle, struct thandle *th) in llog_declare_create() argument
617 rc = lop->lop_declare_create(env, loghandle, th); in llog_declare_create()
625 struct thandle *th) in llog_create() argument
639 rc = lop->lop_create(env, handle, th); in llog_create()
649 struct thandle *th) in llog_declare_write_rec() argument
664 rc = lop->lop_declare_write_rec(env, handle, rec, idx, th); in llog_declare_write_rec()
673 int numcookies, void *buf, int idx, struct thandle *th) in llog_write_rec() argument
697 buf, idx, th); in llog_write_rec()
706 void *buf, struct thandle *th) in llog_add() argument
716 rc = lgh->lgh_logops->lop_add(env, lgh, rec, logcookies, buf, th); in llog_add()
[all …]
Ddt_object.c81 struct dt_device *dev, struct thandle *th) in dt_txn_hook_start() argument
86 if (th->th_local) in dt_txn_hook_start()
93 rc = cb->dtc_txn_start(env, th, cb->dtc_cookie); in dt_txn_hook_start()
374 struct thandle *th; in dt_find_or_create() local
385 th = dt_trans_create(env, dt); in dt_find_or_create()
386 if (IS_ERR(th)) { in dt_find_or_create()
387 rc = PTR_ERR(th); in dt_find_or_create()
391 rc = dt_declare_create(env, dto, at, NULL, dof, th); in dt_find_or_create()
395 rc = dt_trans_start_local(env, dt, th); in dt_find_or_create()
407 rc = dt_create(env, dto, at, NULL, dof, th); in dt_find_or_create()
[all …]
/linux-4.1.27/tools/perf/util/
Dmachine.c294 struct thread *th, pid_t pid) in machine__update_thread_pid() argument
298 if (pid == th->pid_ || pid == -1 || th->pid_ != -1) in machine__update_thread_pid()
301 th->pid_ = pid; in machine__update_thread_pid()
303 if (th->pid_ == th->tid) in machine__update_thread_pid()
306 leader = machine__findnew_thread(machine, th->pid_, th->pid_); in machine__update_thread_pid()
316 if (th->mg == leader->mg) in machine__update_thread_pid()
319 if (th->mg) { in machine__update_thread_pid()
325 if (!map_groups__empty(th->mg)) in machine__update_thread_pid()
327 th->pid_, th->tid); in machine__update_thread_pid()
328 map_groups__delete(th->mg); in machine__update_thread_pid()
[all …]
Dmachine.h123 void machine__remove_thread(struct machine *machine, struct thread *th);
/linux-4.1.27/include/net/
Dip6_checksum.h71 struct tcphdr *th = tcp_hdr(skb); in __tcp_v6_send_check() local
74 th->check = ~tcp_v6_check(skb->len, saddr, daddr, 0); in __tcp_v6_send_check()
78 th->check = tcp_v6_check(skb->len, saddr, daddr, in __tcp_v6_send_check()
79 csum_partial(th, th->doff << 2, in __tcp_v6_send_check()
Dtcp.h369 const struct tcphdr *th, unsigned int len);
371 const struct tcphdr *th, unsigned int len);
409 const struct tcphdr *th);
444 const u8 *tcp_parse_md5sig_option(const struct tcphdr *th);
474 int __cookie_v4_check(const struct iphdr *iph, const struct tcphdr *th,
496 u32 __cookie_v4_init_sequence(const struct iphdr *iph, const struct tcphdr *th,
506 int __cookie_v6_check(const struct ipv6hdr *iph, const struct tcphdr *th,
511 const struct tcphdr *th, u16 *mssp);
684 #define tcp_flag_byte(th) (((u_int8_t *)th)[13]) argument
Darp.h43 const unsigned char *src_hw, const unsigned char *th);
/linux-4.1.27/drivers/misc/sgi-gru/
Dgrulib.h62 #define CONTEXT_WINDOW_BYTES(th) (GRU_GSEG_PAGESIZE * (th)) argument
63 #define THREAD_POINTER(p, th) (p + GRU_GSEG_PAGESIZE * (th)) argument
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-pps13 The /sys/class/pps/ppsX/ directory is related to X-th
22 and the assert sequence number of the X-th source in the form:
34 and the clear sequence number of the X-th source in the form:
46 mode of the X-th source in hexadecimal encoding.
55 The /sys/class/pps/ppsX/echo file reports if the X-th does
63 X-th source.
70 the device connected with the X-th source.
Dsysfs-c2port13 The /sys/class/c2port/c2portX/ directory is related to X-th
/linux-4.1.27/net/netfilter/ipset/
Dip_set_getport.c30 const struct tcphdr *th; in get_port() local
32 th = skb_header_pointer(skb, protooff, sizeof(_tcph), &_tcph); in get_port()
33 if (th == NULL) in get_port()
37 *port = src ? th->source : th->dest; in get_port()
/linux-4.1.27/Documentation/devicetree/bindings/gpio/
Dgpio-twl4030.txt15 - ti,debounce : if n-th bit is set, debounces GPIO-n
16 - ti,mmc-cd : if n-th bit is set, GPIO-n controls VMMC(n+1)
17 - ti,pullups : if n-th bit is set, set a pullup on GPIO-n
18 - ti,pulldowns : if n-th bit is set, set a pulldown on GPIO-n
Dgpio-xilinx.txt19 - xlnx,all-inputs : if n-th bit is setup, GPIO-n is input
20 - xlnx,dout-default : if n-th bit is 1, GPIO-n default value is 1
22 - xlnx,tri-default : if n-th bit is 1, GPIO-n is in tristate mode
Dsodaville.txt41 /* User the 11th GPIO line as an active high triggered
/linux-4.1.27/security/
Dlsm_audit.c63 struct tcphdr *th = tcp_hdr(skb); in ipv4_skb_to_auditdata() local
64 if (th == NULL) in ipv4_skb_to_auditdata()
67 ad->u.net->sport = th->source; in ipv4_skb_to_auditdata()
68 ad->u.net->dport = th->dest; in ipv4_skb_to_auditdata()
137 struct tcphdr _tcph, *th; in ipv6_skb_to_auditdata() local
139 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph); in ipv6_skb_to_auditdata()
140 if (th == NULL) in ipv6_skb_to_auditdata()
143 ad->u.net->sport = th->source; in ipv6_skb_to_auditdata()
144 ad->u.net->dport = th->dest; in ipv6_skb_to_auditdata()
/linux-4.1.27/include/net/netfilter/
Dnf_conntrack_synproxy.h60 const struct tcphdr *th,
63 void synproxy_build_options(struct tcphdr *th,
71 struct tcphdr *th, struct nf_conn *ct,
/linux-4.1.27/drivers/thermal/st/
Dst_thermal.c114 static int st_thermal_get_temp(struct thermal_zone_device *th, in st_thermal_get_temp() argument
117 struct st_thermal_sensor *sensor = th->devdata; in st_thermal_get_temp()
143 static int st_thermal_get_trip_type(struct thermal_zone_device *th, in st_thermal_get_trip_type() argument
146 struct st_thermal_sensor *sensor = th->devdata; in st_thermal_get_trip_type()
161 static int st_thermal_get_trip_temp(struct thermal_zone_device *th, in st_thermal_get_trip_temp() argument
164 struct st_thermal_sensor *sensor = th->devdata; in st_thermal_get_trip_temp()
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/
Dpinctrl-sirf.txt10 - sirf,pullups : if n-th bit of m-th bank is set, set a pullup on GPIO-n of bank m
11 - sirf,pulldowns : if n-th bit of m-th bank is set, set a pulldown on GPIO-n of bank m
Dfsl,mxs-pinctrl.txt4 has 32 pins. Each pin has 4 multiplexing functions, and generally, the 4th
/linux-4.1.27/Documentation/cpu-freq/
Damd-powernow.txt21 6th Generation: powernow-k6
23 7th Generation: powernow-k7: Athlon, Duron, Geode.
25 8th Generation: powernow-k8: Athlon, Athlon 64, Opteron, Sempron.
26 Documentation on this functionality in 8th generation processors
/linux-4.1.27/Documentation/
Ddevices.txt6 Last revised: 6th April 2009
120 255 = /dev/ptyef 256th PTY master
125 the 1st through 16th series of 16 pseudo-ttys each, and
195 255 = /dev/ttyef 256th PTY slave
714 240 = /dev/adp 16th ACSI disk whole disk
848 31 = /dev/tap15 16th Ethertap device
880 15 = /dev/ml16pa-a15 First card, 16th analog channel
888 47 = /dev/ml16pb-a15 Second card, 16th analog channel
923 63 = /dev/ttyI63 64th virtual modem
947 240 = /dev/ftlp FTL on 16th Memory Technology Device
[all …]
Drtc.txt53 ring on the 30th second of the 30th minute of every hour, for example.
Dpreempt-locking.txt77 n-times in a code path, and preemption will not be reenabled until the n-th
Dthis_cpu_ops.txt331 Christoph Lameter, August 4th, 2014
Doops-tracing.txt216 820 4th St. N.
Dassoc_array.txt498 insertion algorithm finds that it is trying to insert a 17th object into a
/linux-4.1.27/Documentation/devicetree/bindings/dma/
Dapm-xgene-dma.txt14 4th - Soc efuse register address space.
16 DMA error reporting interrupt. 2nd, 3rd, 4th and 5th interrupts
/linux-4.1.27/drivers/staging/rts5208/
Drtsx.c854 struct task_struct *th; in rtsx_probe() local
962 th = kthread_run(rtsx_control_thread, dev, CR_DRIVER_NAME); in rtsx_probe()
963 if (IS_ERR(th)) { in rtsx_probe()
965 err = PTR_ERR(th); in rtsx_probe()
968 dev->ctl_thread = th; in rtsx_probe()
977 th = kthread_run(rtsx_scan_thread, dev, "rtsx-scan"); in rtsx_probe()
978 if (IS_ERR(th)) { in rtsx_probe()
982 err = PTR_ERR(th); in rtsx_probe()
987 th = kthread_run(rtsx_polling_thread, dev, "rtsx-polling"); in rtsx_probe()
988 if (IS_ERR(th)) { in rtsx_probe()
[all …]
/linux-4.1.27/Documentation/virtual/kvm/
Dppc-pv.txt43 r6 4th parameter 3rd output value
44 r7 5th parameter 4th output value
45 r8 6th parameter 5th output value
46 r9 7th parameter 6th output value
47 r10 8th parameter 7th output value
48 r11 hypercall number 8th output value
/linux-4.1.27/Documentation/mn10300/
DABI.txt49 | 4th Arg |
144 A2 4th syscall argument Saved
145 D3 5th syscall argument Saved
146 D2 6th syscall argument Saved
/linux-4.1.27/net/openvswitch/
Dactions.c543 struct tcphdr *th; in set_tcp() local
552 th = tcp_hdr(skb); in set_tcp()
553 src = MASKED(th->source, key->tcp_src, mask->tcp_src); in set_tcp()
554 if (likely(src != th->source)) { in set_tcp()
555 set_tp_port(skb, &th->source, src, &th->check); in set_tcp()
558 dst = MASKED(th->dest, key->tcp_dst, mask->tcp_dst); in set_tcp()
559 if (likely(dst != th->dest)) { in set_tcp()
560 set_tp_port(skb, &th->dest, dst, &th->check); in set_tcp()
/linux-4.1.27/Documentation/devicetree/bindings/drm/tilcdc/
Dpanel.txt14 - fifo-th: DMA FIFO threshold
48 fifo-th = <0>;
/linux-4.1.27/drivers/ata/
Dpata_mpc52xx.c83 u8 th; member
91 { .t0M = 32, .td = 15, .th = 2, .tj = 2, .tkw = 15, .tm = 4, .tn = 1 },
92 { .t0M = 10, .td = 6, .th = 1, .tj = 1, .tkw = 4, .tm = 2, .tn = 1 },
93 { .t0M = 8, .td = 5, .th = 1, .tj = 1, .tkw = 2, .tm = 2, .tn = 1 },
97 { .t0M = 64, .td = 29, .th = 3, .tj = 3, .tkw = 29, .tm = 7, .tn = 2 },
98 { .t0M = 20, .td = 11, .th = 2, .tj = 1, .tkw = 7, .tm = 4, .tn = 1 },
99 { .t0M = 16, .td = 10, .th = 2, .tj = 1, .tkw = 4, .tm = 4, .tn = 1 },
303 t->mdma2 = ((u32)s->th << 24) | ((u32)s->tj << 16) | ((u32)s->tn << 8); in mpc52xx_ata_compute_mdma_timings()
Dpata_bf54x.c374 unsigned short tm, td, tkr, tkw, teoc, th; in bfin_set_dmamode() local
462 th = num_clocks_min(mdma_thmin[mode], fsclk); in bfin_set_dmamode()
466 ATAPI_SET_MULTI_TIM_2(base, (teoc<<8 | th)); in bfin_set_dmamode()
/linux-4.1.27/Documentation/scsi/
Daic79xx.txt103 1.3.8 (April 29th, 2003)
116 1.3.7 (April 16th, 2003)
125 1.3.6 (March 28th, 2003)
132 1.3.5 (March 24th, 2003)
147 1.3.4 (February 28th, 2003)
152 1.3.2 (February 19th, 2003)
156 1.3.1 (February 11th, 2003)
174 1.2.0 (November 14th, 2002)
181 1.1.1 (September 24th, 2002)
184 1.1.0 (September 17th, 2002)
[all …]
Daic7xxx.txt134 7.0 (4th August, 2005)
156 6.2.35 (May 14th, 2003)
161 6.2.34 (May 5th, 2003)
167 6.2.33 (April 30th, 2003)
175 6.2.32 (March 28th, 2003)
179 6.2.28 (January 20th, 2003)
184 6.2.20 (November 7th, 2002)
Dhptiop.txt155 read the (N+1)th outbound list unit.
157 The host get the index of the request from the (N+1)th outbound list
Dscsi-generic.txt100 26th January 2002
Dadvansys.txt87 specifying a 5th (ASC_NUM_IOPORT_PROBE + 1) I/O Port. The
184 If ADVANSYS_DEBUG is defined a 5th (ASC_NUM_IOPORT_PROBE + 1)
DFlashPoint.txt15 drivers and information will be available on October 15th at
Darcmsr_spec.txt123 ** (D) 4th and following bytes : variable length data bytes
Dsym53c8xx_2.txt378 th driver verbose level after boot-up.
848 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4th controller
Dscsi_eh.txt488 11th September 2005
Dncr53c8xx.txt537 th driver verbose level after boot-up.
1601 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4th controller
/linux-4.1.27/drivers/s390/net/
Dctcm_mpc.h105 struct th_header th; member
154 struct th_header *th; member
Dctcm_main.c634 header->th.th_seg = 0x00 ; in ctcmpc_send_sweep_req()
635 header->th.th_ch_flag = TH_SWEEP_REQ; /* 0x0f */ in ctcmpc_send_sweep_req()
636 header->th.th_blk_flag = 0x00; in ctcmpc_send_sweep_req()
637 header->th.th_is_xid = 0x00; in ctcmpc_send_sweep_req()
638 header->th.th_seq_num = 0x00; in ctcmpc_send_sweep_req()
Dctcm_mpc.c663 header->th.th_seg = 0x00 ; in ctcmpc_send_sweep_resp()
664 header->th.th_ch_flag = TH_SWEEP_RESP; in ctcmpc_send_sweep_resp()
665 header->th.th_blk_flag = 0x00; in ctcmpc_send_sweep_resp()
666 header->th.th_is_xid = 0x00; in ctcmpc_send_sweep_resp()
667 header->th.th_seq_num = 0x00; in ctcmpc_send_sweep_resp()
1184 mpcginfo->th = header; in ctcmpc_unpack_skb()
Dctcm_fsms.c1807 switch (header->th.th_ch_flag) { in ctcmpc_chx_send_sweep()
/linux-4.1.27/fs/cramfs/
DREADME46 The i'th <block_pointer> for a file stores the byte offset of the
47 *end* of the i'th <block> (i.e. one past the last byte, which is the
48 same as the start of the (i+1)'th <block> if there is one). The first
57 <block>: The i'th <block> is the output of zlib's compress function
58 applied to the i'th blksize-sized chunk of the input data.
/linux-4.1.27/Documentation/devicetree/bindings/ata/
Dapm-xgene.txt15 4th memory resource shall be the host controller
17 5th optional memory resource shall be the host
/linux-4.1.27/Documentation/input/
Dsentelic.txt5 * Finger Sensing Pad Intellimouse Mode(scrolling wheel, 4th and 5th buttons)
7 A) MSID 4: Scrolling wheel mode plus Forward page(4th button) and Backward
8 page (5th button)
33 Bit4 => 1 = 4th mouse button is pressed, Forward one page.
34 0 = 4th mouse button is not pressed.
35 Bit5 => 1 = 5th mouse button is pressed, Backward one page.
36 0 = 5th mouse button is not pressed.
64 Bit4 => 1 = 4th mouse button is pressed, Forward one page.
65 0 = 4th mouse button is not pressed.
66 Bit5 => 1 = 5th mouse button is pressed, Backward one page.
[all …]
Delantech.txt329 f 0 th tw x9 x8 y9 y8
332 th = 1 when three finger touch
Djoystick.txt257 although the joystick has only 8. The 9th button is the mode switch on the
/linux-4.1.27/arch/alpha/lib/
Dev67-strlen.S34 cmpbge $31, $1, $2 # E : $2 <- bitmask: bit i == 1 <==> i-th byte == 0
Dstrlen.S29 cmpbge $31, $1, $2 # $2 <- bitmask: bit i == 1 <==> i-th byte == 0
/linux-4.1.27/drivers/usb/storage/
Dusb.c775 struct task_struct *th; in usb_stor_acquire_resources() local
792 th = kthread_run(usb_stor_control_thread, us, "usb-storage"); in usb_stor_acquire_resources()
793 if (IS_ERR(th)) { in usb_stor_acquire_resources()
796 return PTR_ERR(th); in usb_stor_acquire_resources()
798 us->ctl_thread = th; in usb_stor_acquire_resources()
/linux-4.1.27/Documentation/video4linux/
D4CCs.txt32 4th character: compressed bits-per-pixel 0--9, A--
Dpxa_camera.txt104 - desc-sg[i]: i-th descriptor, transferring the i-th sg
/linux-4.1.27/drivers/net/ethernet/qlogic/qlcnic/
Dqlcnic_io.c1269 struct tcphdr *th; in qlcnic_process_lro() local
1321 th = (struct tcphdr *)(skb->data + sizeof(struct ipv6hdr)); in qlcnic_process_lro()
1322 length = (th->doff << 2) + lro_length; in qlcnic_process_lro()
1326 th = (struct tcphdr *)(skb->data + (iph->ihl << 2)); in qlcnic_process_lro()
1327 length = (iph->ihl << 2) + (th->doff << 2) + lro_length; in qlcnic_process_lro()
1332 th->psh = push; in qlcnic_process_lro()
1333 th->seq = htonl(seq_number); in qlcnic_process_lro()
1791 struct tcphdr *th; in qlcnic_83xx_process_lro() local
1843 th = (struct tcphdr *)(skb->data + sizeof(struct ipv6hdr)); in qlcnic_83xx_process_lro()
1845 length = (th->doff << 2) + lro_length; in qlcnic_83xx_process_lro()
[all …]
/linux-4.1.27/drivers/staging/lustre/lustre/fld/
Dfld_internal.h182 const struct lu_seq_range *range, struct thandle *th);
/linux-4.1.27/tools/perf/Documentation/
Dperf-probe.txt168 …source.c:100-120" shows lines between 100th to l20th in source.c file. And "func:10+20" shows 20 l…
177 … probe point definitions against minor code changes. For example, actual 10th line of schedule() c…
194 Add a probe on schedule() function 12th line with recording cpu local variable:
/linux-4.1.27/drivers/net/ethernet/tile/
Dtilegx.c1726 struct tcphdr *th; in tso_headers_prepare() local
1754 th = tcp_hdr(skb); in tso_headers_prepare()
1758 tsum_seed = th->check + (0xFFFF ^ htons(skb->len)); in tso_headers_prepare()
1759 seq = ntohl(th->seq); in tso_headers_prepare()
1785 th = (struct tcphdr *)(buf + th_off); in tso_headers_prepare()
1786 th->seq = htonl(seq); in tso_headers_prepare()
1787 th->check = csum_long(tsum_seed + htons(sh_len + p_len)); in tso_headers_prepare()
1789 th->fin = 0; in tso_headers_prepare()
1790 th->psh = 0; in tso_headers_prepare()
Dtilepro.c1693 struct tcphdr *th = (struct tcphdr *)(nh + ih_len); in tile_net_tx_tso() local
1694 unsigned int th_len = th->doff * 4; in tile_net_tx_tso()
/linux-4.1.27/drivers/parport/
Ddaisy.c96 static const char *th[] = { /*0*/"th", "st", "nd", "rd", "th" }; in parport_daisy_init() local
128 extra->name, i + 1, th[i + 1], num_ports, in parport_daisy_init()
/linux-4.1.27/Documentation/hwmon/
Demc210333 this 4th channel when anti-parallel diodes are not fitted.
Dk10temp62 sysfs. It is measured in degrees Celsius with a resolution of 1/8th degree.
Dasc762117 added PECI and a 4th thermal zone. The Andigilog aSC7611 is the
/linux-4.1.27/Documentation/usb/
Dmisc_usbsevseg.txt43 For example, to set the 0th and 3rd decimal place
DCREDITS104 Feb. 11th 1999 in Vienna, where we'll will present the
Dgadget_configfs.txt8 25th April 2013
/linux-4.1.27/net/sched/
Dcls_route.c486 unsigned int h, th; in route4_change() local
536 th = to_hash(fold->handle); in route4_change()
538 b = rtnl_dereference(head->table[th]); in route4_change()
/linux-4.1.27/arch/mips/boot/dts/brcm/
Dbcm3384_zephyr.dtsi17 /* On BMIPS5000 this is 1/8th of the CPU core clock */
/linux-4.1.27/Documentation/fb/
Dapi.txt69 the number of bits per macropixel, with plane i'th storing i'th bit from all
77 the number of bits per macropixel, with plane i'th storing i'th bit from all
/linux-4.1.27/Documentation/device-mapper/
Ddm-flakey.txt53 - replaces the 224th byte of REQ_META (=32) bios with the value 0
/linux-4.1.27/Documentation/sound/alsa/
DChannel-Mapping-API.txt23 third/fourth channels while others that C/LFE as 5th/6th channels.
Dhda_codec.txt291 parsed via th generic parser (hda_generic.c). Its support is
DSB-Live-mixer.txt18 This PCM device (it's the 4th PCM device (index 3!) and first subdevice
/linux-4.1.27/drivers/net/ethernet/intel/fm10k/
Dfm10k_main.c798 unsigned char *th; in fm10k_tso() local
811 th = skb_inner_transport_header(skb); in fm10k_tso()
813 th = skb_transport_header(skb); in fm10k_tso()
817 hdrlen = (th - skb->data) + (((struct tcphdr *)th)->doff << 2); in fm10k_tso()
/linux-4.1.27/drivers/net/ethernet/intel/i40e/
Di40e_txrx.c1941 struct tcphdr *th; in i40e_atr() local
1976 th = (struct tcphdr *)(hdr.network + hlen); in i40e_atr()
1979 if (th->syn && (pf->auto_disable_flags & I40E_FLAG_FD_ATR_ENABLED)) in i40e_atr()
1985 if (!th->fin && in i40e_atr()
1986 !th->syn && in i40e_atr()
1987 !th->rst && in i40e_atr()
2012 dtype_cmd |= (th->fin || th->rst) ? in i40e_atr()
/linux-4.1.27/Documentation/vm/
Dbalance27 _total_ number of free pages fell below 1/64 th of total memory. With the
44 of a zone _and_ all its lower class zones falls below 1/64th of the
/linux-4.1.27/scripts/
Danalyze_suspend.py2038 th {border: 1px solid black;background-color:#A7C942;color:white;}\n\
2062 th = '\t<th>{0}</th>\n'
2068 html += th.format("Test #")
2070 html += th.format("Hostname")
2071 html += th.format("Kernel Version")
2072 html += th.format("Suspend Mode")
2073 html += th.format("Test Time")
2074 html += th.format("Suspend Time")
2075 html += th.format("Resume Time")
2076 html += th.format("Detail")
/linux-4.1.27/drivers/gpu/drm/radeon/
Dr600_dpm.h140 int r600_calculate_at(u32 t, u32 h, u32 fh, u32 fl, u32 *tl, u32 *th);
Dr600_dpm.c218 int r600_calculate_at(u32 t, u32 h, u32 fh, u32 fl, u32 *tl, u32 *th) in r600_calculate_at() argument
233 *th = t - ah; in r600_calculate_at()
/linux-4.1.27/Documentation/zh_CN/
Doops-tracing.txt180 820 4th St. N.
/linux-4.1.27/drivers/net/ethernet/qlogic/netxen/
Dnetxen_nic_init.c1599 struct tcphdr *th; in netxen_process_lro() local
1642 th = (struct tcphdr *)((skb->data + vhdr_len) + (iph->ihl << 2)); in netxen_process_lro()
1644 length = (iph->ihl << 2) + (th->doff << 2) + lro_length; in netxen_process_lro()
1647 th->psh = push; in netxen_process_lro()
1648 th->seq = htonl(seq_number); in netxen_process_lro()
/linux-4.1.27/Documentation/m68k/
DREADME.buddha207 Jens Schönfeld february 19th, 1997
208 updated may 27th, 1997
/linux-4.1.27/arch/arm/lib/
Ddiv64.S118 @ (the 33th bit) this is a false positive so resume the loop.
/linux-4.1.27/arch/
DKconfig508 Architecture has tls passed as the 4th argument of clone(2),
509 not the 5th one.
520 not the 5th one.
/linux-4.1.27/Documentation/networking/
Dtlan.txt77 and 4th parameters to set aui and debug respectively. For
Dspider_net.txt194 marks a descr about 1/4th of the way from the bottom of the queue, so
Dixgbe.txt182 Software ATR Tx packet sample rate. For example, when set to 20, every 20th
De1000.txt248 4 (use every 4th Tx Descriptor)
Darcnet-hardware.txt2254 to be used. The first 6 switches set the address, the 7th doesn't have any
2255 function, and the 8th switch is used to select "compatible" or "enhanced".
Dfilter.txt864 When BPF_CLASS(code) == BPF_ALU or BPF_JMP, 4th bit encodes source operand ...
Dip-sysctl.txt450 retransmit N times before killing the connection at the (N+1)th RTO.
/linux-4.1.27/security/selinux/
Dhooks.c3763 struct tcphdr _tcph, *th; in selinux_parse_skb_ipv4() local
3769 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph); in selinux_parse_skb_ipv4()
3770 if (th == NULL) in selinux_parse_skb_ipv4()
3773 ad->u.net->sport = th->source; in selinux_parse_skb_ipv4()
3774 ad->u.net->dport = th->dest; in selinux_parse_skb_ipv4()
3848 struct tcphdr _tcph, *th; in selinux_parse_skb_ipv6() local
3850 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph); in selinux_parse_skb_ipv6()
3851 if (th == NULL) in selinux_parse_skb_ipv6()
3854 ad->u.net->sport = th->source; in selinux_parse_skb_ipv6()
3855 ad->u.net->dport = th->dest; in selinux_parse_skb_ipv6()
/linux-4.1.27/Documentation/misc-devices/
Dlis3lv02d25 to mg values (1/1000th of earth gravity).
/linux-4.1.27/Documentation/target/
Dtcm_mod_builder.txt144 October 5th, 2010
/linux-4.1.27/Documentation/sound/oss/
Dmwave173 are playing at 1/8th speed - not very useful! If you have ANY insight
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/
Dmpic.txt139 <4th-cell> type-specific information
/linux-4.1.27/Documentation/scheduler/
Dsched-deadline.txt132 Each job J_j (where J_j is the j^th job of the task) is characterised by an
149 multiple real-time tasks, the parameters of the i-th task are indicated
205 Real-Time Systems. Proceedings of the 19th IEEE Real-time Systems
/linux-4.1.27/arch/m68k/fpsp040/
Dsatan.S27 | of X with a bit-1 attached at the 6-th bit position. Define u
/linux-4.1.27/arch/frv/kernel/
Dhead-mmu-fr451.S46 # GR13 - displacement of 4th SDRAM addr reg from GR14
Dhead-uc-fr401.S45 # GR13 - displacement of 4th SDRAM addr reg from GR14
Dhead-uc-fr555.S44 # GR13 - displacement of 4th SDRAM addr reg from GR14
/linux-4.1.27/Documentation/trace/
Dkprobetrace.txt103 1st to 4th arguments as "myprobe" event. Note, which register/stack entry is
Dcoresight.txt5 Date: September 11th, 2014
/linux-4.1.27/Documentation/thermal/
Dsysfs-api.txt46 mask: Bit string: If 'n'th bit is set, then trip point 'n' is writeable.
193 |---cdev[0-*]: [0-*]th cooling device in current thermal zone
/linux-4.1.27/Documentation/filesystems/pohmelfs/
Dnetwork_protocol.txt218 @ext - lock type: read/write. Not used actually. 15'th bit is used to determine,
/linux-4.1.27/drivers/net/ethernet/broadcom/bnx2x/
Dbnx2x_cmn.c687 struct tcphdr *th; in bnx2x_gro_ip_csum() local
690 th = tcp_hdr(skb); in bnx2x_gro_ip_csum()
692 th->check = ~tcp_v4_check(skb->len - skb_transport_offset(skb), in bnx2x_gro_ip_csum()
699 struct tcphdr *th; in bnx2x_gro_ipv6_csum() local
702 th = tcp_hdr(skb); in bnx2x_gro_ipv6_csum()
704 th->check = ~tcp_v6_check(skb->len - skb_transport_offset(skb), in bnx2x_gro_ipv6_csum()
/linux-4.1.27/drivers/staging/rtl8192u/ieee80211/
Dieee80211_softmac.c1778 u32 th, tl; in ieee80211_sta_ps() local
1797 sleep = ieee80211_sta_ps_sleep(ieee,&th, &tl); in ieee80211_sta_ps()
1805 ieee->enter_sleep_state(ieee->dev, th, tl); in ieee80211_sta_ps()
1820 ieee->ps_th = th; in ieee80211_sta_ps()
Dieee80211.h2131 void (*enter_sleep_state) (struct net_device *dev, u32 th, u32 tl);
/linux-4.1.27/security/smack/
Dsmack_lsm.c3564 struct tcphdr _tcph, *th; in smk_skb_to_addr_ipv6() local
3585 th = skb_header_pointer(skb, offset, sizeof(_tcph), &_tcph); in smk_skb_to_addr_ipv6()
3586 if (th != NULL) in smk_skb_to_addr_ipv6()
3587 sip->sin6_port = th->source; in smk_skb_to_addr_ipv6()
/linux-4.1.27/Documentation/serial/
Dmoxa-smartio177 4th board ttyM24 - ttym31 cum24 - cum31
294 | | | +- 4th ISA board
/linux-4.1.27/arch/arm/boot/dts/
Dam335x-pepper.dts203 fifo-th = <0>;
Dtegra30-cardhu.dtsi15 * The stciker will have number like 600-81291-1000-002 C.3. In this 4th
Dam335x-evm.dts103 fifo-th = <0>;
Dam335x-evmsk.dts169 fifo-th = <0>;
/linux-4.1.27/arch/cris/arch-v10/
DREADME.mm189 The pgd_t from our example will therefore be the 208'th (0xd0) entry in mm->pgd. function
/linux-4.1.27/Documentation/filesystems/
Dromfs.txt78 bytes accessible from the start of this filesystem. The 4th longword
Dcoda.txt377 44.. TThhee iinntteerrffaaccee aatt tthhee ccaallll lleevveell
420 …44..11.. DDaattaa ssttrruuccttuurreess sshhaarreedd bbyy tthhee kke…
/linux-4.1.27/drivers/net/ethernet/intel/ixgbe/
Dixgbe_main.c7160 struct tcphdr *th; in ixgbe_atr() local
7183 th = tcp_hdr(first->skb); in ixgbe_atr()
7186 if (!th || th->fin) in ixgbe_atr()
7190 if (!th->syn && (ring->atr_count < ring->atr_sample_rate)) in ixgbe_atr()
7212 common.port.src ^= th->dest ^ htons(ETH_P_8021Q); in ixgbe_atr()
7214 common.port.src ^= th->dest ^ first->protocol; in ixgbe_atr()
7215 common.port.dst ^= th->source; in ixgbe_atr()
/linux-4.1.27/drivers/net/usb/
Dr8152.c1414 struct tcphdr *th; in msdn_giant_send_check() local
1422 th = tcp_hdr(skb); in msdn_giant_send_check()
1424 th->check = 0; in msdn_giant_send_check()
1425 th->check = ~tcp_v6_check(0, &ipv6h->saddr, &ipv6h->daddr, 0); in msdn_giant_send_check()
/linux-4.1.27/
DCREDITS324 S: 2322 37th Ave SW
655 S: 14509 NE 39th Street #1096
1647 S: 110 S. 12th St., Apt. A
2360 S: Bremensgade 29, st.th
3443 S: Chr. Winthersvej 1 B, st.th.
3729 S: 301 15th Street S.
3840 S: 820 4th St. N.
3964 S: 542 West 112th Street, 5N
4029 S: 1507 145th Place SE #B5
/linux-4.1.27/drivers/net/ethernet/neterion/vxge/
Dvxge-main.c636 struct tcphdr *th; in vxge_get_vpath_no() local
641 th = (struct tcphdr *)(((unsigned char *)ip) + in vxge_get_vpath_no()
645 counter = (ntohs(th->source) + in vxge_get_vpath_no()
646 ntohs(th->dest)) & in vxge_get_vpath_no()
/linux-4.1.27/Documentation/dvb/
Davermedia.txt301 February 14th 2006
/linux-4.1.27/Documentation/devicetree/bindings/clock/
Dat91-clock.txt297 * 4th cell is optional and represents the ICPLL field (PLLICPR
/linux-4.1.27/Documentation/RCU/
DRTFP.txt456 ,Booktitle = "15\textsuperscript{th} ACM Symposium on
707 ,booktitle="{Proceedings of the 14\textsuperscript{th} Annual ACM
802 ,booktitle={Proceedings of 16\textsuperscript{th} International
1445 ,Booktitle="20\textsuperscript{th} {IEEE} International Parallel and
2620 ,booktitle = {Proceedings of the 11th international conference on Algorithms and architectures for …
/linux-4.1.27/Documentation/sysctl/
Dvm.txt707 means that we don't allow more than 1/8th of pages in each zone to be
710 1/100th of each zone to each per cpu page list.
Dkernel.txt882 a part (1/8th) of the available RAM pages.
891 thread structures would occupy too much (more than 1/8th) of the
/linux-4.1.27/drivers/net/ethernet/neterion/
Ds2io.c4053 struct tcphdr *th; in s2io_xmit() local
4057 th = (struct tcphdr *)(((unsigned char *)ip) + in s2io_xmit()
4062 queue = (ntohs(th->source) + in s2io_xmit()
4063 ntohs(th->dest)) & in s2io_xmit()
4069 queue = (ntohs(th->source) + in s2io_xmit()
4070 ntohs(th->dest)) & in s2io_xmit()
/linux-4.1.27/Documentation/powerpc/
Deeh-pci-error-recovery.txt165 rtas_set_slot_reset() -- assert the PCI #RST line for 1/8th of a second
/linux-4.1.27/drivers/net/ethernet/realtek/
Dr8169.c6910 struct tcphdr *th; in msdn_giant_send_check() local
6918 th = tcp_hdr(skb); in msdn_giant_send_check()
6920 th->check = 0; in msdn_giant_send_check()
6921 th->check = ~tcp_v6_check(0, &ipv6h->saddr, &ipv6h->daddr, 0); in msdn_giant_send_check()
/linux-4.1.27/drivers/scsi/
Dncr53c8xx.c7408 int th = tn & 3; in ncr_init_tcb() local
7417 tp->jump_tcb.l_paddr = np->jump_tcb[th].l_paddr; in ncr_init_tcb()
7465 np->jump_tcb[th].l_paddr = cpu_to_scr(vtobus (&tp->jump_tcb)); in ncr_init_tcb()
/linux-4.1.27/Documentation/video4linux/bttv/
DCards35 - 4 Composite inputs, 1 S-VHS input (shared with 4th composite)
/linux-4.1.27/Documentation/isdn/
DREADME.HiSax262 typn,dpn,pa_n,pb_n,pc_n = Parameters of the n'th card (up to 16 cards are
/linux-4.1.27/Documentation/laptops/
Dthinkpad-acpi.txt4 October 16th, 2013
/linux-4.1.27/drivers/net/ethernet/broadcom/
Dtg3.c13422 struct tcphdr *th; in tg3_run_loopback() local
13424 th = (struct tcphdr *)&tx_data[val]; in tg3_run_loopback()
13425 th->check = 0; in tg3_run_loopback()
/linux-4.1.27/arch/m68k/ifpsp060/src/
Dfpsp.S6165 # significant bits of X with a bit-1 attached at the 6-th #