Home
last modified time | relevance | path

Searched refs:tid (Results 1 – 25 of 635) sorted by relevance

12345678910>>...26

/linux-6.1.9/drivers/net/wireless/mediatek/mt76/
Dagg-rx.c16 mt76_aggr_release(struct mt76_rx_tid *tid, struct sk_buff_head *frames, int idx) in mt76_aggr_release() argument
20 tid->head = ieee80211_sn_inc(tid->head); in mt76_aggr_release()
22 skb = tid->reorder_buf[idx]; in mt76_aggr_release()
26 tid->reorder_buf[idx] = NULL; in mt76_aggr_release()
27 tid->nframes--; in mt76_aggr_release()
32 mt76_rx_aggr_release_frames(struct mt76_rx_tid *tid, in mt76_rx_aggr_release_frames() argument
38 while (ieee80211_sn_less(tid->head, head)) { in mt76_rx_aggr_release_frames()
39 idx = tid->head % tid->size; in mt76_rx_aggr_release_frames()
40 mt76_aggr_release(tid, frames, idx); in mt76_rx_aggr_release_frames()
45 mt76_rx_aggr_release_head(struct mt76_rx_tid *tid, struct sk_buff_head *frames) in mt76_rx_aggr_release_head() argument
[all …]
/linux-6.1.9/net/mac80211/
Dagg-tx.c62 const u8 *da, u16 tid, in ieee80211_send_addba_request() argument
100 capab |= u16_encode_bits(tid, IEEE80211_ADDBA_PARAM_TID_MASK); in ieee80211_send_addba_request()
109 ieee80211_tx_skb_tid(sdata, skb, tid, -1); in ieee80211_send_addba_request()
112 void ieee80211_send_bar(struct ieee80211_vif *vif, u8 *ra, u16 tid, u16 ssn) in ieee80211_send_bar() argument
132 bar_control |= (u16)(tid << IEEE80211_BAR_CTRL_TID_INFO_SHIFT); in ieee80211_send_bar()
138 ieee80211_tx_skb_tid(sdata, skb, tid, -1); in ieee80211_send_bar()
142 void ieee80211_assign_tid_tx(struct sta_info *sta, int tid, in ieee80211_assign_tid_tx() argument
147 rcu_assign_pointer(sta->ampdu_mlme.tid_tx[tid], tid_tx); in ieee80211_assign_tid_tx()
162 ieee80211_stop_queue_agg(struct ieee80211_sub_if_data *sdata, int tid) in __acquires()
164 int queue = sdata->vif.hw_queue[ieee80211_ac_from_tid(tid)]; in __acquires()
[all …]
Dagg-rx.c58 void ___ieee80211_stop_rx_ba_session(struct sta_info *sta, u16 tid, in ___ieee80211_stop_rx_ba_session() argument
66 .tid = tid, in ___ieee80211_stop_rx_ba_session()
74 tid_rx = rcu_dereference_protected(sta->ampdu_mlme.tid_rx[tid], in ___ieee80211_stop_rx_ba_session()
77 if (!test_bit(tid, sta->ampdu_mlme.agg_session_valid)) in ___ieee80211_stop_rx_ba_session()
80 RCU_INIT_POINTER(sta->ampdu_mlme.tid_rx[tid], NULL); in ___ieee80211_stop_rx_ba_session()
81 __clear_bit(tid, sta->ampdu_mlme.agg_session_valid); in ___ieee80211_stop_rx_ba_session()
85 sta->sta.addr, tid, in ___ieee80211_stop_rx_ba_session()
92 sta->sta.addr, tid); in ___ieee80211_stop_rx_ba_session()
97 tid, WLAN_BACK_RECIPIENT, reason); in ___ieee80211_stop_rx_ba_session()
117 void __ieee80211_stop_rx_ba_session(struct sta_info *sta, u16 tid, in __ieee80211_stop_rx_ba_session() argument
[all …]
/linux-6.1.9/fs/cifs/
Dtrace.h26 __u32 tid,
31 TP_ARGS(xid, fid, tid, sesid, offset, len, rc),
35 __field(__u32, tid)
44 __entry->tid = tid;
51 __entry->xid, __entry->sesid, __entry->tid, __entry->fid,
59 __u32 tid, \
64 TP_ARGS(xid, fid, tid, sesid, offset, len, rc))
77 __u32 tid,
81 TP_ARGS(xid, fid, tid, sesid, offset, len),
85 __field(__u32, tid)
[all …]
/linux-6.1.9/drivers/net/ethernet/marvell/mvpp2/
Dmvpp2_prs.c47 int tid) in mvpp2_prs_init_from_hw() argument
51 if (tid > MVPP2_PRS_TCAM_SRAM_SIZE - 1) in mvpp2_prs_init_from_hw()
55 pe->index = tid; in mvpp2_prs_init_from_hw()
367 int tid; in mvpp2_prs_flow_find() local
370 for (tid = MVPP2_PRS_TCAM_SRAM_SIZE - 1; tid >= 0; tid--) { in mvpp2_prs_flow_find()
373 if (!priv->prs_shadow[tid].valid || in mvpp2_prs_flow_find()
374 priv->prs_shadow[tid].lu != MVPP2_PRS_LU_FLOWS) in mvpp2_prs_flow_find()
377 mvpp2_prs_init_from_hw(priv, &pe, tid); in mvpp2_prs_flow_find()
382 return tid; in mvpp2_prs_flow_find()
392 int tid; in mvpp2_prs_tcam_first_free() local
[all …]
Dmvpp2_debugfs.c17 int tid; member
251 int tid; in mvpp2_dbgfs_port_vid_show() local
253 for (tid = MVPP2_PRS_VID_PORT_FIRST(port->id); in mvpp2_dbgfs_port_vid_show()
254 tid <= MVPP2_PRS_VID_PORT_LAST(port->id); tid++) { in mvpp2_dbgfs_port_vid_show()
255 mvpp2_prs_init_from_hw(priv, &pe, tid); in mvpp2_dbgfs_port_vid_show()
259 if (!priv->prs_shadow[tid].valid) in mvpp2_dbgfs_port_vid_show()
305 int index, tid; in mvpp2_dbgfs_filter_show() local
307 for (tid = MVPP2_PE_MAC_RANGE_START; in mvpp2_dbgfs_filter_show()
308 tid <= MVPP2_PE_MAC_RANGE_END; tid++) { in mvpp2_dbgfs_filter_show()
311 if (!priv->prs_shadow[tid].valid || in mvpp2_dbgfs_filter_show()
[all …]
/linux-6.1.9/tools/perf/scripts/python/
Dfutex-contention.py29 def syscalls__sys_enter_futex(event, ctxt, cpu, s, ns, tid, comm, callchain, argument
35 process_names[tid] = comm
36 thread_thislock[tid] = uaddr
37 thread_blocktime[tid] = nsecs(s, ns)
40 def syscalls__sys_exit_futex(event, ctxt, cpu, s, ns, tid, comm, callchain, argument
42 if tid in thread_blocktime:
43 elapsed = nsecs(s, ns) - thread_blocktime[tid]
44 add_stats(lock_waits, (tid, thread_thislock[tid]), elapsed)
45 del thread_blocktime[tid]
46 del thread_thislock[tid]
[all …]
/linux-6.1.9/fs/jfs/
Dnamei.c66 tid_t tid; /* transaction id */ in jfs_create() local
98 tid = txBegin(dip->i_sb, 0); in jfs_create()
103 rc = jfs_init_acl(tid, ip, dip); in jfs_create()
107 rc = jfs_init_security(tid, ip, dip, &dentry->d_name); in jfs_create()
109 txAbort(tid, 0); in jfs_create()
115 txAbort(tid, 0); in jfs_create()
119 tblk = tid_to_tblock(tid); in jfs_create()
130 xtInitRoot(tid, ip); in jfs_create()
137 if ((rc = dtInsert(tid, dip, &dname, &ino, &btstack))) { in jfs_create()
140 txAbort(tid, 1); /* Marks Filesystem dirty */ in jfs_create()
[all …]
/linux-6.1.9/tools/testing/selftests/net/
Dsrv6_end_dt46_l3vpn_test.sh284 local tid=$3
285 local hsname=hs-t${tid}-${hs}
287 local rtveth=veth-t${tid}
304 ip -netns ${rtname} link add vrf-${tid} type vrf table ${tid}
305 ip -netns ${rtname} link set vrf-${tid} up
311 ip -netns ${rtname} link set ${rtveth} master vrf-${tid}
333 local tid=$5
335 local hssrc_name=hs-t${tid}-${hssrc}
336 local hsdst_name=hs-t${tid}-${hsdst}
339 local rtveth=veth-t${tid}
[all …]
Dsrv6_end_dt4_l3vpn_test.sh250 local tid=$3
251 local hsname=hs-t${tid}-${hs}
253 local rtveth=veth-t${tid}
265 ip -netns ${rtname} link add vrf-${tid} type vrf table ${tid}
266 ip -netns ${rtname} link set vrf-${tid} up
269 ip -netns ${rtname} link set ${rtveth} master vrf-${tid}
289 local tid=$5
291 local hssrc_name=hs-t${tid}-${hssrc}
292 local hsdst_name=hs-t${tid}-${hsdst}
295 local vpn_sid=${VPN_LOCATOR_SERVICE}:${hssrc}${hsdst}:${tid}::6004
[all …]
Dsrv6_end_dt6_l3vpn_test.sh253 local tid=$3
254 local hsname=hs-t${tid}-${hs}
256 local rtveth=veth-t${tid}
272 ip -netns ${rtname} link add vrf-${tid} type vrf table ${tid}
273 ip -netns ${rtname} link set vrf-${tid} up
279 ip -netns ${rtname} link set ${rtveth} master vrf-${tid}
294 local tid=$5
296 local hssrc_name=hs-t${tid}-${hssrc}
297 local hsdst_name=hs-t${tid}-${hsdst}
300 local rtveth=veth-t${tid}
[all …]
/linux-6.1.9/tools/perf/dlfilters/
Ddlfilter-show-cycles.c29 __s32 tid; member
47 static struct entry *find_entry(__s32 tid) in find_entry() argument
49 __u32 pos = tid & MASK; in find_entry()
54 if (e->tid == tid) in find_entry()
68 e->tid = tid; in find_entry()
72 static void add_entry(__s32 tid, int pos, __u64 cnt) in add_entry() argument
74 struct entry *e = find_entry(tid); in add_entry()
83 __s32 tid = sample->tid; in filter_event_early() local
93 else if (tid != -1) in filter_event_early()
94 add_entry(tid, pos, sample->cyc_cnt); in filter_event_early()
[all …]
/linux-6.1.9/drivers/net/wireless/marvell/mwifiex/
D11n.h35 *priv, int tid,
37 void mwifiex_create_ba_tbl(struct mwifiex_private *priv, u8 *ra, int tid,
39 int mwifiex_send_addba(struct mwifiex_private *priv, int tid, u8 *peer_mac);
40 int mwifiex_send_delba(struct mwifiex_private *priv, int tid, u8 *peer_mac,
58 struct mwifiex_ra_list_tbl *ptr, int tid) in mwifiex_is_station_ampdu_allowed() argument
65 return (node->ampdu_sta[tid] != BA_STREAM_NOT_ALLOWED) ? true : false; in mwifiex_is_station_ampdu_allowed()
71 struct mwifiex_ra_list_tbl *ptr, int tid) in mwifiex_is_ampdu_allowed() argument
76 return mwifiex_is_station_ampdu_allowed(priv, ptr, tid); in mwifiex_is_ampdu_allowed()
79 return mwifiex_is_station_ampdu_allowed(priv, ptr, tid); in mwifiex_is_ampdu_allowed()
81 return (priv->aggr_prio_tbl[tid].ampdu_ap != in mwifiex_is_ampdu_allowed()
[all …]
D11n.c99 int tid; in mwifiex_ret_11n_delba() local
104 tid = del_ba_param_set >> DELBA_TID_POS; in mwifiex_ret_11n_delba()
106 mwifiex_del_ba_tbl(priv, tid, del_ba->peer_mac_addr, in mwifiex_ret_11n_delba()
112 mwifiex_send_addba(priv, tx_ba_tbl->tid, in mwifiex_ret_11n_delba()
121 mwifiex_create_ba_tbl(priv, del_ba->peer_mac_addr, tid, in mwifiex_ret_11n_delba()
127 mwifiex_del_ba_tbl(priv, tx_ba_tbl->tid, tx_ba_tbl->ra, in mwifiex_ret_11n_delba()
145 int tid, tid_down; in mwifiex_ret_11n_addba_req() local
154 tid = (block_ack_param_set & IEEE80211_ADDBA_PARAM_TID_MASK) in mwifiex_ret_11n_addba_req()
157 tid_down = mwifiex_wmm_downgrade_tid(priv, tid); in mwifiex_ret_11n_addba_req()
165 mwifiex_del_ba_tbl(priv, tid, add_ba_rsp->peer_mac_addr, in mwifiex_ret_11n_addba_req()
[all …]
/linux-6.1.9/tools/testing/selftests/powerpc/mm/
Dtlbie_test.c201 static inline unsigned int compute_store_pattern(unsigned int tid, in compute_store_pattern() argument
206 char *start = compute_chunk_start_addr(tid); in compute_store_pattern()
209 ret += (tid & THREAD_ID_MASK) << THREAD_ID_SHIFT; in compute_store_pattern()
256 static inline void start_verification_log(unsigned int tid, in start_verification_log() argument
265 char *chunk_start = compute_chunk_start_addr(tid); in start_verification_log()
268 sprintf(logfile, logfilename, tid); in start_verification_log()
278 fp[tid] = f; in start_verification_log()
282 fprintf(f, "Thread id = %02d\n", tid); in start_verification_log()
291 static inline void log_anamoly(unsigned int tid, unsigned int *addr, in log_anamoly() argument
294 FILE *f = fp[tid]; in log_anamoly()
[all …]
/linux-6.1.9/include/trace/events/
Djbd2.h137 TP_PROTO(dev_t dev, tid_t tid, unsigned int type,
140 TP_ARGS(dev, tid, type, line_no, requested_blocks),
144 __field( tid_t, tid )
152 __entry->tid = tid;
160 MAJOR(__entry->dev), MINOR(__entry->dev), __entry->tid,
165 TP_PROTO(dev_t dev, tid_t tid, unsigned int type,
168 TP_ARGS(dev, tid, type, line_no, requested_blocks)
172 TP_PROTO(dev_t dev, tid_t tid, unsigned int type,
175 TP_ARGS(dev, tid, type, line_no, requested_blocks)
179 TP_PROTO(dev_t dev, tid_t tid, unsigned int type,
[all …]
/linux-6.1.9/drivers/net/ethernet/chelsio/libcxgb/
Dlibcxgb_cm.h89 cxgb_mk_tid_release(struct sk_buff *skb, u32 len, u32 tid, u16 chan) in cxgb_mk_tid_release() argument
95 INIT_TP_WR(req, tid); in cxgb_mk_tid_release()
96 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_TID_RELEASE, tid)); in cxgb_mk_tid_release()
101 cxgb_mk_close_con_req(struct sk_buff *skb, u32 len, u32 tid, u16 chan, in cxgb_mk_close_con_req() argument
108 INIT_TP_WR(req, tid); in cxgb_mk_close_con_req()
109 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_CLOSE_CON_REQ, tid)); in cxgb_mk_close_con_req()
115 cxgb_mk_abort_req(struct sk_buff *skb, u32 len, u32 tid, u16 chan, in cxgb_mk_abort_req() argument
122 INIT_TP_WR(req, tid); in cxgb_mk_abort_req()
123 OPCODE_TID(req) = cpu_to_be32(MK_OPCODE_TID(CPL_ABORT_REQ, tid)); in cxgb_mk_abort_req()
130 cxgb_mk_abort_rpl(struct sk_buff *skb, u32 len, u32 tid, u16 chan) in cxgb_mk_abort_rpl() argument
[all …]
/linux-6.1.9/drivers/net/ethernet/chelsio/cxgb3/
Dcxgb3_defs.h63 unsigned int tid) in lookup_tid() argument
65 struct t3c_tid_entry *t3c_tid = tid < t->ntids ? in lookup_tid()
66 &(t->tid_tab[tid]) : NULL; in lookup_tid()
75 unsigned int tid) in lookup_stid() argument
79 if (tid < t->stid_base || tid >= t->stid_base + t->nstids) in lookup_stid()
82 e = stid2entry(t, tid); in lookup_stid()
94 unsigned int tid) in lookup_atid() argument
98 if (tid < t->atid_base || tid >= t->atid_base + t->natids) in lookup_atid()
101 e = atid2entry(t, tid); in lookup_atid()
/linux-6.1.9/drivers/net/wireless/ath/ath9k/
Dxmit.c51 struct ath_atx_tid *tid, struct sk_buff *skb);
64 static void ath_tx_update_baw(struct ath_softc *sc, struct ath_atx_tid *tid,
68 struct ath_atx_tid *tid,
116 void ath_tx_queue_tid(struct ath_softc *sc, struct ath_atx_tid *tid) in ath_tx_queue_tid() argument
119 container_of((void *)tid, struct ieee80211_txq, drv_priv); in ath_tx_queue_tid()
128 struct ath_atx_tid *tid = (struct ath_atx_tid *) queue->drv_priv; in ath9k_wake_tx_queue() local
129 struct ath_txq *txq = tid->txq; in ath9k_wake_tx_queue()
133 tid->tidno); in ath9k_wake_tx_queue()
148 static void ath_send_bar(struct ath_atx_tid *tid, u16 seqno) in ath_send_bar() argument
150 if (!tid->an->sta) in ath_send_bar()
[all …]
/linux-6.1.9/arch/powerpc/kvm/
Dtrace.h49 TP_PROTO(unsigned int victim, unsigned int tid, unsigned int word0,
51 TP_ARGS(victim, tid, word0, word1, word2),
55 __field( unsigned int, tid )
63 __entry->tid = tid;
70 __entry->victim, __entry->tid, __entry->word0,
75 TP_PROTO(unsigned int gtlb_index, unsigned int tid, unsigned int word0,
77 TP_ARGS(gtlb_index, tid, word0, word1, word2),
81 __field( unsigned int, tid )
89 __entry->tid = tid;
96 __entry->gtlb_index, __entry->tid, __entry->word0,
/linux-6.1.9/kernel/bpf/
Dtask_iter.c31 u32 tid; member
35 u32 *tid, in task_group_seq_get_next() argument
42 if (!*tid) { in task_group_seq_get_next()
52 *tid = common->pid; in task_group_seq_get_next()
62 if (*tid == common->pid_visiting) { in task_group_seq_get_next()
88 saved_tid = *tid; in task_group_seq_get_next()
89 *tid = __task_pid_nr_ns(next_task, PIDTYPE_PID, common->ns); in task_group_seq_get_next()
90 if (!*tid || *tid == common->pid) { in task_group_seq_get_next()
94 *tid = saved_tid; in task_group_seq_get_next()
99 common->pid_visiting = *tid; in task_group_seq_get_next()
[all …]
/linux-6.1.9/kernel/locking/
Dlocktorture.c79 int (*writelock)(int tid);
82 void (*writeunlock)(int tid);
83 int (*readlock)(int tid);
85 void (*readunlock)(int tid);
108 static int torture_lock_busted_write_lock(int tid __maybe_unused) in torture_lock_busted_write_lock()
125 static void torture_lock_busted_write_unlock(int tid __maybe_unused) in torture_lock_busted_write_unlock()
148 static int torture_spin_lock_write_lock(int tid __maybe_unused) in torture_spin_lock_write_lock()
173 static void torture_spin_lock_write_unlock(int tid __maybe_unused) in torture_spin_lock_write_unlock()
190 static int torture_spin_lock_write_lock_irq(int tid __maybe_unused) in torture_spin_lock_write_lock_irq()
200 static void torture_lock_spin_write_unlock_irq(int tid __maybe_unused) in torture_lock_spin_write_unlock_irq()
[all …]
/linux-6.1.9/drivers/net/wireless/intel/iwlwifi/dvm/
Dtx.c270 u8 sta_id, tid = IWL_MAX_TID_COUNT; in iwlagn_tx_skb() local
374 tid = qc[0] & IEEE80211_QOS_CTL_TID_MASK; in iwlagn_tx_skb()
375 if (WARN_ON_ONCE(tid >= IWL_MAX_TID_COUNT)) in iwlagn_tx_skb()
377 tid_data = &priv->tid_data[sta_id][tid]; in iwlagn_tx_skb()
386 sta_id, tid, in iwlagn_tx_skb()
416 txq_id = priv->tid_data[sta_id][tid].agg.txq_id; in iwlagn_tx_skb()
429 IWL_DEBUG_TX(priv, "TX to [%d|%d] Q:%d - seq: 0x%x\n", sta_id, tid, in iwlagn_tx_skb()
436 priv->tid_data[sta_id][tid].seq_number = seq_number; in iwlagn_tx_skb()
482 struct ieee80211_sta *sta, u16 tid) in iwlagn_tx_agg_stop() argument
491 IWL_ERR(priv, "Invalid station for AGG tid %d\n", tid); in iwlagn_tx_agg_stop()
[all …]
/linux-6.1.9/drivers/net/wireless/intel/iwlwifi/mvm/
Dsta.c264 sta->addr, ba_data->tid); in iwl_mvm_rx_agg_session_expired()
319 u16 *queueptr, u8 tid) in iwl_mvm_disable_txq() argument
355 mvm->queue_info[queue].tid_bitmap &= ~BIT(tid); in iwl_mvm_disable_txq()
372 cmd.tid = mvm->queue_info[queue].txq_tid; in iwl_mvm_disable_txq()
384 iwl_mvm_txq_from_tid(sta, tid); in iwl_mvm_disable_txq()
410 int tid; in iwl_mvm_get_queue_agg_tids() local
429 for_each_set_bit(tid, &tid_bitmap, IWL_MAX_TID_COUNT + 1) { in iwl_mvm_get_queue_agg_tids()
430 if (mvmsta->tid_data[tid].state == IWL_AGG_ON) in iwl_mvm_get_queue_agg_tids()
431 agg_tids |= BIT(tid); in iwl_mvm_get_queue_agg_tids()
450 int tid; in iwl_mvm_remove_sta_queue_marking() local
[all …]
/linux-6.1.9/sound/core/
Dpcm_timer.c100 struct snd_timer_id tid; in snd_pcm_timer_init() local
103 tid.dev_sclass = SNDRV_TIMER_SCLASS_NONE; in snd_pcm_timer_init()
104 tid.dev_class = SNDRV_TIMER_CLASS_PCM; in snd_pcm_timer_init()
105 tid.card = substream->pcm->card->number; in snd_pcm_timer_init()
106 tid.device = substream->pcm->device; in snd_pcm_timer_init()
107 tid.subdevice = (substream->number << 1) | (substream->stream & 1); in snd_pcm_timer_init()
108 if (snd_timer_new(substream->pcm->card, "PCM", &tid, &timer) < 0) in snd_pcm_timer_init()
113 tid.card, tid.device, tid.subdevice); in snd_pcm_timer_init()

12345678910>>...26