HomeSort by: relevance | last modified time | path
    Searched refs:guilty (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_ctx.h 54 atomic_t guilty; member in struct:amdgpu_ctx
amdgpu_ctx.c 131 &ctx->guilty);
332 /* TODO: this should ideally return NO, GUILTY, or INNOCENT. */
371 if (atomic_read(&ctx->guilty))
amdgpu_cs.c 137 /* skip guilty context job */
138 if (atomic_read(&p->ctx->guilty) == 1) {
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_reset.h 40 void __i915_request_reset(struct i915_request *rq, bool guilty);
intel_reset.c 132 DRM_DEBUG_DRIVER("context %s: guilty %d, banned\n",
155 void __i915_request_reset(struct i915_request *rq, bool guilty)
157 RQ_TRACE(rq, "guilty? %s\n", yesno(guilty));
162 if (guilty) {
1000 * @stalled_mask: mask of the stalled engines with the guilty requests
  /src/sys/external/bsd/drm2/dist/drm/scheduler/
sched_entity.c 50 * @guilty: atomic_t set to 1 when a job on this queue
51 * is found to be guilty causing a timeout
62 atomic_t *guilty)
70 entity->guilty = guilty;
472 /* skip jobs from entity that marked guilty */
473 if (entity->guilty && atomic_read(entity->guilty))
sched_main.c 321 * Guilty job did complete and hence needs to be manually removed
338 * drm_sched_increase_karma - Update sched_entity guilty flag
340 * @bad: The job guilty of time out
343 * limit of the scheduler then the respective sched entity is marked guilty and
369 if (entity->guilty)
370 atomic_set(entity->guilty, 1);
446 * that the guilty job must be released.
  /src/sys/external/bsd/drm2/dist/include/drm/
gpu_scheduler.h 75 * @guilty: points to ctx's guilty.
101 atomic_t *guilty; member in struct:drm_sched_entity
186 * limit of the scheduler then the job is marked guilty and will not
272 * guilty and it will be considered for scheduling further.
275 * @free_guilty: A hit to time out handler to free the guilty job.
328 atomic_t *guilty);
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_errors.cc 526 u8 *bytes, u8 *guilty, uptr n) {
532 p == guilty ? "[" : (p - 1 == guilty && i != 0) ? "" : " ";
533 const char *after = p == guilty ? "]" : "";
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_gpu_error.h 94 int guilty; member in struct:intel_engine_coredump::i915_gem_context_coredump
i915_gpu_error.c 482 err_printf(m, "%s%s[%d] prio %d, guilty %d active %d\n",
484 ctx->guilty, ctx->active);
1277 e->guilty = atomic_read(&ctx->guilty_count);

Completed in 34 milliseconds