Searched refs:pri (Results 101 - 125 of 197) sorted by relevance

12345678

/freebsd-current/sys/vm/
H A Dvm_swapout.c667 int ppri, pri, slptime, swtime; local
704 pri = swtime + slptime;
706 pri -= p->p_nice * 8;
713 if (pri > ppri) {
715 ppri = pri;
H A Dvm_object.h252 #define VM_OBJECT_SLEEP(object, wchan, pri, wmesg, timo) \
253 rw_sleep((wchan), &(object)->lock, (pri), (wmesg), (timo))
/freebsd-current/sys/gdb/
H A Dgdb_main.c70 int cur_pri, pri; local
76 pri = (dp->gdb_probe != NULL) ? dp->gdb_probe() : -1;
77 dp->gdb_active = (pri >= 0) ? 0 : -1;
78 if (pri > cur_pri) {
79 cur_pri = pri;
/freebsd-current/sys/dev/ath/
H A Dif_ath_tx.c248 * Otherwise - return mbuf QoS pri.
1569 /* XXX TODO: this pri is only used for non-QoS check, right? */
1570 u_int pri; local
1639 pri = ath_tx_getac(sc, m0); /* honor classification */
1704 if (ieee80211_wme_vap_ac_is_noack(vap, pri))
1738 if (txq != sc->sc_ac2q[pri]) {
1740 "%s: txq=%p (%d), pri=%d, pri txq=%p (%d)\n",
1744 pri,
1745 sc->sc_ac2q[pri],
1908 u_int pri; local
2151 u_int pri; local
3141 int pri, tid; local
[all...]
/freebsd-current/sys/fs/cd9660/
H A Dcd9660_vfsops.c219 struct iso_primary_descriptor *pri = NULL; local
281 pri = (struct iso_primary_descriptor *)vdp;
325 if (pri == NULL) {
333 pri->logical_block_size);
351 pri->root_directory_record);
360 pri->volume_space_size);
382 pri = NULL;
/freebsd-current/sys/dev/hpt27xx/
H A Dldm.h467 #define CMD_SET_PRIORITY(cmd, pri) cmd->priority = (pri)
469 #define CMD_SET_PRIORITY(cmd, pri)
/freebsd-current/sys/dev/hptnr/
H A Dldm.h466 #define CMD_SET_PRIORITY(cmd, pri) cmd->priority = (pri)
468 #define CMD_SET_PRIORITY(cmd, pri)
/freebsd-current/sys/dev/hptrr/
H A Dldm.h460 #define CMD_SET_PRIORITY(cmd, pri) cmd->priority = (pri)
462 #define CMD_SET_PRIORITY(cmd, pri)
/freebsd-current/sys/dev/qlnx/qlnxe/
H A Decore_init_fw_funcs.c1089 u8 pri, tc; local
1091 for (pri = 0; pri < NUM_OF_VLAN_PRIORITIES; pri++) {
1092 if (!req->pri[pri].valid)
1095 pri_tc_mask |= (req->pri[pri].tc_id << (pri * NIG_PRIORITY_MAP_TC_BITS));
1096 tc_pri_mask[req->pri[pr
[all...]
/freebsd-current/sys/kern/
H A Dkern_acct.c600 u_char pri; local
603 pri = PRI_MAX_KERN;
605 sched_prio(curthread, pri);
H A Dkern_lock.c66 "prio flags wont fit in u_short pri in struct lock");
268 const char *wmesg, int pri, int timo, int queue)
275 catch = pri & PCATCH;
276 pri &= PRIMASK;
298 error = sleepq_timedwait_sig(&lk->lock_object, pri);
300 error = sleepq_timedwait(&lk->lock_object, pri);
302 error = sleepq_wait_sig(&lk->lock_object, pri);
304 sleepq_wait(&lk->lock_object, pri);
433 lockinit(struct lock *lk, int pri, const char *wmesg, int timo, int flags) argument
464 lk->lk_pri = pri;
267 sleeplk(struct lock *lk, u_int flags, struct lock_object *ilk, const char *wmesg, int pri, int timo, int queue) argument
1302 __lockmgr_args(struct lock *lk, u_int flags, struct lock_object *ilk, const char *wmesg, int pri, int timo, const char *file, int line) argument
[all...]
H A Dkern_cpu.c238 u_char pri; local
333 pri = curthread->td_priority;
342 sched_prio(curthread, pri);
360 pri = curthread->td_priority;
369 sched_prio(curthread, pri);
/freebsd-current/contrib/pf/libevent/
H A Devent.c546 event_priority_set(struct event *ev, int pri) argument
550 if (pri < 0 || pri >= ev->ev_base->nactivequeues)
553 ev->ev_pri = pri;
/freebsd-current/usr.sbin/ppp/
H A Dvjcomp.c74 int pri __unused, u_short *proto)
H A Dtcpmss.c220 struct mbuf *bp, int pri __unused, u_short *proto __unused)
H A Dasync.c103 int pri __unused, u_short *proto)
/freebsd-current/sbin/ifconfig/
H A Difbridge.c544 setbridge_ifpriority(if_ctx *ctx, const char *ifn, const char *pri) argument
551 if (get_val(pri, &val) < 0 || (val & ~0xff) != 0)
552 errx(1, "invalid value: %s", pri);
558 err(1, "BRDGSIFPRIO %s", pri);
/freebsd-current/crypto/openssl/test/
H A Dcms-examples.pl89 elsif ( $filename =~ /\.pri$/ ) {
/freebsd-current/sys/dev/hyperv/netvsc/
H A Dndis.h366 #define NDIS_VLAN_INFO_MAKE(id, pri, cfi) \
367 (((pri) & NDIS_VLAN_INFO_PRI_MASK) | \
/freebsd-current/sys/sys/
H A Drwlock.h241 #define rw_sleep(chan, rw, pri, wmesg, timo) \
242 _sleep((chan), &(rw)->lock_object, (pri), (wmesg), \
H A Dsx.h264 #define sx_sleep(chan, sx, pri, wmesg, timo) \
265 _sleep((chan), &(sx)->lock_object, (pri), (wmesg), \
/freebsd-current/sys/net/
H A Dethernet.h100 #define EVL_MAKETAG(vlid, pri, cfi) \
101 ((((((pri) & 7) << 1) | ((cfi) & 1)) << 12) | ((vlid) & EVL_VLID_MASK))
/freebsd-current/stand/common/
H A Dpart.c235 int pri, sec; local
252 pri = sec = 0;
265 pri = 1;
268 offset = pri ? hdr.hdr_lba_alt: table->sectors - 1;
282 if (pri == 0 ||
303 if (pri == 0 && sec == 0) {
/freebsd-current/sys/dev/bnxt/bnxt_en/
H A Dbnxt_sysctl.c2030 char pri[8]; local
2052 &pri[0], &pri[1], &pri[2], &pri[3], &pri[4],
2053 &pri[5], &pri[6], &pri[7]);
2062 if (pri[
[all...]
/freebsd-current/sys/dev/ocs_fc/
H A Dsli4.h725 pri:3, member in struct:sli4_cmd_init_vfi_s
4187 pri:3,
4243 pri:3,
4308 pri:3,
4385 pri:3,
4443 pri:3,
4498 pri:3,
4569 pri:3,
4631 pri:3,
4693 pri
5293 pri:3, member in struct:sli4_generic_wqe_s::__anon104::sli4_els_request64_wqe_s::__anon106::__anon107::__anon108::sli4_fcp_treceive64_wqe_s::__anon111::__anon112::__anon113::__anon114::__anon115::__anon116::__anon117::__anon118::sli4_xmit_els_rsp64_wqe_s::sli4_fc_wcqe_s
5516 pri:3, member in struct:sli4_generic_wqe_s::__anon104::sli4_els_request64_wqe_s::__anon106::__anon107::__anon108::sli4_fcp_treceive64_wqe_s::__anon111::__anon112::__anon113::__anon114::__anon115::__anon116::__anon117::__anon118::sli4_xmit_els_rsp64_wqe_s::sli4_fc_optimized_write_data_cqe_s
[all...]

Completed in 517 milliseconds

12345678