Searched refs:tids (Results 1 - 12 of 12) sorted by last modified time

/freebsd-11-stable/sys/dev/cxgbe/
H A Dt4_main.c1541 free(sc->tids.ftid_tab, M_CXGBE);
1542 free(sc->tids.hpftid_tab, M_CXGBE);
1543 free_hftid_hash(&sc->tids);
1544 free(sc->tids.atid_tab, M_CXGBE);
1545 free(sc->tids.tid_tab, M_CXGBE);
1550 if (mtx_initialized(&sc->tids.ftid_lock)) {
1551 mtx_destroy(&sc->tids.ftid_lock);
1552 cv_destroy(&sc->tids.ftid_cv);
1554 if (mtx_initialized(&sc->tids.atid_lock))
1555 mtx_destroy(&sc->tids
[all...]
H A Dt4_filter.c190 struct tid_info *t = &sc->tids;
203 struct tid_info *t = &sc->tids;
267 struct tid_info *t = &sc->tids;
288 struct tid_info *t = &sc->tids;
308 struct tid_info *t = &sc->tids;
320 struct tid_info *t = &sc->tids;
494 if (sc->tids.ftids_in_use > 0 || sc->tids.hpftids_in_use > 0) {
559 MPASS(t->idx < sc->tids.nhpftids);
560 f = &sc->tids
[all...]
H A Dadapter.h835 struct tid_info tids; member in struct:adapter
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DProcessMonitor.cpp1010 lwpid_t *tids; local
1018 tids = (lwpid_t *)malloc(tdcnt * sizeof(*tids));
1019 if (tids == NULL)
1021 if (PTRACE(PT_GETLWPLIST, m_pid, (void *)tids, tdcnt) < 0) {
1022 free(tids);
1025 thread_ids = std::vector<lldb::tid_t>(tids, tids + tdcnt);
1026 free(tids);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectThread.cpp94 // Use tids instead of ThreadSPs to prevent deadlocking problems which
97 std::vector<lldb::tid_t> tids; variable
103 tids.push_back(thread_sp->GetID());
133 tids.push_back(thread->GetID());
140 for (const lldb::tid_t &tid : tids) {
169 for (const lldb::tid_t &tid : tids) {
/freebsd-11-stable/sys/dev/cxgbe/tom/
H A Dt4_tom.c497 struct tid_info *t = &sc->tids;
509 struct tid_info *t = &sc->tids;
517 struct tid_info *t = &sc->tids;
525 struct tid_info *t = &sc->tids;
734 ("%s: %d tids still in use.", __func__, t->tids_in_use));
764 ("%s: %d tids still in use.", __func__, t->stids_in_use));
827 free_tid_tabs(&sc->tids);
1083 rc = alloc_tid_tabs(&sc->tids);
H A Dt4_listen.c93 struct tid_info *t = &sc->tids;
164 struct tid_info *t = &sc->tids;
172 struct tid_info *t = &sc->tids;
/freebsd-11-stable/sys/dev/cxgbe/common/
H A Dcommon.h438 return (sc->tids.nftids > 0 && tid >= sc->tids.ftid_base &&
439 tid <= sc->tids.ftid_end);
445 return (sc->tids.nhpftids > 0 && tid >= sc->tids.hpftid_base &&
446 tid <= sc->tids.hpftid_end);
452 return (sc->tids.netids > 0 && tid >= sc->tids.etid_base &&
453 tid <= sc->tids.etid_end);
/freebsd-11-stable/sys/dev/qlnx/qlnxe/
H A Decore_cxt.c400 iids->tids += segs[j].count;
410 iids->tids += vf_tids * p_mngr->vf_count;
413 "iids: CIDS %08x vf_cids %08x tids %08x vf_tids %08x\n",
414 iids->cids, iids->vf_cids, iids->tids, vf_tids);
813 qm_iids.vf_cids, qm_iids.tids,
818 "QM ILT Info, (cids=%d, vf_cids=%d, tids=%d, num_pqs=%d, num_vf_pqs=%d, memory_size=%d)\n",
819 qm_iids.cids, qm_iids.vf_cids, qm_iids.tids,
1612 iids.cids, iids.vf_cids, iids.tids,
H A Decore.h336 u32 tids; member in struct:ecore_qm_iids
/freebsd-11-stable/usr.bin/gcore/
H A Delfcore.c349 lwpid_t *tids; local
358 tids = malloc(threads * sizeof(*tids));
359 if (tids == NULL)
362 ptrace(PT_GETLWPLIST, pid, (void *)tids, threads);
370 elf_putnote(NT_PRSTATUS, elf_note_prstatus, tids + i, sb);
371 elf_putnote(NT_FPREGSET, elf_note_fpregset, tids + i, sb);
372 elf_putnote(NT_THRMISC, elf_note_thrmisc, tids + i, sb);
373 elf_putnote(NT_PTLWPINFO, elf_note_ptlwpinfo, tids + i, sb);
375 elf_putnote(NT_ARM_VFP, elf_note_arm_vfp, tids
[all...]
/freebsd-11-stable/sys/dev/cxgb/common/
H A Dcxgb_t3_hw.c3110 unsigned int m, pstructs, tids = t3_mc5_size(&adap->mc5); local
3114 if (tids <= 16 * 1024) {
3117 } else if (tids <= 64 * 1024) {
3120 } else if (tids <= 256 * 1024) {
3145 m = tids * TCB_SIZE;
3159 tids = (p->cm_size - m - (3 << 20)) / 3072 - 32;
3162 if (tids < m)
3163 adap->params.mc5.nservers += m - tids;

Completed in 184 milliseconds