| /linux/tools/virtio/ |
| H A D | vhost_net_test.c | 36 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 D | virtio_test.c | 173 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 D | p2p.c | 180 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 D | offchannel.c | 205 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 …]
|
| H A D | driver-ops.c | 20 if (WARN_ON(local->started)) in drv_start() 24 local->started = true; in drv_start() 31 local->started = false; in drv_start() 41 if (WARN_ON(!local->started)) in drv_stop() 48 /* sync away all work on the tasklet before clearing started */ in drv_stop() 54 local->started = false; in drv_stop()
|
| /linux/drivers/firmware/imx/ |
| H A D | sm-cpu.c | 39 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 D | main.c | 110 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 D | vcpu_pmu.c | 375 if (fevent->started) in kvm_riscv_vcpu_pmu_incr_fw() 612 if (kvpmu->fw_event[fevent_code].started) { in kvm_riscv_vcpu_pmu_ctr_start() 617 kvpmu->fw_event[fevent_code].started = true; in kvm_riscv_vcpu_pmu_ctr_start() 620 if (unlikely(pmc->started)) { in kvm_riscv_vcpu_pmu_ctr_start() 626 pmc->started = true; in kvm_riscv_vcpu_pmu_ctr_start() 674 if (!kvpmu->fw_event[fevent_code].started) in kvm_riscv_vcpu_pmu_ctr_stop() 677 kvpmu->fw_event[fevent_code].started = false; in kvm_riscv_vcpu_pmu_ctr_stop() 679 if (pmc->started) { in kvm_riscv_vcpu_pmu_ctr_stop() 682 pmc->started = false; in kvm_riscv_vcpu_pmu_ctr_stop() 800 kvpmu->fw_event[event_code].started = true; in kvm_riscv_vcpu_pmu_ctr_cfg_match()
|
| /linux/tools/testing/selftests/sched_ext/ |
| H A D | cyclic_kick_wait.c | 40 bool started; member 68 if (!worker->started) in join_worker() 150 workers[i].started = true; in run()
|
| /linux/tools/testing/kunit/ |
| H A D | kunit_parser.py | 222 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 D | hyperv-keyboard.c | 97 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/tools/testing/selftests/hid/tests/ |
| H A D | base_device.py | 307 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/Documentation/driver-api/rapidio/ |
| H A D | rapidio.rst | 128 (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/Documentation/networking/ |
| H A D | can_ucan_protocol.rst | 175 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/tools/testing/selftests/net/lib/py/ |
| H A D | ksft.py | 101 started = False 104 if not started: 106 started = True
|
| /linux/drivers/media/platform/raspberrypi/pisp_be/ |
| H A D | pisp_be.c | 226 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/Documentation/admin-guide/nfs/ |
| H A D | nfsd-admin-interfaces.rst | 11 The server is always started by the first write of a nonzero value to 22 If nfsd is started without doing any of these, then it will create one
|
| /linux/Documentation/driver-api/media/drivers/ |
| H A D | pxa_camera.rst | 24 b) QCI started 25 More buffers can be queued while the QCI is started without halting the 92 Once a first buffer is queued for capture, the QCI is started, but data 93 transfer is not started. On "End Of Frame" interrupt, the irq handler
|
| /linux/drivers/soc/fsl/qbman/ |
| H A D | qman_test_stash.c | 87 atomic_t started; member 94 atomic_inc(&bstrap->started); in bstrap_fn() 109 .started = ATOMIC_INIT(0) in on_all_cpus() 123 while (!atomic_read(&bstrap.started)) in on_all_cpus()
|
| /linux/drivers/net/phy/ |
| H A D | sfp-bus.c | 31 bool started; member 457 if (bus->started) in sfp_register_bus() 469 if (bus->started) in sfp_unregister_bus() 545 bus->started = true; in sfp_upstream_start() 562 bus->started = false; in sfp_upstream_stop()
|
| /linux/drivers/media/pci/ddbridge/ |
| H A D | ddbridge-sx8.c | 39 int started; member 170 state->started = 0; in stop() 356 if (state->started) in set_parameters() 395 state->started = 1; in set_parameters()
|
| /linux/drivers/gpu/drm/xe/ |
| H A D | xe_gsc_types.h | 62 bool started; member
|
| /linux/Documentation/userspace-api/media/v4l/ |
| H A D | vidioc-encoder-cmd.rst | 58 started yet. Applies to both queues of mem2mem encoders. 125 - Pause the encoder. When the encoder has not been started yet, the 132 been started yet, the driver will return an ``EPERM`` error code. When
|
| /linux/drivers/media/dvb-frontends/ |
| H A D | stv0910.c | 94 u32 started; member 469 if (!state->started) in get_cur_symbol_rate() 500 if (!state->started) in get_signal_parameters() 636 if (!state->started) in get_signal_to_noise() 852 if (state->started) { in stop() 864 state->started = 0; in stop() 1018 if (state->started) in start() 1116 state->started = 1; in start() 1139 state->started = 0; in probe() 1287 if (!state->started) in manage_matype_info()
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-bus-iio-cdc-ad7746 | 9 calibscale_calibration then started. For calibbias see
|