Searched refs:work (Results 101 - 125 of 270) sorted by relevance

1234567891011

/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dsched.h83 struct work_struct *work; /* current work struct, if set */ member in struct:task_struct
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/ipoib/
H A Dipoib_cm.c266 * RTS first. This work-around leaves a window where a QP has
1189 static void ipoib_cm_tx_start(struct work_struct *work) argument
1191 struct ipoib_dev_priv *priv = container_of(work, struct ipoib_dev_priv,
1233 static void ipoib_cm_tx_reap(struct work_struct *work) argument
1235 struct ipoib_dev_priv *priv = container_of(work, struct ipoib_dev_priv,
1253 static void ipoib_cm_mb_reap(struct work_struct *work) argument
1255 struct ipoib_dev_priv *priv = container_of(work, struct ipoib_dev_priv,
1309 static void ipoib_cm_rx_reap(struct work_struct *work) argument
1311 ipoib_cm_free_rx_reap_list(container_of(work, struct ipoib_dev_priv,
1315 static void ipoib_cm_stale_task(struct work_struct *work) argument
[all...]
/freebsd-11-stable/contrib/gcclibs/libgomp/
H A DMakefile.am33 loop.c ordered.c parallel.c sections.c single.c team.c work.c \
/freebsd-11-stable/contrib/bmake/mk/
H A Dauto.dep.mk28 # However suffix rules do not work with something like .o.d so we
H A Djava.mk78 # this will work with other BSD make's
H A Dauto.obj.mk21 # We repeat the mkdir -p a number of times to try and work around this.
/freebsd-11-stable/contrib/ldns/drill/
H A DMakefile.in44 OBJ=drill.o drill_util.o error.o root.o work.o chasetrace.o dnssec.o securetrace.o
/freebsd-11-stable/share/mk/
H A Dauto.obj.mk22 # We repeat the mkdir -p a number of times to try and work around this.
/freebsd-11-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Drep-cache-db.sql7 * distributed with this work for additional information
/freebsd-11-stable/lib/libc/mips/string/
H A Dbcopy.S120 sltu AT,SRCREG,a3 # any work to do?
214 beq t0,zero,2f # any work to do?
/freebsd-11-stable/sys/mips/mips/
H A Dbcopy.S109 sltu AT,SRCREG,a3 # any work to do?
203 beq t0,zero,2f # any work to do?
/freebsd-11-stable/contrib/bmake/mk/sys/
H A DAIX.mk8 # This needs a lot of work yet...
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/
H A Dib_mad_rmpp.c250 static void recv_timeout_handler(struct work_struct *work) argument
253 container_of(work, struct mad_rmpp_recv, timeout_work.work);
272 static void recv_cleanup_handler(struct work_struct *work) argument
275 container_of(work, struct mad_rmpp_recv, cleanup_work.work);
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Dbss.c202 struct wpa_radio_work *work; local
205 work = radio_work_pending(wpa_s, "sme-connect");
206 if (!work)
207 work = radio_work_pending(wpa_s, "connect");
208 if (!work)
211 cwork = work->ctx;
216 "Update BSS pointer for the pending connect radio work");
/freebsd-11-stable/sys/dev/mlx4/mlx4_ib/
H A Dmlx4_ib_mad.c1078 /* already in work queue from mlx4_ib_event queueing
1149 void handle_port_mgmt_change_event(struct work_struct *work) argument
1151 struct ib_event_work *ew = container_of(work, struct ib_event_work, work);
1269 queue_work(ctx->wq, &ctx->work);
1692 static void mlx4_ib_tunnel_comp_worker(struct work_struct *work) argument
1698 ctx = container_of(work, struct mlx4_ib_demux_pv_ctx, work);
1858 static void mlx4_ib_sqp_comp_worker(struct work_struct *work) argument
1866 ctx = container_of(work, struc
2107 mlx4_ib_tunnels_update_work(struct work_struct *work) argument
[all...]
/freebsd-11-stable/sys/dev/drm2/i915/
H A Di915_debug.c300 struct intel_unpin_work *work; local
303 work = crtc->unpin_work;
304 if (work == NULL) {
308 if (atomic_read(&work->pending) < INTEL_FLIP_COMPLETE) {
315 if (work->enable_stall_check)
319 seq_printf(m, "%d prepares\n", atomic_read(&work->pending));
321 if (work->old_fb_obj) {
322 struct drm_i915_gem_object *obj = work->old_fb_obj;
326 if (work->pending_flip_obj) {
327 struct drm_i915_gem_object *obj = work
[all...]
H A Dintel_display.c7055 struct intel_unpin_work *work; local
7058 work = intel_crtc->unpin_work;
7062 if (work) {
7063 taskqueue_cancel(dev_priv->wq, &work->work, NULL);
7064 taskqueue_drain(dev_priv->wq, &work->work);
7065 free(work, DRM_MEM_KMS);
7075 struct intel_unpin_work *work = local
7077 struct drm_device *dev = work
7098 struct intel_unpin_work *work; local
7431 struct intel_unpin_work *work; local
[all...]
/freebsd-11-stable/sys/dev/mvs/
H A Dmvs.c469 uint64_t work; local
472 work = ch->dma.workrq_bus;
473 ATA_OUTL(ch->r_mem, EDMA_REQQBAH, work >> 32);
474 ATA_OUTL(ch->r_mem, EDMA_REQQIP, work & 0xffffffff);
475 ATA_OUTL(ch->r_mem, EDMA_REQQOP, work & 0xffffffff);
480 work = ch->dma.workrp_bus;
481 ATA_OUTL(ch->r_mem, EDMA_RESQBAH, work >> 32);
482 ATA_OUTL(ch->r_mem, EDMA_RESQIP, work & 0xffffffff);
483 ATA_OUTL(ch->r_mem, EDMA_RESQOP, work & 0xffffffff);
665 uint32_t work; local
683 uint32_t work; local
[all...]
/freebsd-11-stable/sys/dev/ahci/
H A Dahci.c928 uint64_t work; local
932 /* Setup work areas */
933 work = ch->dma.work_bus + AHCI_CL_OFFSET;
934 ATA_OUTL(ch->r_mem, AHCI_P_CLB, work & 0xffffffff);
935 ATA_OUTL(ch->r_mem, AHCI_P_CLBU, work >> 32);
936 work = ch->dma.rfis_bus;
937 ATA_OUTL(ch->r_mem, AHCI_P_FB, work & 0xffffffff);
938 ATA_OUTL(ch->r_mem, AHCI_P_FBU, work >> 32);
1039 error = bus_dmamem_alloc(ch->dma.work_tag, (void **)&ch->dma.work,
1043 error = bus_dmamap_load(ch->dma.work_tag, ch->dma.work_map, ch->dma.work,
1307 uint32_t work; local
[all...]
/freebsd-11-stable/sys/dev/mlx5/mlx5_ib/
H A Dmlx5_ib_mr.c277 queue_work(cache->wq, &ent->work);
290 * the garbage collection work to try to run in next cycle,
297 queue_work(cache->wq, &ent->work);
304 static void delayed_cache_work_func(struct work_struct *work) argument
308 ent = container_of(work, struct mlx5_cache_ent, dwork.work);
312 static void cache_work_func(struct work_struct *work) argument
316 ent = container_of(work, struct mlx5_cache_ent, work);
347 queue_work(cache->wq, &ent->work);
[all...]
/freebsd-11-stable/sys/dev/liquidio/base/
H A Dlio_request_manager.c169 TIMEOUT_TASK_INIT(db_tq->tq, &db_tq->work, 0, lio_check_db_timeout,
177 taskqueue_enqueue_timeout(db_tq->tq, &db_tq->work, 1);
204 &oct->check_db_tq[iq_no].work,
207 &oct->check_db_tq[iq_no].work);
589 taskqueue_enqueue_timeout(db_tq->tq, &db_tq->work,
/freebsd-11-stable/sys/dev/mlx4/mlx4_core/
H A Dmlx4_resource_tracker.c5234 struct mlx4_vf_immed_vlan_work *work = local
5235 container_of(_work, struct mlx4_vf_immed_vlan_work, work);
5238 struct mlx4_dev *dev = &work->priv->dev;
5240 &work->priv->mfunc.master.res_tracker;
5242 &tracker->slave_list[work->slave].res_list[RES_QP];
5268 work->slave);
5275 if (work->flags & MLX4_VF_IMMED_VLAN_FLAG_LINK_DISABLE) /* block all */
5282 else if (!work->vlan_id)
5285 else if (work->vlan_proto == htons(ETH_P_8021AD))
5301 if (qp->com.owner == work
[all...]
/freebsd-11-stable/sys/contrib/zlib/test/
H A Dinfcover.c519 /* allocate work areas */
621 unsigned short lens[16], work[16]; local
631 ret = inflate_table(DISTS, lens, 16, &next, &bits, work);
635 ret = inflate_table(DISTS, lens, 16, &next, &bits, work);
/freebsd-11-stable/contrib/ncurses/ncurses/win32con/
H A Dwin_driver.c1386 MEVENT work; local
1402 memset(&work, 0, sizeof(work));
1406 work.bstate |= (mmask_t) decode_mouse(TCB, sp->_drv_mouse_new_buttons);
1411 work.bstate |= (mmask_t) (decode_mouse(TCB,
1418 work.x = mer.dwMousePosition.X;
1419 work.y = mer.dwMousePosition.Y - AdjustY(p);
1421 sp->_drv_mouse_fifo[sp->_drv_mouse_tail] = work;
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-dfa.h401 uint64_t wq_ptr : 36; /**< 0 for no work queue entry creation */
497 #else // NOTE: little endian mode probably won't work
512 #else // NOTE: little endian mode probably won't work
691 * Submit work to the DFA units for processing
712 * @param work Work queue entry to submit when DFA completes. Can be NULL.
716 cvmx_dfa_result0_t *result, int max_results, cvmx_wqe_t *work)
755 command.s.wq_ptr = cvmx_ptr_to_phys(work);
714 cvmx_dfa_submit(const cvmx_dfa_graph_t *graph, int start_node, void *input, int input_length, int use_gather, int is_little_endian, cvmx_dfa_result0_t *result, int max_results, cvmx_wqe_t *work) argument

Completed in 247 milliseconds

1234567891011