Lines Matching defs:loop

621 					 bool loop)
626 * We always loop when a send requires a reply (i.e. g2h_len_dw > 0),
630 GEM_BUG_ON(g2h_len_dw && !loop);
635 ret = intel_guc_send_busy_loop(guc, action, len, g2h_len_dw, loop);
693 static int guc_context_policy_init_v70(struct intel_context *ce, bool loop);
694 static int try_context_registration(struct intel_context *ce, bool loop);
1052 bool loop;
1057 loop = guc_dequeue_one_context(sched_engine->private_data);
1058 } while (loop);
2402 bool loop)
2419 return guc_submission_send_busy_loop(guc, action, len, 0, loop);
2425 bool loop)
2462 return guc_submission_send_busy_loop(guc, action, len, 0, loop);
2468 bool loop)
2477 0, loop);
2482 bool loop)
2500 0, loop);
2508 register_context_v69(struct intel_guc *guc, struct intel_context *ce, bool loop)
2517 offset, loop);
2520 offset, loop);
2524 register_context_v70(struct intel_guc *guc, struct intel_context *ce, bool loop)
2531 return __guc_action_register_multi_lrc_v70(guc, ce, &info, loop);
2533 return __guc_action_register_context_v70(guc, &info, loop);
2536 static int register_context(struct intel_context *ce, bool loop)
2545 ret = register_context_v70(guc, ce, loop);
2547 ret = register_context_v69(guc, ce, loop);
2557 guc_context_policy_init_v70(ce, loop);
2648 bool loop)
2652 0, loop);
2655 static int guc_context_policy_init_v70(struct intel_context *ce, bool loop)
2687 ret = __guc_context_set_context_policies(guc, &policy, loop);
2867 static int try_context_registration(struct intel_context *ce, bool loop)
2897 GEM_BUG_ON(!loop);
2922 ret = register_context(ce, loop);
4941 /* This is a critical reclaim path and thus we must loop here. */