Searched refs:tid (Results 101 - 125 of 627) sorted by relevance

1234567891011>>

/linux-master/scripts/gdb/linux/
H A Dcpus.py29 tid = gdb.selected_thread().ptid[2]
30 if tid > (0x100000000 - MAX_CPUS - 2):
31 return 0x100000000 - tid - 2
33 return tasks.get_thread_info(tasks.get_task_by_pid(tid))['cpu']
/linux-master/drivers/net/wireless/intel/iwlwifi/fw/api/
H A Dtxq.h97 * @tid: tid of the queue
106 u8 tid; member in struct:iwl_tx_queue_cfg_cmd
H A Ddatapath.h481 * @tid: the TID for this session
488 u8 tid; member in struct:iwl_rx_baid_cfg_cmd_alloc
498 * @tid: TID of the BAID
503 __le32 tid; member in struct:iwl_rx_baid_cfg_cmd_modify
517 * @tid: the TID of the BAID to remove
521 __le32 tid; member in struct:iwl_rx_baid_cfg_cmd_remove
562 * @u.add.tid: TID
570 * @u.remove.tid: TID of queue to remove
572 * @u.modify.tid: TID of queue to modify
580 u8 tid; member in struct:iwl_scd_queue_cfg_cmd::__anon974::__anon975
589 __le32 tid; member in struct:iwl_scd_queue_cfg_cmd::__anon974::__anon976
593 __le32 tid; member in struct:iwl_scd_queue_cfg_cmd::__anon974::__anon977
[all...]
/linux-master/net/netfilter/
H A Dxt_l2tp.c38 u32 tid; member in struct:l2tp_data
57 /* Check tid only for L2TPv3 control or any L2TPv2 packets */
60 (info->tid != data->tid))
106 /* Now extract the L2TP tid/sid. These are in different places
110 * tid/sid fields.
117 data.tid = ntohl(lh->val32);
126 data.tid = (u32) ntohs(lh->val16[0]);
151 /* Must be a control packet. The L2TP tid is further
159 data.tid
[all...]
/linux-master/tools/perf/util/
H A Djitdump.h69 uint32_t tid; member in struct:jr_code_load
84 uint32_t tid; member in struct:jr_code_move
/linux-master/drivers/net/wireless/realtek/rtlwifi/
H A Drc.c190 struct rtl_sta_info *sta_entry, u16 tid)
201 if (sta_entry->tids[tid].agg.agg_state == RTL_AGG_STOP)
230 /* Check if aggregation has to be enabled for this tid */
235 u8 tid = rtl_get_tid(skb); local
238 tid)) {
239 sta_entry->tids[tid].agg.agg_state =
241 ieee80211_start_tx_ba_session(sta, tid,
189 _rtl_tx_aggr_check(struct rtl_priv *rtlpriv, struct rtl_sta_info *sta_entry, u16 tid) argument
H A Dbase.c146 u8 rtl_tid_to_ac(u8 tid) argument
148 return tid_to_ac[tid];
1334 u8 *bssid, u16 tid);
1337 struct ieee80211_hdr *hdr, u16 tid)
1343 skb_delba = rtl_make_del_ba(hw, hdr->addr2, hdr->addr3, tid);
1392 u16 capab = 0, tid = 0; local
1407 tid = (capab &
1409 if (tid >= MAX_TID_COUNT) {
1413 tid_data = &sta_entry->tids[tid];
1416 process_agg_start(hw, hdr, tid);
1336 process_agg_start(struct ieee80211_hw *hw, struct ieee80211_hdr *hdr, u16 tid) argument
1745 rtl_tx_agg_start(struct ieee80211_hw *hw, struct ieee80211_vif *vif, struct ieee80211_sta *sta, u16 tid, u16 *ssn) argument
1770 rtl_tx_agg_stop(struct ieee80211_hw *hw, struct ieee80211_vif *vif, struct ieee80211_sta *sta, u16 tid) argument
1792 rtl_rx_agg_start(struct ieee80211_hw *hw, struct ieee80211_sta *sta, u16 tid) argument
1824 rtl_rx_agg_stop(struct ieee80211_hw *hw, struct ieee80211_sta *sta, u16 tid) argument
1845 rtl_tx_agg_oper(struct ieee80211_hw *hw, struct ieee80211_sta *sta, u16 tid) argument
2043 u8 idx, tid; local
2507 rtl_make_del_ba(struct ieee80211_hw *hw, u8 *sa, u8 *bssid, u16 tid) argument
[all...]
/linux-master/drivers/net/wireless/ath/ath10k/
H A Ddebugfs_sta.c49 void ath10k_sta_update_rx_tid_stats_ampdu(struct ath10k *ar, u16 peer_id, u8 tid, argument
57 if (tid > IEEE80211_NUM_TIDS || !(ar->sta_tid_stats_mask & BIT(tid)))
71 &arsta->tid_stats[tid],
91 u8 tid = IEEE80211_NUM_TIDS; local
99 tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
101 if (!(ar->sta_tid_stats_mask & BIT(tid)) || non_data_frm)
113 stats = &arsta->tid_stats[tid];
121 ath10k_rx_stats_update_amsdu_subfrm(ar, &arsta->tid_stats[tid],
245 u32 tid, buf_siz local
296 u32 tid, status; local
346 u32 tid, initiator, reason; local
[all...]
/linux-master/tools/testing/selftests/mm/
H A Dgup_test.c97 pthread_t *tid; local
257 tid = malloc(sizeof(pthread_t) * nthreads);
258 assert(tid);
260 ret = pthread_create(&tid[i], NULL, gup_thread, &gup);
264 ret = pthread_join(tid[i], NULL);
268 free(tid);
/linux-master/net/mac80211/
H A Dkey.c1240 int tid, struct ieee80211_key_seq *seq)
1249 if (WARN_ON(tid < 0 || tid >= IEEE80211_NUM_TIDS))
1251 seq->tkip.iv32 = key->u.tkip.rx[tid].iv32;
1252 seq->tkip.iv16 = key->u.tkip.rx[tid].iv16;
1256 if (WARN_ON(tid < -1 || tid >= IEEE80211_NUM_TIDS))
1258 if (tid < 0)
1261 pn = key->u.ccmp.rx_pn[tid];
1266 if (WARN_ON(tid !
1239 ieee80211_get_key_rx_seq(struct ieee80211_key_conf *keyconf, int tid, struct ieee80211_key_seq *seq) argument
1292 ieee80211_set_key_rx_seq(struct ieee80211_key_conf *keyconf, int tid, struct ieee80211_key_seq *seq) argument
[all...]
/linux-master/drivers/target/iscsi/cxgbit/
H A Dcxgbit_cm.c50 struct cxgbit_wr_wait *wr_waitp, u32 tid, u32 timeout,
62 pr_info("%s - Device %s not responding tid %u\n",
63 func, pci_name(cdev->lldi.pdev), tid);
68 pr_info("%s: FW reply %d tid %u\n",
69 pci_name(cdev->lldi.pdev), wr_waitp->ret, tid);
631 cxgb_mk_close_con_req(skb, len, csk->tid, csk->txq_idx,
663 pr_debug("%s: csk %p tid %u; state %d\n",
664 __func__, csk, csk->tid, csk->com.state);
672 cxgb_mk_abort_req(skb, len, csk->tid, csk->txq_idx,
715 csk->tid, 60
49 cxgbit_wait_for_reply(struct cxgbit_device *cdev, struct cxgbit_wr_wait *wr_waitp, u32 tid, u32 timeout, const char *func) argument
1014 cxgbit_release_tid(struct cxgbit_device *cdev, u32 tid) argument
1224 unsigned int tid = GET_TID(req); local
1627 unsigned int tid = GET_TID(req); local
1726 unsigned int tid = GET_TID(hdr); local
1901 unsigned int tid = GET_TID(rpl); local
1922 unsigned int tid = GET_TID(cpl); local
1965 unsigned int tid = GET_TID(cpl); local
[all...]
/linux-master/fs/jbd2/
H A Dcheckpoint.c81 tid_t tid = 0; variable
84 tid = journal->j_committing_transaction->t_tid;
92 } else if (tid) {
99 jbd2_log_wait_commit(journal, tid);
197 tid_t tid = t->t_tid; local
214 jbd2_log_start_commit(journal, tid);
224 jbd2_log_wait_commit(journal, tid);
409 tid_t tid = 0; local
439 tid = transaction->t_tid;
465 trace_jbd2_shrink_checkpoint_list(journal, first_tid, tid, last_ti
[all...]
H A Djournal.c478 * the target tid must be an old one.
506 int jbd2_log_start_commit(journal_t *journal, tid_t tid) argument
511 ret = __jbd2_log_start_commit(journal, tid);
526 tid_t tid; local
542 tid = transaction->t_tid;
545 jbd2_log_start_commit(journal, tid);
546 ret = jbd2_log_wait_commit(journal, tid);
592 * committing), and fills its tid in at *ptid
600 tid_t tid = journal->j_running_transaction->t_tid; local
602 __jbd2_log_start_commit(journal, tid);
627 jbd2_trans_will_send_data_barrier(journal_t *journal, tid_t tid) argument
666 jbd2_log_wait_commit(journal_t *journal, tid_t tid) argument
715 jbd2_fc_begin_commit(journal_t *journal, tid_t tid) argument
755 __jbd2_fc_end_commit(journal_t *journal, tid_t tid, bool fallback) argument
779 tid_t tid; local
790 jbd2_transaction_committed(journal_t *journal, tid_t tid) argument
813 jbd2_complete_transaction(journal_t *journal, tid_t tid) argument
1051 jbd2_journal_get_log_tail(journal_t *journal, tid_t *tid, unsigned long *block) argument
1090 __jbd2_update_log_tail(journal_t *journal, tid_t tid, unsigned long block) argument
1132 jbd2_update_log_tail(journal_t *journal, tid_t tid, unsigned long block) argument
2444 tid_t tid = transaction->t_tid; local
[all...]
/linux-master/drivers/net/wireless/realtek/rtlwifi/rtl8192de/
H A Dsw.c64 u8 tid; local
142 for (tid = 0; tid < 8; tid++)
143 skb_queue_head_init(&rtlpriv->mac80211.skb_waitq[tid]);
173 u8 tid; local
179 for (tid = 0; tid < 8; tid++)
180 skb_queue_purge(&rtlpriv->mac80211.skb_waitq[tid]);
[all...]
/linux-master/drivers/net/wireless/intel/iwlwifi/mvm/
H A Dmld-sta.c139 u16 *queue, u8 tid,
160 txq = iwl_mvm_tvqm_enable_txq(mvm, NULL, sta->sta_id, tid,
179 int link_id, const u8 *addr, u8 tid,
193 queue, tid, wdg_timeout);
308 u16 *queueptr, u8 tid)
313 if (tid == IWL_MAX_TID_COUNT)
314 tid = IWL_MGMT_TID;
321 .u.remove.tid = cpu_to_le32(tid),
340 bool flush, u8 tid, u1
136 iwl_mvm_mld_add_int_sta_with_queue(struct iwl_mvm *mvm, struct iwl_mvm_int_sta *sta, const u8 *addr, int link_id, u16 *queue, u8 tid, unsigned int *_wdg_timeout) argument
175 iwl_mvm_mld_add_int_sta(struct iwl_mvm *mvm, struct iwl_mvm_int_sta *int_sta, u16 *queue, enum nl80211_iftype iftype, enum iwl_fw_sta_type sta_type, int link_id, const u8 *addr, u8 tid, unsigned int *wdg_timeout) argument
307 iwl_mvm_mld_disable_txq(struct iwl_mvm *mvm, u32 sta_mask, u16 *queueptr, u8 tid) argument
338 iwl_mvm_mld_rm_int_sta(struct iwl_mvm *mvm, struct iwl_mvm_int_sta *int_sta, bool flush, u8 tid, u16 *queuptr) argument
955 int tid; local
[all...]
/linux-master/arch/s390/kvm/
H A Ddiag.c170 int tid; local
172 tid = vcpu->run->s.regs.gprs[(vcpu->arch.sie_block->ipa & 0xf0) >> 4];
176 if (tid == vcpu->vcpu_id)
180 tcpu = kvm_get_vcpu_by_id(vcpu->kvm, tid);
196 tid);
204 VCPU_EVENT(vcpu, 5, "diag time slice end directed to %d: done", tid);
207 VCPU_EVENT(vcpu, 5, "diag time slice end directed to %d: ignored", tid);
/linux-master/drivers/net/wireless/marvell/mwifiex/
H A Dwmm.c387 u8 mwifiex_wmm_downgrade_tid(struct mwifiex_private *priv, u32 tid) argument
392 ac = mwifiex_wmm_convert_tos_to_ac(priv->adapter, tid);
395 /* Send the index to tid array, picking from the array will be
398 new_tid = ac_to_tid[ac_down][tid % 2];
556 "info: ra_list: freeing buf for tid %d\n", i);
627 mwifiex_wmm_get_ralist_node(struct mwifiex_private *priv, u8 tid, argument
632 list_for_each_entry(ra_list, &priv->wmm.tid_tbl_ptr[tid].ra_list,
729 mwifiex_wmm_get_queue_raptr(struct mwifiex_private *priv, u8 tid, argument
734 ra_list = mwifiex_wmm_get_ralist_node(priv, tid, ra_addr);
739 return mwifiex_wmm_get_ralist_node(priv, tid, ra_add
816 u32 tid; local
1088 mwifiex_wmm_get_highest_priolist_ptr(struct mwifiex_adapter *adapter, struct mwifiex_private **priv, int *tid) argument
1174 mwifiex_rotate_priolists(struct mwifiex_private *priv, struct mwifiex_ra_list_tbl *ra, int tid) argument
1411 int tid_del = 0, tid = 0; local
[all...]
/linux-master/drivers/platform/surface/aggregator/
H A Dtrace.h167 return get_unaligned_le16(&p->data.ptr[SSH_MSGOFFSET_COMMAND(tid)]);
268 #define ssam_show_ssh_tid(tid) \
269 __print_symbolic(tid, \
359 __field(u8, tid)
368 __entry->tid = cmd->tid;
376 TP_printk("rqid=%#06x, tid=%s, sid=%s, tc=%s, cid=%#04x, iid=%#04x, len=%u",
378 ssam_show_ssh_tid(__entry->tid),
482 __field(u8, tid)
493 __entry->tid
[all...]
/linux-master/fs/jfs/
H A Djfs_txnmgr.c24 * tlock during write()/mmap() under anonymous transaction (tid = 0):
54 int freetid; /* index of a free tid structure */
141 tid_t maxtid; /* 4: biggest tid ever used */
204 TxLock[lid].tid = 0;
263 * transaction id (tid) = tblock index
264 * tid = 0 is reserved.
343 * RETURN: tid - transaction id
395 jfs_info("txBegin: waiting for free tid");
405 jfs_info("txBegin: waiting for free tid");
436 jfs_info("txBegin: returning tid
492 txEnd(tid_t tid) argument
582 txLock(tid_t tid, struct inode *ip, struct metapage * mp, int type) argument
987 txMaplock(tid_t tid, struct inode *ip, int type) argument
1127 txCommit(tid_t tid, int nip, struct inode **iplist, int flag) argument
2125 txEA(tid_t tid, struct inode *ip, dxd_t * oldea, dxd_t * newea) argument
2593 txAbort(tid_t tid, int dirty) argument
2816 tid_t tid; local
2886 tid_t tid; local
[all...]
/linux-master/drivers/net/wireless/rsi/
H A Drsi_91x_core.c381 u8 q_num, tid = 0; local
439 tid = *qos & IEEE80211_QOS_CTL_TID_MASK;
440 skb->priority = TID_TO_WME_AC(tid);
442 tid = IEEE80211_NONQOS_TID;
447 tx_params->tid = tid;
462 /* Start aggregation if not done for this tid */
463 if (!rsta->start_tx_aggr[tid]) {
464 rsta->start_tx_aggr[tid] = true;
466 tid,
[all...]
/linux-master/net/l2tp/
H A Dtrace.h57 __field(u32, tid)
65 __entry->tid = tunnel->tunnel_id;
70 TP_printk("%s: type=%s encap=%s version=L2TPv%d tid=%u ptid=%u fd=%d",
75 __entry->tid,
95 __field(u32, tid)
103 __entry->tid = session->tunnel ? session->tunnel->tunnel_id : 0;
109 TP_printk("%s: pseudowire=%s sid=%u psid=%u tid=%u ptid=%u",
/linux-master/include/linux/surface_aggregator/
H A Dserial_hub.h89 * @tid: Target ID. Indicates the target of the message.
99 u8 tid; member in struct:ssh_command
251 * @tid: The target ID to convert.
253 static inline u8 ssh_tid_to_index(u8 tid) argument
255 return tid - 1u;
260 * @tid: The target ID to check.
262 static inline bool ssh_tid_is_valid(u8 tid) argument
264 return ssh_tid_to_index(tid) < SSH_NUM_TARGETS;
/linux-master/tools/perf/bench/
H A Dfutex-lock-pi.c28 int tid; member in struct:worker
102 w->tid, w->futex, ret);
113 w->tid, w->futex, ret);
138 worker[i].tid = i;
239 worker[i].tid, worker[i].futex, t);
/linux-master/tools/testing/selftests/kvm/
H A Ddemand_paging_test.c63 pid_t tid = syscall(__NR_gettid); local
82 addr, tid, errno);
94 addr, tid, errno);
103 PER_PAGE_DEBUG("UFFD page-in %d \t%ld ns\n", tid,
106 demand_paging_size, addr, tid);
/linux-master/drivers/scsi/qedi/
H A Dqedi_fw.c59 "Freeing tid=0x%x for cid=0x%x\n",
69 "Active cmd list node already deleted, tid=0x%x, cid=0x%x, io_cmd_node=%p\n",
123 "Freeing tid=0x%x for cid=0x%x\n",
133 "Active cmd list node already deleted, tid=0x%x, cid=0x%x, io_cmd_node=%p\n",
314 "Freeing tid=0x%x for cid=0x%x\n",
459 "Freeing tid=0x%x for cid=0x%x\n",
643 "Under flow itt=0x%x proto flags=0x%x tid=0x%x cid 0x%x fw resid 0x%x sc dlen 0x%x\n",
661 "Freeing tid=0x%x for cid=0x%x\n",
760 "TMF work not found, cqe->tid=0x%x, cid=0x%x\n",
780 "TMF work, cqe->tid
972 s16 tid = 0; local
1074 s16 tid = 0; local
1434 s16 tid = 0; local
1549 s16 tid = 0; local
1649 s16 tid = 0; local
1913 qedi_trace_io(struct qedi_ctx *qedi, struct iscsi_task *task, u16 tid, int8_t direction) argument
1991 s16 tid = 0; local
[all...]

Completed in 248 milliseconds

1234567891011>>