/linux-4.1.27/drivers/macintosh/ |
D | therm_adt746x.c | 90 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, ®_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/ |
D | sfi_core.c | 166 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 …]
|
D | sfi_acpi.c | 81 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/ |
D | tcp_offload.c | 40 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 …]
|
D | syncookies.c | 178 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 …]
|
D | tcp_ipv4.c | 94 __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 …]
|
D | tcp_minisocks.c | 101 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 …]
|
D | tcp_input.c | 259 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 …]
|
D | tcp_output.c | 354 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 …]
|
D | tcp_probe.c | 108 const struct tcphdr *th, unsigned int len) in jtcp_rcv_established() argument
|
D | tcp.c | 2929 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/ |
D | ipt_SYNPROXY.c | 71 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 …]
|
D | nf_nat_h323.c | 34 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/ |
D | auth_x.c | 99 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/ |
D | ip6t_SYNPROXY.c | 86 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/ |
D | nf_log_common.c | 61 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 …]
|
D | xt_tcpmss.c | 31 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()
|
D | xt_ecn.c | 34 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()
|
D | xt_tcpudp.c | 67 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()
|
D | nf_synproxy_core.c | 29 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()
|
D | nf_conntrack_proto_tcp.c | 759 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 …]
|
D | nf_conntrack_irc.c | 111 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()
|
D | nf_conntrack_sane.c | 67 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()
|
D | nf_conntrack_ftp.c | 391 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()
|
D | nf_conntrack_seqadj.c | 63 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()
|
D | nf_nat_sip.c | 40 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()
|
D | nf_conntrack_sip.c | 1485 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()
|
D | nf_conntrack_h323_main.c | 125 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/ |
D | dt_object.h | 99 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 …]
|
D | lustre_log.h | 178 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/ |
D | namei.c | 429 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 …]
|
D | inode.c | 35 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 …]
|
D | stree.c | 1016 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 …]
|
D | bitmap.c | 143 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 …]
|
D | journal.c | 92 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 …]
|
D | file.c | 35 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()
|
D | objectid.c | 49 __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()
|
D | tail_conversion.c | 24 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()
|
D | super.c | 68 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 …]
|
D | resize.c | 27 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()
|
D | xattr_acl.c | 14 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()
|
D | reiserfs.h | 2897 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 …]
|
D | acl.h | 53 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
|
D | xattr_security.c | 91 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()
|
D | xattr.h | 41 int reiserfs_security_write(struct reiserfs_transaction_handle *th, 114 reiserfs_security_write(struct reiserfs_transaction_handle *th, in reiserfs_security_write() argument
|
D | xattr.c | 293 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/ |
D | syncookies.c | 118 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 …]
|
D | tcpv6_offload.c | 35 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()
|
D | tcp_ipv6.c | 327 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/ |
D | slhc.c | 239 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/ |
D | match.c | 40 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/ |
D | ds1620.c | 335 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/ |
D | ip_vs_app.c | 293 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 …]
|
D | ip_vs_proto_tcp.c | 41 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 …]
|
D | ip_vs_ftp.c | 173 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()
|
D | ip_vs_sh.c | 284 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()
|
D | ip_vs_core.c | 1033 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/ |
D | vmac.c | 113 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/ |
D | llog_cat.c | 64 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 …]
|
D | llog.c | 603 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 …]
|
D | dt_object.c | 81 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/ |
D | machine.c | 294 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 …]
|
D | machine.h | 123 void machine__remove_thread(struct machine *machine, struct thread *th);
|
/linux-4.1.27/include/net/ |
D | ip6_checksum.h | 71 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()
|
D | tcp.h | 369 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
|
D | arp.h | 43 const unsigned char *src_hw, const unsigned char *th);
|
/linux-4.1.27/drivers/misc/sgi-gru/ |
D | grulib.h | 62 #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/ |
D | sysfs-pps | 13 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.
|
D | sysfs-c2port | 13 The /sys/class/c2port/c2portX/ directory is related to X-th
|
/linux-4.1.27/net/netfilter/ipset/ |
D | ip_set_getport.c | 30 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/ |
D | gpio-twl4030.txt | 15 - 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
|
D | gpio-xilinx.txt | 19 - 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
|
D | sodaville.txt | 41 /* User the 11th GPIO line as an active high triggered
|
/linux-4.1.27/security/ |
D | lsm_audit.c | 63 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/ |
D | nf_conntrack_synproxy.h | 60 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/ |
D | st_thermal.c | 114 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/ |
D | pinctrl-sirf.txt | 10 - 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
|
D | fsl,mxs-pinctrl.txt | 4 has 32 pins. Each pin has 4 multiplexing functions, and generally, the 4th
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | amd-powernow.txt | 21 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/ |
D | devices.txt | 6 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 …]
|
D | rtc.txt | 53 ring on the 30th second of the 30th minute of every hour, for example.
|
D | preempt-locking.txt | 77 n-times in a code path, and preemption will not be reenabled until the n-th
|
D | this_cpu_ops.txt | 331 Christoph Lameter, August 4th, 2014
|
D | oops-tracing.txt | 216 820 4th St. N.
|
D | assoc_array.txt | 498 insertion algorithm finds that it is trying to insert a 17th object into a
|
/linux-4.1.27/Documentation/devicetree/bindings/dma/ |
D | apm-xgene-dma.txt | 14 4th - Soc efuse register address space. 16 DMA error reporting interrupt. 2nd, 3rd, 4th and 5th interrupts
|
/linux-4.1.27/drivers/staging/rts5208/ |
D | rtsx.c | 854 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/ |
D | ppc-pv.txt | 43 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/ |
D | ABI.txt | 49 | 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/ |
D | actions.c | 543 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/ |
D | panel.txt | 14 - fifo-th: DMA FIFO threshold 48 fifo-th = <0>;
|
/linux-4.1.27/drivers/ata/ |
D | pata_mpc52xx.c | 83 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()
|
D | pata_bf54x.c | 374 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/ |
D | aic79xx.txt | 103 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 …]
|
D | aic7xxx.txt | 134 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)
|
D | hptiop.txt | 155 read the (N+1)th outbound list unit. 157 The host get the index of the request from the (N+1)th outbound list
|
D | scsi-generic.txt | 100 26th January 2002
|
D | advansys.txt | 87 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)
|
D | FlashPoint.txt | 15 drivers and information will be available on October 15th at
|
D | arcmsr_spec.txt | 123 ** (D) 4th and following bytes : variable length data bytes
|
D | sym53c8xx_2.txt | 378 th driver verbose level after boot-up. 848 00 00 00 00 00 00 00 00 00 00 00 00 00 00 4th controller
|
D | scsi_eh.txt | 488 11th September 2005
|
D | ncr53c8xx.txt | 537 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/ |
D | ctcm_mpc.h | 105 struct th_header th; member 154 struct th_header *th; member
|
D | ctcm_main.c | 634 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()
|
D | ctcm_mpc.c | 663 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()
|
D | ctcm_fsms.c | 1807 switch (header->th.th_ch_flag) { in ctcmpc_chx_send_sweep()
|
/linux-4.1.27/fs/cramfs/ |
D | README | 46 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/ |
D | apm-xgene.txt | 15 4th memory resource shall be the host controller 17 5th optional memory resource shall be the host
|
/linux-4.1.27/Documentation/input/ |
D | sentelic.txt | 5 * 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 …]
|
D | elantech.txt | 329 f 0 th tw x9 x8 y9 y8 332 th = 1 when three finger touch
|
D | joystick.txt | 257 although the joystick has only 8. The 9th button is the mode switch on the
|
/linux-4.1.27/arch/alpha/lib/ |
D | ev67-strlen.S | 34 cmpbge $31, $1, $2 # E : $2 <- bitmask: bit i == 1 <==> i-th byte == 0
|
D | strlen.S | 29 cmpbge $31, $1, $2 # $2 <- bitmask: bit i == 1 <==> i-th byte == 0
|
/linux-4.1.27/drivers/usb/storage/ |
D | usb.c | 775 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/ |
D | 4CCs.txt | 32 4th character: compressed bits-per-pixel 0--9, A--
|
D | pxa_camera.txt | 104 - desc-sg[i]: i-th descriptor, transferring the i-th sg
|
/linux-4.1.27/drivers/net/ethernet/qlogic/qlcnic/ |
D | qlcnic_io.c | 1269 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/ |
D | fld_internal.h | 182 const struct lu_seq_range *range, struct thandle *th);
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-probe.txt | 168 …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/ |
D | tilegx.c | 1726 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()
|
D | tilepro.c | 1693 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/ |
D | daisy.c | 96 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/ |
D | emc2103 | 33 this 4th channel when anti-parallel diodes are not fitted.
|
D | k10temp | 62 sysfs. It is measured in degrees Celsius with a resolution of 1/8th degree.
|
D | asc7621 | 17 added PECI and a 4th thermal zone. The Andigilog aSC7611 is the
|
/linux-4.1.27/Documentation/usb/ |
D | misc_usbsevseg.txt | 43 For example, to set the 0th and 3rd decimal place
|
D | CREDITS | 104 Feb. 11th 1999 in Vienna, where we'll will present the
|
D | gadget_configfs.txt | 8 25th April 2013
|
/linux-4.1.27/net/sched/ |
D | cls_route.c | 486 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/ |
D | bcm3384_zephyr.dtsi | 17 /* On BMIPS5000 this is 1/8th of the CPU core clock */
|
/linux-4.1.27/Documentation/fb/ |
D | api.txt | 69 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/ |
D | dm-flakey.txt | 53 - replaces the 224th byte of REQ_META (=32) bios with the value 0
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | Channel-Mapping-API.txt | 23 third/fourth channels while others that C/LFE as 5th/6th channels.
|
D | hda_codec.txt | 291 parsed via th generic parser (hda_generic.c). Its support is
|
D | SB-Live-mixer.txt | 18 This PCM device (it's the 4th PCM device (index 3!) and first subdevice
|
/linux-4.1.27/drivers/net/ethernet/intel/fm10k/ |
D | fm10k_main.c | 798 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/ |
D | i40e_txrx.c | 1941 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/ |
D | balance | 27 _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/ |
D | analyze_suspend.py | 2038 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/ |
D | r600_dpm.h | 140 int r600_calculate_at(u32 t, u32 h, u32 fh, u32 fl, u32 *tl, u32 *th);
|
D | r600_dpm.c | 218 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/ |
D | oops-tracing.txt | 180 820 4th St. N.
|
/linux-4.1.27/drivers/net/ethernet/qlogic/netxen/ |
D | netxen_nic_init.c | 1599 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/ |
D | README.buddha | 207 Jens Schönfeld february 19th, 1997 208 updated may 27th, 1997
|
/linux-4.1.27/arch/arm/lib/ |
D | div64.S | 118 @ (the 33th bit) this is a false positive so resume the loop.
|
/linux-4.1.27/arch/ |
D | Kconfig | 508 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/ |
D | tlan.txt | 77 and 4th parameters to set aui and debug respectively. For
|
D | spider_net.txt | 194 marks a descr about 1/4th of the way from the bottom of the queue, so
|
D | ixgbe.txt | 182 Software ATR Tx packet sample rate. For example, when set to 20, every 20th
|
D | e1000.txt | 248 4 (use every 4th Tx Descriptor)
|
D | arcnet-hardware.txt | 2254 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".
|
D | filter.txt | 864 When BPF_CLASS(code) == BPF_ALU or BPF_JMP, 4th bit encodes source operand ...
|
D | ip-sysctl.txt | 450 retransmit N times before killing the connection at the (N+1)th RTO.
|
/linux-4.1.27/security/selinux/ |
D | hooks.c | 3763 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/ |
D | lis3lv02d | 25 to mg values (1/1000th of earth gravity).
|
/linux-4.1.27/Documentation/target/ |
D | tcm_mod_builder.txt | 144 October 5th, 2010
|
/linux-4.1.27/Documentation/sound/oss/ |
D | mwave | 173 are playing at 1/8th speed - not very useful! If you have ANY insight
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/ |
D | mpic.txt | 139 <4th-cell> type-specific information
|
/linux-4.1.27/Documentation/scheduler/ |
D | sched-deadline.txt | 132 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/ |
D | satan.S | 27 | of X with a bit-1 attached at the 6-th bit position. Define u
|
/linux-4.1.27/arch/frv/kernel/ |
D | head-mmu-fr451.S | 46 # GR13 - displacement of 4th SDRAM addr reg from GR14
|
D | head-uc-fr401.S | 45 # GR13 - displacement of 4th SDRAM addr reg from GR14
|
D | head-uc-fr555.S | 44 # GR13 - displacement of 4th SDRAM addr reg from GR14
|
/linux-4.1.27/Documentation/trace/ |
D | kprobetrace.txt | 103 1st to 4th arguments as "myprobe" event. Note, which register/stack entry is
|
D | coresight.txt | 5 Date: September 11th, 2014
|
/linux-4.1.27/Documentation/thermal/ |
D | sysfs-api.txt | 46 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/ |
D | network_protocol.txt | 218 @ext - lock type: read/write. Not used actually. 15'th bit is used to determine,
|
/linux-4.1.27/drivers/net/ethernet/broadcom/bnx2x/ |
D | bnx2x_cmn.c | 687 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/ |
D | ieee80211_softmac.c | 1778 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()
|
D | ieee80211.h | 2131 void (*enter_sleep_state) (struct net_device *dev, u32 th, u32 tl);
|
/linux-4.1.27/security/smack/ |
D | smack_lsm.c | 3564 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/ |
D | moxa-smartio | 177 4th board ttyM24 - ttym31 cum24 - cum31 294 | | | +- 4th ISA board
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | am335x-pepper.dts | 203 fifo-th = <0>;
|
D | tegra30-cardhu.dtsi | 15 * The stciker will have number like 600-81291-1000-002 C.3. In this 4th
|
D | am335x-evm.dts | 103 fifo-th = <0>;
|
D | am335x-evmsk.dts | 169 fifo-th = <0>;
|
/linux-4.1.27/arch/cris/arch-v10/ |
D | README.mm | 189 The pgd_t from our example will therefore be the 208'th (0xd0) entry in mm->pgd. function
|
/linux-4.1.27/Documentation/filesystems/ |
D | romfs.txt | 78 bytes accessible from the start of this filesystem. The 4th longword
|
D | coda.txt | 377 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/ |
D | ixgbe_main.c | 7160 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/ |
D | r8152.c | 1414 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/ |
D | CREDITS | 324 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/ |
D | vxge-main.c | 636 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/ |
D | avermedia.txt | 301 February 14th 2006
|
/linux-4.1.27/Documentation/devicetree/bindings/clock/ |
D | at91-clock.txt | 297 * 4th cell is optional and represents the ICPLL field (PLLICPR
|
/linux-4.1.27/Documentation/RCU/ |
D | RTFP.txt | 456 ,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/ |
D | vm.txt | 707 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.
|
D | kernel.txt | 882 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/ |
D | s2io.c | 4053 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/ |
D | eeh-pci-error-recovery.txt | 165 rtas_set_slot_reset() -- assert the PCI #RST line for 1/8th of a second
|
/linux-4.1.27/drivers/net/ethernet/realtek/ |
D | r8169.c | 6910 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/ |
D | ncr53c8xx.c | 7408 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/ |
D | Cards | 35 - 4 Composite inputs, 1 S-VHS input (shared with 4th composite)
|
/linux-4.1.27/Documentation/isdn/ |
D | README.HiSax | 262 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/ |
D | thinkpad-acpi.txt | 4 October 16th, 2013
|
/linux-4.1.27/drivers/net/ethernet/broadcom/ |
D | tg3.c | 13422 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/ |
D | fpsp.S | 6165 # significant bits of X with a bit-1 attached at the 6-th #
|