Searched defs:done (Results 201 - 225 of 234) sorted by relevance

12345678910

/illumos-gate/usr/src/uts/sun/io/
H A Dfd.c51 * handles a couple of other interrupts. When it gets its job done,
56 * 4. Nearly all locking is done on a lower level MUTEX_DRIVER
59 * There is nearly no locking done of the high level MUTEX_DRIVER
1691 * will already be done on return (start sleeps).
2942 * have already been done.
3072 * it sleeps until the operation is done *within fdstart* - so that
3073 * when fdstart returns, the operation is already done.
3394 (C, "fdstart done: b_resid %lu, b_count %lu, csb_rlen %d\n",
3447 * Zero out the current cookie. This is done to ensure that
3529 FDERRPRINT(FDEP_L1, FDEM_SDMA, (C, "fdstart_dma: done\
4162 uint_t done = 0; local
[all...]
/illumos-gate/usr/src/uts/common/os/
H A Dstreamio.c682 /* Check if an I_LINK was ever done on this stream */
832 * messages after it has done a qprocsoff.
855 * messages after it has done a qprocsoff.
871 * messages after it has done a qprocsoff.
1017 * messages after it has done a qprocsoff.
1197 int done = 0; local
1211 * If a read(fd,buf,0) has been done, there is no
1225 uiop->uio_fmode, -1, &done)) != 0 || done) {
1227 "strread error or done
2826 int done = 0; local
3202 int done = 0; local
6584 int done = 0; local
7140 int done = 0; local
7841 int done = 0; local
8029 int done = 0; local
[all...]
H A Dstrsubr.c146 * Most of the streams scheduling is done via task queues. Task queues may fail
1242 * successful open should have done qprocson()
1354 * QINSERVICE is reset (when the service procedure is done)
1403 * This only needs to be done for non-PERMOD perimeters since
1785 * number not >= devcnt is done to avoid problems with
1861 * that arrived before link_addpassthru() was done. To avoid
2816 * Range checking has already been done; simply try
3000 int *done)
3027 *done = 0;
3039 *done
2999 strwaitq(stdata_t *stp, int flag, ssize_t count, int fmode, clock_t timout, int *done) argument
[all...]
/illumos-gate/usr/src/uts/common/io/e1000g/
H A De1000g_main.c2066 * rings are flushed before we do anything else. This must be done
2177 boolean_t done; local
2185 done = IS_QUEUE_EMPTY(&tx_ring->used_list);
2188 if (done)
2194 return (done);
2201 boolean_t done; local
2207 done = (Adapter->pending_rx_count == 0);
2209 if (done)
2215 return (done);
2670 goto done;
[all...]
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsocktpi.c621 * and no listen() has been done.
630 * and no listen() has been done.
708 goto done;
786 goto done;
793 goto done;
798 goto done;
804 goto done;
815 goto done;
829 goto done;
838 goto done;
4512 int done = 0; local
[all...]
/illumos-gate/usr/src/uts/i86pc/os/
H A Dstartup.c561 * release_bootstrap() will free them when we're completely done with
637 * done in startup_memlist(). The value of NUM_ALLOCATIONS needs to
836 PRM_POINT("startup_init() done");
1385 PRM_POINT("kphysm_init() done");
1396 PRM_POINT("startup_memlist() done");
1565 PRM_POINT("xen_relocate_start_info() done");
1575 PRM_POINT("startup_kmem() done");
1755 * Modifies the device tree, so this must be done after
1795 PRM_POINT("startup_modules: done");
1803 PRM_POINT("startup_modules() done");
2963 int done = 0; local
[all...]
/illumos-gate/usr/src/uts/common/io/igb/
H A Digb_main.c1747 boolean_t done; local
1754 * Check the counter tbd_free to see if transmission is done.
1762 done = B_TRUE;
1765 done = done &&
1769 if (done)
1775 return (done);
1784 boolean_t done; local
1798 done = (igb->rcb_pending == 0);
1800 if (done)
[all...]
/illumos-gate/usr/src/uts/common/io/ixgbe/
H A Dixgbe_main.c1729 boolean_t done; local
1736 * Check the counter tbd_free to see if transmission is done.
1744 done = B_TRUE;
1747 done = done &&
1751 if (done)
1757 return (done);
1766 boolean_t done = B_TRUE; local
1780 done = (ixgbe->rcb_pending == 0);
1782 if (done)
[all...]
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Ddmu_send.c198 * since free block aggregation can only be done for blocks of the
271 * the stream, since aggregation can't be done across operations
393 * push it out, since free block aggregation can only be done for
1791 * done.
1795 boolean_t done; member in struct:receive_writer_arg
1877 int done = 0; local
1885 while (done < len) {
1889 (char *)buf + done, len - done,
1893 if (resid == len - done) {
[all...]
H A Dzio.c82 * pathologies and should only be done in the context of performance analysis.
84 * enough analysis has been done to determine optimal values.
521 void *data, uint64_t lsize, uint64_t psize, zio_done_func_t *done,
574 zio->io_done = done;
617 zio_null(zio_t *pio, spa_t *spa, vdev_t *vd, zio_done_func_t *done, argument
622 zio = zio_create(pio, spa, 0, NULL, NULL, 0, 0, done, private,
630 zio_root(spa_t *spa, zio_done_func_t *done, void *private, enum zio_flag flags) argument
632 return (zio_null(NULL, spa, NULL, done, private, flags));
719 void *data, uint64_t size, zio_done_func_t *done, void *private,
727 data, size, size, done, privat
520 zio_create(zio_t *pio, spa_t *spa, uint64_t txg, const blkptr_t *bp, void *data, uint64_t lsize, uint64_t psize, zio_done_func_t *done, void *private, zio_type_t type, zio_priority_t priority, enum zio_flag flags, vdev_t *vd, uint64_t offset, const zbookmark_phys_t *zb, enum zio_stage stage, enum zio_stage pipeline) argument
718 zio_read(zio_t *pio, spa_t *spa, const blkptr_t *bp, void *data, uint64_t size, zio_done_func_t *done, void *private, zio_priority_t priority, enum zio_flag flags, const zbookmark_phys_t *zb) argument
736 zio_write(zio_t *pio, spa_t *spa, uint64_t txg, blkptr_t *bp, void *data, uint64_t lsize, uint64_t psize, const zio_prop_t *zp, zio_done_func_t *ready, zio_done_func_t *children_ready, zio_done_func_t *physdone, zio_done_func_t *done, void *private, zio_priority_t priority, enum zio_flag flags, const zbookmark_phys_t *zb) argument
778 zio_rewrite(zio_t *pio, spa_t *spa, uint64_t txg, blkptr_t *bp, void *data, uint64_t size, zio_done_func_t *done, void *private, zio_priority_t priority, enum zio_flag flags, zbookmark_phys_t *zb) argument
871 zio_claim(zio_t *pio, spa_t *spa, uint64_t txg, const blkptr_t *bp, zio_done_func_t *done, void *private, enum zio_flag flags) argument
906 zio_ioctl(zio_t *pio, spa_t *spa, vdev_t *vd, int cmd, zio_done_func_t *done, void *private, enum zio_flag flags) argument
930 zio_read_phys(zio_t *pio, vdev_t *vd, uint64_t offset, uint64_t size, void *data, int checksum, zio_done_func_t *done, void *private, zio_priority_t priority, enum zio_flag flags, boolean_t labels) argument
951 zio_write_phys(zio_t *pio, vdev_t *vd, uint64_t offset, uint64_t size, void *data, int checksum, zio_done_func_t *done, void *private, zio_priority_t priority, enum zio_flag flags, boolean_t labels) argument
987 zio_vdev_child_io(zio_t *pio, blkptr_t *bp, vdev_t *vd, uint64_t offset, void *data, uint64_t size, int type, zio_priority_t priority, enum zio_flag flags, zio_done_func_t *done, void *private) argument
1053 zio_vdev_delegated_io(vdev_t *vd, uint64_t offset, void *data, uint64_t size, int type, zio_priority_t priority, enum zio_flag flags, zio_done_func_t *done, void *private) argument
[all...]
/illumos-gate/usr/src/cmd/savecore/
H A Dsavecore.c702 pgcnt_t done; member in struct:stream
922 s->done = 0;
952 if (++s->done >= s->npages) {
959 s->curpage = s->pagenum + s->done;
1049 s->done = 0;
1067 if (++s->done >= s->npages) {
1074 s->curpage = s->pagenum + s->done;
1093 (void) printf("\r%2d:%02d %3d%% done", sec / 60, sec % 60,
1978 (void) printf("%d:%02d dump %s is done\n",
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/mpxu/frudr/
H A Dpiclfrudr.c1713 * This needs to be done before the .conf file is parsed because
1749 int done = B_FALSE; local
1828 done = B_TRUE;
1834 if (done == B_FALSE) {
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dmap.c3811 ** child is done with it.
4771 register bool done; local
4870 done = isascii(*p) && isspace(*p);
4871 while (*p != '\0' && !done)
4882 done = isascii(*p) && isspace(*p);
7801 ** child is done with it.
/illumos-gate/usr/src/uts/common/pcmcia/nexus/
H A Dpcmcia.c373 int count, done, i; local
427 * we can't be done. We scan the list of sockets doing the
428 * check. if we aren't done, wait for a condition variable to
434 for (count = 0, done = 0;
435 done == 0 && count < max(pcmcia_num_sockets, 16);
437 done = 1;
449 done = 0;
453 /* only wait if we aren't done with this set */
454 if (!done) {
628 cmn_err(CE_CONT, "pcmcia: system init done fo
4154 int done, result; local
4284 int i, f, tries, done; local
4918 int done; local
5324 int done, remhandler = 0; local
[all...]
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/qlge/
H A Dqlge.c459 * calculation, needed to be done by driver
1882 uint32_t done; local
2163 done = 0;
2166 while (!done) {
2171 done = (uint32_t)(le64_to_cpu(*curr_ial_ptr) & 1);
7353 QL_PRINT(DBG_INIT, ("ql_fm_init(%d) done\n",
7381 QL_PRINT(DBG_INIT, ("ql_fm_fini(%d) done\n",
7431 QL_PRINT(DBG_INIT, ("ql_attach(%d): fma init done\n",
7480 QL_PRINT(DBG_INIT, ("%s(%d): Allocate macinfo structure done\n",
7499 QL_PRINT(DBG_GLD, ("ql_attach(%d): pci_config_setup done\
7719 int done = 0; local
[all...]
/illumos-gate/usr/src/uts/common/io/fibre-channel/impl/
H A Dfp.c1036 * This is done _before_ setting up the job thread so we can avoid
1316 * Further all the discovery is done in handled in callback mode
1562 * modunloaded even tho the job thread isn't done executing.
2003 * Init pkt_pd with the given pointer; this must be done _before_
2344 * we are done.
4042 * is done when the PLOGI is successful. In some other scenarios
4316 * are almost done with handling the state
4879 uint32_t done; local
4891 done = 0;
4909 done
[all...]
/illumos-gate/usr/src/uts/common/io/rsm/
H A Drsm.c100 * actual setting up of the mapping is done by devmap_devmem_setup(for
109 * segment for which mapping has been done.
117 * done by devmap_umem_remap. The trash/dummy page is a kernel page,
209 * space(the mmap is done by the RSMAPI library). During the mmap processing
224 * processing cannot be done in the interrupt context because it might
658 "rsm: _init done\n"));
711 DBG_PRINTF((RSM_KERNEL_AGENT, RSM_DEBUG_VERBOSE, "_fini done\n"));
912 DBG_PRINTF((category, RSM_DEBUG_VERBOSE, "rsm_attach done\n"));
1021 DBG_PRINTF((category, RSM_DEBUG_VERBOSE, "rsm_detach done\n"));
1052 DBG_PRINTF((category, RSM_DEBUG_VERBOSE, "rsm_info done\
4131 int done = 1; /* indicate all SUSPENDS have been acked */ local
[all...]
/illumos-gate/usr/src/uts/common/io/scsi/adapters/scsi_vhci/
H A Dscsi_vhci.c375 * the system is done with us as a driver, so clean up
936 * mechanism to work and opens() done soon after boot to
2702 goto done;
2717 goto done;
2770 done:
3692 goto done;
3715 goto done;
3746 goto done;
3749 done:
3820 goto done;
6279 uint_t count, done; local
6362 uint_t count, done; local
[all...]
/illumos-gate/usr/src/uts/sun4u/starcat/io/
H A Ddman.c944 * this is done because when dman opens itself via DMAN_INT_PATH,
1372 * done. See man_open_ctl for mutex lock/synchronization info.
1483 * until its done.
2403 goto done;
2461 done:
4060 * Linkchecking needs to be done on IP streams. For domain, all
4087 * until we are done processing all work items. Note that some of these
5143 goto done;
5183 done:
5690 * that are normally done fro
5725 int done = 0; local
[all...]
/illumos-gate/usr/src/uts/sun/io/scsi/adapters/
H A Dfas.c987 * start the watchdog if it hasn't been done yet
2481 done:
2767 * prepare packet for transport if this hasn't been done yet and
2775 goto done;
2810 goto done;
2878 goto done;
2895 done:
3480 * if we haven't done so yet
3980 * data pointer initialization has already been done
6615 * the current polled command, we're done
8441 int done = 0; local
[all...]
/illumos-gate/usr/src/uts/i86pc/sys/
H A Dapic.h761 boolean_t done; member in struct:ioapic_reprogram_data
/illumos-gate/usr/src/cmd/mdb/common/modules/genunix/
H A Dkmem.c1040 dprintf(("cache_full list done\n"));
2178 /* Everything's done and checked; print them out */
3418 * have already been visited; we're done.
3442 int done; local
3451 done = (root->vn_sibling == NULL && root->vn_parent == NULL);
3454 if (done) {
/illumos-gate/usr/src/uts/common/io/bnxe/577xx/drivers/common/ecore/
H A Decore_sp_verbs.c2150 /* Now, when we are done with the ramrod - clean up the registry */
2277 * then user want to wait until the last command is done.
2918 BOOL done; /* set to TRUE, when the command has been handled, member in struct:ecore_pending_mcast_cmd
2970 new_cmd->done = FALSE;
3200 /* if no more MACs to configure - we are done */
3202 cmd_pos->done = TRUE;
3230 /* If we cleared all bins - we are done */
3232 cmd_pos->done = TRUE;
3243 /* If o->set_restore returned -1 we are done */
3244 cmd_pos->done
[all...]
/illumos-gate/usr/src/uts/common/io/scsi/targets/
H A Dst.c1422 ST_DEBUG(0, st_label, SCSI_DEBUG, "st_detach done\n");
4158 * If we haven't done/checked reservation on the tape unit
5346 * As the user may have opened and then done a
5991 * of media, and we're already there, we're done.
6426 * Command start && done functions
6437 * st_done_and_mutex_exit() to start the next command when previous is done.
7343 * If we've done this density before,
7915 * knows nothing was done.
8559 /* If current block size is the same as requested were done */
9265 goto done;
11798 int64_t done; local
[all...]
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dip.c305 * uniqueness check also done atomically.
328 * This is only done when ills are added or removed from IPMP groups.
535 * is done when the conn is inserted into the drain list (conn_drain_insert())
1285 * But this will be done only if icmp_accept_messages_in_clear is
1717 /* Note: mp already consumed and ip_drop_packet done */
1744 * packet, only basic checks on IP header will be done; otherwise, verify
2039 * done.
2448 * was implicitely done above. We've checked that the
2549 done:
2812 /* Note: mp already consumed and ip_drop_packet done */
6317 boolean_t done = B_FALSE; local
6437 boolean_t done = B_FALSE; local
[all...]

Completed in 258 milliseconds

12345678910