Searched refs:sq_data (Results 1 – 8 of 8) sorted by relevance
/openbmc/linux/io_uring/ |
H A D | sqpoll.c | 90 struct io_sq_data *sqd = ctx->sq_data; in io_sq_thread_finish() 99 ctx->sq_data = NULL; in io_sq_thread_finish() 118 sqd = ctx_attach->sq_data; in io_attach_sq_data() 388 ctx->sq_data = sqd; in io_sq_offload_create() 451 complete(&ctx->sq_data->exited); in io_sq_offload_create() 462 struct io_sq_data *sqd = ctx->sq_data; in io_sqpoll_wq_cpu_affinity()
|
H A D | io_uring.c | 1749 wq_has_sleeper(&ctx->sq_data->wait)) in io_iopoll_req_issued() 1750 wake_up(&ctx->sq_data->wait); in io_iopoll_req_issued() 3127 if (ctx->sq_data) { in io_ring_exit_work() 3128 struct io_sq_data *sqd = ctx->sq_data; in io_ring_exit_work() 3332 (ctx->sq_data && ctx->sq_data->thread == current)) { in io_uring_try_cancel_requests() 3396 if (node->ctx->sq_data) in io_uring_cancel_generic() 3677 if (unlikely(ctx->sq_data->thread == NULL)) { in SYSCALL_DEFINE6() 3682 wake_up(&ctx->sq_data->wait); in SYSCALL_DEFINE6() 4268 if (ctx->sq_data && wq_has_sleeper(&ctx->sq_data->wait)) in io_register_enable_rings() 4269 wake_up(&ctx->sq_data->wait); in io_register_enable_rings() [all …]
|
H A D | fdinfo.c | 146 struct io_sq_data *sq = ctx->sq_data; in io_uring_show_fdinfo()
|
/openbmc/openbmc/poky/bitbake/lib/bb/tests/runqueue-tests/classes/ |
H A D | base.bbclass | 231 def sstate_checkhashes(sq_data, d, siginfo=False, currentcount=0, **kwargs): 238 for tid in sorted(sq_data['hash']): 245 elif n + ":" + sq_data['hash'][tid] in valid: 251 if hash == sq_data['hash'][tid]: 255 …("SState: sstate hash didn't match previous run for %s (%s vs %s)" % (n, sq_data['hash'][tid], has… 259 bb.note("SState: Found no valid sstate for %s (%s)" % (n, sq_data['hash'][tid]))
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | sstatesig.py | 300 def checkhashes(self, sq_data, missed, found, d): argument 314 for tid in sq_data['hash']: 318 if sq_data['hash'][tid] in iter(self.lockedsigs[pn].values()): 322 % (pn, taskname, sq_data['hash'][tid]))
|
/openbmc/linux/include/linux/ |
H A D | io_uring_types.h | 316 struct io_sq_data *sq_data; /* if using sq thread polling */ member
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | runqueue.py | 1527 sq_data = {} 1528 sq_data['hash'] = {} 1529 sq_data['hashfn'] = {} 1530 sq_data['unihash'] = {} 1533 sq_data['hash'][tid] = self.rqdata.runtaskentries[tid].hash 1534 sq_data['hashfn'][tid] = self.rqdata.dataCaches[mc].hashfn[taskfn] 1535 sq_data['unihash'][tid] = self.rqdata.runtaskentries[tid].unihash 1537 valid = self.validate_hash(sq_data, data, siginfo, currentcount, summary) 1541 def validate_hash(self, sq_data, d, siginfo, currentcount, summary): argument 1542 …locs = {"sq_data" : sq_data, "d" : d, "siginfo" : siginfo, "currentcount" : currentcount, "summary…
|
/openbmc/openbmc/poky/meta/classes-global/ |
H A D | sstate.bbclass | 938 def sstate_checkhashes(sq_data, d, siginfo=False, currentcount=0, summary=True, **kwargs): 945 return sq_data['unihash'][task] 949 splithashfn = sq_data['hashfn'][task].split(" ") 968 for tid in sq_data['hash']: 1084 total = len(sq_data['hash']) 1095 bb.parse.siggen.checkhashes(sq_data, missed, found, d)
|