Lines Matching defs:depth
1830 * Keep track of hcall tracing depth and prevent recursion. Warn if any is
1845 unsigned int *depth;
1849 depth = this_cpu_ptr(&hcall_trace_depth);
1851 if (WARN_ON_ONCE(*depth))
1854 (*depth)++;
1857 (*depth)--;
1866 unsigned int *depth;
1870 depth = this_cpu_ptr(&hcall_trace_depth);
1872 if (*depth) /* Don't warn again on the way out */
1875 (*depth)++;
1878 (*depth)--;