Home
last modified time | relevance | path

Searched refs:started (Results 1 – 25 of 402) sorted by relevance

12345678910>>...17

/linux/Documentation/watchdog/
H A Dwatchdog-parameters.rst33 Watchdog cannot be stopped once started
46 Watchdog cannot be stopped once started
55 Watchdog cannot be stopped once started
67 Watchdog cannot be stopped once started
94 Watchdog cannot be stopped once started
103 Watchdog cannot be stopped once started
112 Watchdog cannot be stopped once started
137 Watchdog cannot be stopped once started
152 Watchdog cannot be stopped once started
158 Watchdog cannot be stopped once started
[all …]
/linux/tools/virtio/
H A Dvhost_net_test.c36 long started; member
284 long started_before = vq->started; in run_tx_test()
289 while (vq->started < bufs && in run_tx_test()
290 (vq->started - vq->completed) < 1) { in run_tx_test()
293 dev->test_buf + vq->started, in run_tx_test()
298 ++vq->started; in run_tx_test()
306 if (vq->started >= bufs) in run_tx_test()
322 if (vq->completed == completed_before && vq->started == started_before) in run_tx_test()
326 assert(vq->started <= bufs); in run_tx_test()
339 spurious, vq->started, vq->completed); in run_tx_test()
[all …]
H A Dvirtio_test.c173 long started = 0, completed = 0, next_reset = reset_n; in run_test() local
189 started_before = started; in run_test()
195 while (started < bufs && in run_test()
196 (started - completed) < batch) { in run_test()
199 dev->buf + started, in run_test()
203 started > started_before) in run_test()
210 ++started; in run_test()
218 if (started >= bufs) in run_test()
251 started = completed; in run_test()
256 if (completed == completed_before && started == started_before) in run_test()
[all …]
/linux/drivers/net/wireless/ath/wil6210/
H A Dp2p.c180 u8 started = p2p->discovery_started; in wil_p2p_stop_discovery() local
193 return started; in wil_p2p_stop_discovery()
200 u8 started; in wil_p2p_cancel_listen() local
211 started = wil_p2p_stop_discovery(vif); in wil_p2p_cancel_listen()
215 if (!started) { in wil_p2p_cancel_listen()
238 u8 started; in wil_p2p_listen_expired() local
243 started = wil_p2p_stop_discovery(vif); in wil_p2p_listen_expired()
246 if (!started) in wil_p2p_listen_expired()
266 u8 started; in wil_p2p_search_expired() local
271 started = wil_p2p_stop_discovery(vif); in wil_p2p_search_expired()
[all …]
/linux/net/mac80211/
H A Doffchannel.c205 if (!roc->started) in ieee80211_end_finished_rocs()
244 roc->started = true; in ieee80211_handle_roc_started()
270 if (!roc->started) in ieee80211_hw_roc_start()
304 if (WARN_ON(roc->started)) in _ieee80211_start_next_roc()
336 tmp->started = true; in _ieee80211_start_next_roc()
347 tmp->started = true; in _ieee80211_start_next_roc()
404 if (WARN_ON_ONCE(roc->started)) in ieee80211_start_next_roc()
433 if (!roc->started) in ieee80211_reconfig_roc()
438 roc->started = false; in ieee80211_reconfig_roc()
464 if (!roc->started) { in __ieee80211_roc_work()
[all …]
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dtask_work_stress.c53 bool started[nthreads], started_del = false; in task_work_run() local
72 started[i] = false; in task_work_run()
80 started[i] = true; in task_work_run()
100 if (started[i]) in task_work_run()
/linux/drivers/firmware/imx/
H A Dsm-cpu.c39 int scmi_imx_cpu_started(u32 cpuid, bool *started) in scmi_imx_cpu_started() argument
44 if (!started) in scmi_imx_cpu_started()
47 return imx_cpu_ops->cpu_started(ph, cpuid, started); in scmi_imx_cpu_started()
/linux/tools/virtio/ringtest/
H A Dmain.c110 int started = 0; in run_guest() local
123 if (started < bufs && in run_guest()
124 started - completed < max_outstanding) { in run_guest()
127 ++started; in run_guest()
149 assert(started <= bufs); in run_guest()
/linux/arch/riscv/kvm/
H A Dvcpu_pmu.c358 if (fevent->started) in kvm_riscv_vcpu_pmu_incr_fw()
589 if (kvpmu->fw_event[fevent_code].started) { in kvm_riscv_vcpu_pmu_ctr_start()
594 kvpmu->fw_event[fevent_code].started = true; in kvm_riscv_vcpu_pmu_ctr_start()
597 if (unlikely(pmc->started)) { in kvm_riscv_vcpu_pmu_ctr_start()
603 pmc->started = true; in kvm_riscv_vcpu_pmu_ctr_start()
651 if (!kvpmu->fw_event[fevent_code].started) in kvm_riscv_vcpu_pmu_ctr_stop()
654 kvpmu->fw_event[fevent_code].started = false; in kvm_riscv_vcpu_pmu_ctr_stop()
656 if (pmc->started) { in kvm_riscv_vcpu_pmu_ctr_stop()
659 pmc->started = false; in kvm_riscv_vcpu_pmu_ctr_stop()
777 kvpmu->fw_event[event_code].started = true; in kvm_riscv_vcpu_pmu_ctr_cfg_match()
/linux/drivers/md/dm-vdo/
H A Dfunnel-workqueue.c64 struct completion *started; member
265 complete(queue->started); in work_queue_runner()
315 DECLARE_COMPLETION_ONSTACK(started); in make_simple_work_queue()
330 queue->started = &started; in make_simple_work_queue()
366 wait_for_completion(&started); in make_simple_work_queue()
/linux/drivers/firmware/arm_scmi/vendors/imx/
H A Dimx-sm-cpu.c140 bool *started) in scmi_imx_cpu_started() argument
147 if (!started) in scmi_imx_cpu_started()
150 *started = false; in scmi_imx_cpu_started()
166 *started = true; in scmi_imx_cpu_started()
/linux/tools/testing/selftests/sched_ext/
H A Dcyclic_kick_wait.c40 bool started; member
68 if (!worker->started) in join_worker()
150 workers[i].started = true; in run()
/linux/drivers/md/dm-vdo/indexer/
H A Dfunnel-requestqueue.c61 bool started; member
229 queue->started = true; in uds_make_request_queue()
271 if (queue->started) { in uds_request_queue_finish()
/linux/tools/testing/kunit/
H A Dkunit_parser.py222 started = False
226 if not started and KTAP_START.search(line):
231 started = True
233 elif not started and TAP_START.search(line):
237 started = True
239 elif started and KTAP_END.search(line):
242 elif started:
/linux/drivers/input/serio/
H A Dhyperv-keyboard.c97 bool started; member
150 if (kbd_dev->started) { in hv_kbd_on_receive()
298 kbd_dev->started = true; in hv_kbd_start()
309 kbd_dev->started = false; in hv_kbd_stop()
/linux/Documentation/driver-api/rapidio/
H A Drapidio.rst128 (a) Statically linked enumeration and discovery process can be started
134 that all discovering endpoints are started before the enumerating endpoint
143 (b) Statically linked enumeration and discovery process can be started by
147 started first by issuing a user-space command, after an enumeration is
148 completed a discovery process can be started on all remaining endpoints.
150 (c) Modular enumeration and discovery process can be started by a command from
152 process can be started by issuing a user-space command.
153 Similar to the option (b) above, an enumerator has to be started first.
155 (d) Modular enumeration and discovery process can be started by a module
159 When a network scan process is started it calls an enumeration or discovery
[all …]
/linux/tools/testing/selftests/hid/tests/
H A Dbase_device.py307 self.started = False
334 return self._kernel_is_ready.is_ready().is_ready and self.started
345 if not self.kernel_is_ready or not self.started:
399 self.started = True
402 self.started = False
/linux/drivers/net/ethernet/amd/xgbe/
H A Dxgbe-i2c.c330 if (!pdata->i2c.started) in xgbe_i2c_stop()
335 pdata->i2c.started = 0; in xgbe_i2c_stop()
351 if (pdata->i2c.started) in xgbe_i2c_start()
369 pdata->i2c.started = 1; in xgbe_i2c_start()
/linux/include/linux/firmware/imx/
H A Dsm.h48 int scmi_imx_cpu_started(u32 cpuid, bool *started);
57 static inline int scmi_imx_cpu_started(u32 cpuid, bool *started) in scmi_imx_cpu_started()
55 scmi_imx_cpu_started(u32 cpuid,bool * started) scmi_imx_cpu_started() argument
/linux/drivers/gpu/drm/i915/gt/uc/
H A Dintel_guc_log.c522 log->relay.started = false; in intel_guc_log_init_early()
760 if (log->relay.started) in intel_guc_log_relay_start()
770 log->relay.started = true; in intel_guc_log_relay_start()
780 if (!log->relay.started) in intel_guc_log_relay_flush()
806 if (!log->relay.started) in guc_log_relay_stop()
813 log->relay.started = false; in guc_log_relay_stop()
829 if (log->relay.started) in intel_guc_log_handle_flush_event()
/linux/Documentation/networking/
H A Dcan_ucan_protocol.rst175 stopped START started
176 started STOP or RESET stopped
178 started RESTART started
308 the driver is always interested. Hence, the device is always started with
317 - Bus OFF recovery is started by ``UCAN_COMMAND_RESTART``
/linux/arch/arm/common/
H A DbL_switcher.c263 struct completion started; member
278 complete(&t->started); in bL_switcher_thread()
578 init_completion(&t->started); in bL_switcher_enable()
638 init_completion(&t->started); in bL_switcher_disable()
642 wait_for_completion(&t->started); in bL_switcher_disable()
/linux/drivers/media/platform/raspberrypi/pisp_be/
H A Dpisp_be.c226 u8 done, started; member
631 u8 started, done; in pispbe_isr() local
641 started = (uint8_t)(u >> 8); in pispbe_isr()
654 if (pispbe->started != started) { in pispbe_isr()
655 pispbe->started++; in pispbe_isr()
668 if (pispbe->done != done || pispbe->started != started) { in pispbe_isr()
671 pispbe->done, done, pispbe->started, started); in pispbe_isr()
672 pispbe->started = started; in pispbe_isr()
1661 pispbe->started = (uint8_t)(u >> 8); in pispbe_hw_init()
1665 if (u != 0 || pispbe->done != pispbe->started) { in pispbe_hw_init()
/linux/drivers/devfreq/
H A Dtegra30-devfreq.c198 bool started; member
543 if (!tegra->devfreq->profile->polling_ms || !tegra->started) in tegra_actmon_resume()
598 if (!tegra->started) { in tegra_actmon_start()
599 tegra->started = true; in tegra_actmon_start()
603 tegra->started = false; in tegra_actmon_start()
611 if (!tegra->devfreq->profile->polling_ms || !tegra->started) in tegra_actmon_pause()
629 tegra->started = false; in tegra_actmon_stop()
/linux/io_uring/
H A Dsqpoll.c175 bool started; member
190 if (!ist->started) in io_sq_update_worktime()
192 ist->started = false; in io_sq_update_worktime()
198 if (ist->started) in io_sq_start_worktime()
200 ist->started = true; in io_sq_start_worktime()

12345678910>>...17