| /drivers/comedi/drivers/ |
| A D | comedi_isadma.c | 63 int stalled = 0; in comedi_isadma_disable_on_sample() local 80 stalled++; in comedi_isadma_disable_on_sample() 81 if (stalled > 10) in comedi_isadma_disable_on_sample() 85 stalled = 0; in comedi_isadma_disable_on_sample()
|
| /drivers/block/drbd/ |
| A D | drbd_proc.c | 96 int stalled = 0; in drbd_syncer_progress() local 144 stalled = 1; in drbd_syncer_progress() 187 seq_printf(seq, " K/sec%s\n", stalled ? " (stalled)" : ""); in drbd_syncer_progress()
|
| /drivers/usb/gadget/udc/aspeed-vhub/ |
| A D | dev.c | 77 if (ep && (ep->epn.stalled || ep->epn.wedged)) { in ast_vhub_dev_enable() 78 ep->epn.stalled = false; in ast_vhub_dev_enable() 160 ep->epn.stalled = is_set; in ast_vhub_ep_feature() 198 if (ep->epn.stalled) in ast_vhub_ep_status()
|
| A D | epn.c | 510 if (ep->epn.stalled || ep->epn.wedged) in ast_vhub_update_epn_stall() 516 if (!ep->epn.stalled && !ep->epn.wedged) in ast_vhub_update_epn_stall() 544 ep->epn.stalled = halt; in ast_vhub_set_halt_and_wedge() 648 ep->epn.stalled = false; in ast_vhub_epn_enable()
|
| A D | vhub.h | 331 bool stalled : 1; member
|
| /drivers/net/xen-netback/ |
| A D | rx.c | 524 return !queue->stalled && in xenvif_rx_queue_stalled() 534 return queue->stalled && xenvif_rx_queue_slots(queue) >= needed; in xenvif_rx_queue_ready() 599 queue->stalled = true; in xenvif_queue_carrier_off() 615 queue->stalled = false; in xenvif_queue_carrier_on()
|
| A D | common.h | 204 bool stalled; member
|
| A D | interface.c | 728 queue->stalled = true; in xenvif_connect_data()
|
| /drivers/spi/ |
| A D | spi-xilinx.c | 274 int stalled; in xilinx_spi_txrx_bufs() local 303 stalled = 10; in xilinx_spi_txrx_bufs() 305 if (rx_words == n_words && !(stalled--) && in xilinx_spi_txrx_bufs()
|
| /drivers/gpu/drm/imagination/ |
| A D | pvr_power.c | 191 bool stalled; in pvr_watchdog_worker() local 202 stalled = pvr_watchdog_kccb_stalled(pvr_dev); in pvr_watchdog_worker() 204 if (stalled) { in pvr_watchdog_worker()
|
| /drivers/gpu/drm/i915/gt/ |
| A D | intel_engine.h | 244 bool stalled) in __intel_engine_reset() argument 247 engine->reset.rewind(engine, stalled); in __intel_engine_reset()
|
| A D | mock_engine.c | 288 static void mock_reset_rewind(struct intel_engine_cs *engine, bool stalled) in mock_reset_rewind() argument 290 GEM_BUG_ON(stalled); in mock_reset_rewind()
|
| A D | intel_engine_types.h | 516 void (*rewind)(struct intel_engine_cs *engine, bool stalled);
|
| A D | intel_ring_submission.c | 387 static void reset_rewind(struct intel_engine_cs *engine, bool stalled) in reset_rewind() argument 442 __i915_request_reset(rq, stalled); in reset_rewind()
|
| A D | intel_execlists_submission.c | 3018 execlists_reset_active(struct intel_engine_cs *engine, bool stalled) in execlists_reset_active() argument 3078 __i915_request_reset(rq, stalled); in execlists_reset_active() 3095 static void execlists_reset_csb(struct intel_engine_cs *engine, bool stalled) in execlists_reset_csb() argument 3111 static void execlists_reset_rewind(struct intel_engine_cs *engine, bool stalled) in execlists_reset_rewind() argument 3118 execlists_reset_csb(engine, stalled); in execlists_reset_rewind()
|
| /drivers/gpu/drm/i915/gt/uc/ |
| A D | intel_uc.h | 49 void intel_uc_reset(struct intel_uc *uc, intel_engine_mask_t stalled);
|
| A D | intel_uc.c | 624 void intel_uc_reset(struct intel_uc *uc, intel_engine_mask_t stalled) in intel_uc_reset() argument 630 intel_guc_submission_reset(guc, stalled); in intel_uc_reset()
|
| A D | intel_guc.h | 536 void intel_guc_submission_reset(struct intel_guc *guc, intel_engine_mask_t stalled);
|
| A D | intel_guc_submission.c | 1817 static void guc_rewind_nop(struct intel_engine_cs *engine, bool stalled) in guc_rewind_nop() argument 1857 static void __guc_reset_context(struct intel_context *ce, intel_engine_mask_t stalled) in __guc_reset_context() argument 1895 guilty = stalled & ce->engine->mask; in __guc_reset_context() 1927 void intel_guc_submission_reset(struct intel_guc *guc, intel_engine_mask_t stalled) in intel_guc_submission_reset() argument 1947 __guc_reset_context(ce, stalled); in intel_guc_submission_reset()
|
| /drivers/net/ethernet/freescale/fman/ |
| A D | Kconfig | 39 likelihood of stalled FMAN packet processing, especially under
|
| /drivers/usb/class/ |
| A D | cdc-acm.c | 522 bool stalled = false; in acm_read_bulk_callback() local 535 stalled = true; in acm_read_bulk_callback() 575 if (stopped || stalled || cooldown) { in acm_read_bulk_callback() 576 if (stalled) in acm_read_bulk_callback()
|
| /drivers/scsi/be2iscsi/ |
| A D | be_cmds.h | 300 u8 stalled; /* dword 1 */ member 587 u8 stalled; /* dword 1 */ member
|
| /drivers/gpu/drm/msm/adreno/ |
| A D | a5xx_gpu.c | 1575 bool stalled = !!(gpu_read(gpu, REG_A5XX_RBBM_STATUS3) & BIT(24)); in a5xx_gpu_state_get() local 1593 if (!stalled) in a5xx_gpu_state_get()
|
| A D | a6xx_gpu_state.c | 1572 bool stalled = !!(gpu_read(gpu, REG_A6XX_RBBM_STATUS3) & in a6xx_gpu_state_get() local 1609 if (!stalled && !gpu->needs_hw_init && in a6xx_gpu_state_get()
|
| /drivers/net/ethernet/emulex/benet/ |
| A D | be_cmds.h | 375 u8 stalled; /* dword 1*/ member 466 u8 stalled; /* dword 1*/ member
|