Home
last modified time | relevance | path

Searched refs:waiting (Results 1 – 25 of 337) sorted by relevance

12345678910>>...14

/openbmc/linux/tools/testing/selftests/arm64/abi/
H A Dtpidr2.c98 pid_t newpid, waiting, oldpid; in write_fork_read() local
130 waiting = waitpid(newpid, &status, 0); in write_fork_read()
132 if (waiting < 0) { in write_fork_read()
140 if (waiting != newpid) { in write_fork_read()
180 pid_t parent, waiting; in write_clone_read() local
215 waiting = wait4(ret, &status, __WCLONE, NULL); in write_clone_read()
217 if (waiting < 0) { in write_clone_read()
225 if (waiting != ret) { in write_clone_read()
227 putnum(waiting); in write_clone_read()
/openbmc/qemu/block/
H A Daio_task.c34 bool waiting; member
55 if (pool->waiting) { in aio_task_co()
56 pool->waiting = false; in aio_task_co()
66 pool->waiting = true; in aio_task_pool_wait_one()
69 assert(!pool->waiting); in aio_task_pool_wait_one()
/openbmc/linux/tools/testing/selftests/arm64/fp/
H A Dza-fork.c26 pid_t newpid, waiting; in fork_test_c() local
50 waiting = waitpid(newpid, &child_status, 0); in fork_test_c()
52 if (waiting < 0) { in fork_test_c()
58 if (waiting != newpid) { in fork_test_c()
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-devices-waiting_for_supplier10 or 1) reflects whether the device is waiting for one or more
14 A value of 0 means the device is not waiting for any suppliers
16 is waiting for one or more suppliers to be added before it can
H A Dsysfs-class-scsi_tape16 Shows the total amount of time spent waiting for all I/O
23 To determine the amount of time spent waiting for other I/O
64 Shows the total amount of time in nanoseconds waiting for
95 Shows the total amount of time in nanoseconds waiting for
H A Dsysfs-bus-iio-distance-srf088 This setting limits the time the driver is waiting for a
/openbmc/qemu/include/qemu/
H A Drcu.h60 bool waiting; member
115 if (unlikely(qatomic_read(&p_rcu_reader->waiting))) { in rcu_read_unlock()
116 qatomic_set(&p_rcu_reader->waiting, false); in rcu_read_unlock()
/openbmc/qemu/hw/scsi/
H A Dlsi53c895a.c235 int waiting; member
356 s->waiting = LSI_NOWAIT; in lsi_soft_reset()
601 if (s->waiting != 2) { in lsi_resume_script()
602 s->waiting = LSI_NOWAIT; in lsi_resume_script()
605 s->waiting = LSI_NOWAIT; in lsi_resume_script()
781 if (s->waiting == LSI_WAIT_RESELECT || in lsi_queue_req()
804 if (s->waiting && s->dbc != 0) { in lsi_command_complete()
808 s->waiting = 0; in lsi_command_complete()
831 if (s->waiting == LSI_WAIT_RESELECT || req->hba_private != s->current || in lsi_transfer_data()
844 if (s->waiting) { in lsi_transfer_data()
[all …]
/openbmc/linux/Documentation/scheduler/
H A Dcompletion.rst22 until the result is actually needed, and both the waiting and the signalling
26 the Linux scheduler. The event the threads on the waitqueue are waiting for
39 - the waiting part through a call to one of the variants of wait_for_completion(),
43 Note that while initialization must happen first, the waiting and signaling
57 This provides the ->wait waitqueue to place tasks on for waiting (if any), and
122 must not return to a calling context until all activities (such as waiting
125 To emphasise this again: in particular when using some of the waiting API variants
164 to wait_for_completion() then the waiting side simply will continue
181 time depending on the nature of the activity they are waiting for, so in
206 This function marks the task TASK_INTERRUPTIBLE while it is waiting.
[all …]
/openbmc/u-boot/drivers/i2c/muxes/
H A Di2c-arb-gpio-challenge.c48 int waiting = 0; in i2c_arbitrator_select() local
67 if (!waiting) in i2c_arbitrator_select()
68 waiting = 1; in i2c_arbitrator_select()
/openbmc/linux/drivers/scsi/
H A Dppa.c41 wait_queue_head_t *waiting; member
71 wake_up(dev->waiting); in got_it()
1045 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(waiting); in __ppa_attach()
1058 init_waitqueue_head(&waiting); in __ppa_attach()
1076 dev->waiting = &waiting; in __ppa_attach()
1077 prepare_to_wait(&waiting, &wait, TASK_UNINTERRUPTIBLE); in __ppa_attach()
1085 dev->waiting = NULL; in __ppa_attach()
1086 finish_wait(&waiting, &wait); in __ppa_attach()
1089 dev->waiting = NULL; in __ppa_attach()
1090 finish_wait(&waiting, &wait); in __ppa_attach()
H A Dimm.c48 wait_queue_head_t *waiting; member
71 wake_up(dev->waiting); in got_it()
1150 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(waiting); in __imm_attach()
1157 init_waitqueue_head(&waiting); in __imm_attach()
1185 dev->waiting = &waiting; in __imm_attach()
1186 prepare_to_wait(&waiting, &wait, TASK_UNINTERRUPTIBLE); in __imm_attach()
1194 dev->waiting = NULL; in __imm_attach()
1195 finish_wait(&waiting, &wait); in __imm_attach()
1198 dev->waiting = NULL; in __imm_attach()
1199 finish_wait(&waiting, &wait); in __imm_attach()
/openbmc/linux/drivers/parport/
H A Dshare.c753 par_dev->waiting = 0; in parport_register_dev_model()
1012 if (dev->waiting & 1) { in parport_claim()
1013 dev->waiting = 0; in parport_claim()
1062 if (dev->waiting & 2 || dev->wakeup) { in parport_claim()
1064 if (test_and_set_bit(0, &dev->waiting) == 0) { in parport_claim()
1099 dev->waiting = 2; in parport_claim_or_block()
1121 if (dev->waiting) { in parport_claim_or_block()
1123 !dev->waiting); in parport_claim_or_block()
1142 dev->waiting = 0; in parport_claim_or_block()
1197 if (pd->waiting & 2) { /* sleeping in claim_or_block */ in parport_release()
/openbmc/linux/tools/lib/subcmd/
H A Drun-command.c172 pid_t waiting = waitpid(pid, &status, 0); in wait_or_whine() local
174 if (waiting < 0) { in wait_or_whine()
181 if (waiting != pid) in wait_or_whine()
/openbmc/linux/arch/arm/include/debug/
H A Dsamsung.S63 @ busy waiting for non fifo
87 @ idle waiting for non fifo
/openbmc/linux/drivers/sbus/char/
H A Dbbc_i2c.c130 bp->waiting = 1; in wait_for_pin()
146 bp->waiting = 0; in wait_for_pin()
279 if (bp->waiting && in bbc_i2c_interrupt()
318 bp->waiting = 0; in attach_one_i2c()
/openbmc/linux/Documentation/accounting/
H A Dtaskstats-struct.rst112 /* Delay waiting for cpu, while runnable
120 /* Delay waiting for synchronous block I/O to complete
126 /* Delay waiting for page fault I/O (swap in only) */
193 /* Delay waiting for memory reclaim */
/openbmc/linux/Documentation/locking/
H A Drobust-futex-ABI.rst24 call, and handles contested locking by maintaining a list of waiting
26 waiting on a particular futex, and waking up the next waiter on a
34 waiting on the same locks.
82 waiting for a lock on a threads exit if that next thread used the futex
90 indicating their holder died, and wakeup the next thread waiting for
168 they were waiting, and bit 30 is set by the kernel to indicate that the
/openbmc/openbmc-test-automation/ipmi/
H A Dtest_ipmi_poh_counter.robot75 # Get POH Counter Reading after waiting for given time period.
97 # Get POH counter reading after waiting for given time period.
118 # Get POH Counter reading after waiting for given time period.
/openbmc/linux/Documentation/block/
H A Dstat.rst79 waited on this block device. If there are multiple I/O requests waiting,
101 on this block device. If there are multiple I/O requests waiting, this
103 number of requests waiting (see "read ticks" above for an example).
/openbmc/qemu/tests/qemu-iotests/
H A D161.out27 …oseconds": TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "none0"}}
49 …oseconds": TIMESTAMP}, "event": "JOB_STATUS_CHANGE", "data": {"status": "waiting", "id": "none0"}}
/openbmc/qemu/util/
H A Drcu.c87 qatomic_set(&index->waiting, true); in wait_for_readers()
108 qatomic_set(&index->waiting, false); in wait_for_readers()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-networking/cyrus-sasl/cyrus-sasl/
H A D0001-sample-Rename-dprintf-to-cyrus_dprintf.patch45 - dprintf(2, "waiting for server reply...\n");
46 + cyrus_dprintf(2, "waiting for server reply...\n");
/openbmc/linux/drivers/block/drbd/
H A Ddrbd_interval.h14 unsigned int waiting:1; /* someone is waiting for completion */ member
/openbmc/qemu/qapi/
H A Djob.json62 # @waiting: The job is waiting for other jobs in the transaction to
63 # converge to the waiting state. This status will likely not be
87 'waiting', 'pending', 'aborting', 'concluded', 'null' ] }

12345678910>>...14