Searched refs:busy (Results 51 - 75 of 118) sorted by relevance

12345

/freebsd-11-stable/sys/netpfil/ipfw/
H A Dip_dn_private.h159 /* if the upper half is busy doing something long,
160 * can set the busy flag and we will enqueue packets in
163 int busy; member in struct:dn_parms
/freebsd-11-stable/sys/dev/ixgbe/
H A Dix_txrx.c465 if (txr->busy == 0)
466 txr->busy = 1;
1022 txr->busy = 0;
1101 * would have been taken, so increment busy
1106 if ((processed == 0) && (txr->busy != IXGBE_QUEUE_HUNG))
1107 ++txr->busy;
1113 txr->busy = 1;
1116 txr->busy = 0;
H A Dixgbe.h309 int busy; member in struct:ix_queue
325 int busy; member in struct:tx_ring
H A Dif_ixv.c970 if (que->txr->busy)
974 * are uncleaned descriptors it increments busy. If
977 if (que->busy == IXGBE_QUEUE_HUNG) {
987 if (que->busy >= IXGBE_MAX_TX_BUSY) {
990 que->txr->busy = IXGBE_QUEUE_HUNG;
/freebsd-11-stable/sys/dev/esp/
H A Dncr53c9x.c602 li->busy = 0;
1261 * combinations that is not busy.
1299 if ((li->busy != 1) && li->used == 0) {
1316 if (li->untagged != NULL && (li->busy != 1)) {
1317 li->busy = 1;
1331 NCR_TRACE(("[%s %d:%d busy] \n", __func__,
1366 if (li->busy)
1367 li->busy = 0;
1370 li->busy = 2;
1508 li->busy
[all...]
H A Dncr53c9xvar.h172 uint8_t busy; member in struct:ncr53c9x_linfo
/freebsd-11-stable/sys/dev/sound/pcm/
H A Dchannel.c306 if (CHN_EMPTY(c, children.busy)) {
318 CHN_FOREACH(ch, c, children.busy) {
1170 CHN_INIT(c, children.busy);
2148 CHN_INSERT_HEAD(d, c, channels.pcm.busy);
2165 CHN_REMOVE(d, c, channels.pcm.busy);
2279 nrun = CHN_EMPTY(c, children.busy) ? 0 : 1;
2311 CHN_FOREACH(ch, c, children.busy) {
2383 CHN_FOREACH(ch, c, children.busy) {
2403 CHN_FOREACH(ch, c, children.busy) {
H A Dfeeder_eq.c586 CHN_FOREACH(c, d, channels.pcm.busy) {
645 CHN_FOREACH(c, d, channels.pcm.busy) {
H A Ddsp.c59 int busy, simplex; member in struct:dsp_cdevinfo
248 if (cdi->busy != 0)
254 cdi->busy = 1;
267 cdi->busy = 1;
295 cdi->busy = 0;
311 if (cdi->busy != 0) {
795 * Release clone busy state and unref it so the automatic
2632 ai->busy = 0;
2634 ai->busy = (ch->direction == PCMDIR_PLAY) ? OPEN_WRITE : OPEN_READ;
/freebsd-11-stable/sys/dev/ata/chipsets/
H A Data-promise.c124 int busy; member in struct:ata_promise_sx4
296 hpkt->busy = 0;
730 hpktp->busy = 0;
1252 if (hpktp->busy) {
1259 hpktp->busy = 1;
1278 hpktp->busy = 0;
/freebsd-11-stable/sys/dev/e1000/
H A Dif_em.c1013 if (txr->busy == EM_TX_IDLE)
1014 txr->busy = EM_TX_BUSY;
1042 * however, if busy the driver can queue the request rather
1117 if ((enq > 0) && (txr->busy == EM_TX_IDLE))
1118 txr->busy = EM_TX_BUSY;
2359 if (txr->busy == EM_TX_HUNG)
2361 if (txr->busy >= EM_TX_MAXTRIES)
2362 txr->busy = EM_TX_HUNG;
2466 txr->busy = EM_TX_IDLE;
2500 txr->busy
[all...]
H A Dif_em.h329 int busy; member in struct:tx_ring
/freebsd-11-stable/sys/dev/drm/
H A Di915_drm.h655 /** Handle of the buffer to check for busy */
658 /** Return busy status (1 if busy, 0 if idle) */
659 uint32_t busy; member in struct:drm_i915_gem_busy
/freebsd-11-stable/sys/dev/mly/
H A Dmlyvar.h353 MLYQ_COMMAND_QUEUE(busy, MLYQ_BUSY);
/freebsd-11-stable/sys/vm/
H A Dvm_map.h205 int busy; member in struct:vm_map
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_zcopy.c249 if (!ssk->tx_ring.rdma_inflight->busy) {
269 !ssk->tx_ring.rdma_inflight->busy);
540 rx_sa->busy++;
/freebsd-11-stable/sys/sparc64/sparc64/
H A Dmp_machdep.c725 u_int busy, busynack, mid; local
735 busy = IDR_BUSY << (2 * mid);
747 busy) != 0)
/freebsd-11-stable/sys/arm64/arm64/
H A Dmachdep.c411 cpu_idle(int busy) argument
415 if (!busy)
421 if (!busy)
/freebsd-11-stable/sys/dev/sound/midi/
H A Dsequencer.c150 int busy; member in struct:seq_softc
752 * Mark this device busy.
756 if (scp->busy) {
758 SEQ_DEBUG(2, printf("seq_open: unit %d is busy.\n", scp->unit));
805 scp->busy = 1;
837 if (scp->busy == 0)
851 scp->busy = 0;
/freebsd-11-stable/sys/kern/
H A Dsubr_bus.c128 int busy; /**< count of calls to device_busy() */ member in struct:device
1808 dev->busy = 0;
2599 * @brief Increment the busy counter for the device
2606 if (dev->busy == 0 && dev->parent)
2608 dev->busy++;
2614 * @brief Decrement the busy counter for the device
2619 if (dev->busy != 0 && dev->state != DS_BUSY &&
2621 panic("device_unbusy: called for non-busy device %s",
2623 dev->busy--;
2624 if (dev->busy
[all...]
/freebsd-11-stable/sys/arm/allwinner/
H A Daxp81x.c105 int busy; member in struct:axp81x_softc
/freebsd-11-stable/sys/dev/fdc/
H A Dfdc.c1612 int busy; local
1634 busy = 0;
1657 busy = 1;
1661 if (busy)
/freebsd-11-stable/sys/dev/usb/controller/
H A Dmusb_otg.h307 uint8_t busy:1; member in struct:musbotg_dma
413 uint8_t sc_ep0_busy; /* set if ep0 is busy */
/freebsd-11-stable/share/examples/drivers/
H A Dmake_device_driver.sh708 * simply REFUSE to detach if it's busy. What you do depends on
712 * are busy. You must cope with that possibility. Your hardware
/freebsd-11-stable/sys/dev/netmap/
H A Dnetmap_kern.h1212 int busy = 1, stopped; local
1221 busy = NM_ATOMIC_TEST_AND_SET(&kr->nr_busy);
1236 return unlikely(busy) ? NM_KR_BUSY : 0;
1239 if (!busy)

Completed in 334 milliseconds

12345