Home
last modified time | relevance | path

Searched refs:max_stack_depth (Results 1 – 10 of 10) sorted by relevance

/linux/fs/xfs/scrub/
H A Dxfarray.c427 return xfarray_sortinfo_lo(si) + si->max_stack_depth; in xfarray_sortinfo_hi()
449 int max_stack_depth; in xfarray_sortinfo_alloc() local
465 max_stack_depth = ilog2(array->nr) + 1 - (XFARRAY_ISORT_SHIFT - 1); in xfarray_sortinfo_alloc()
466 if (max_stack_depth < 1) in xfarray_sortinfo_alloc()
467 max_stack_depth = 1; in xfarray_sortinfo_alloc()
470 nr_bytes += max_stack_depth * sizeof(xfarray_idx_t) * 2; in xfarray_sortinfo_alloc()
484 si->max_stack_depth = max_stack_depth; in xfarray_sortinfo_alloc()
533 return xfarray_sortinfo_hi(si) + si->max_stack_depth; in xfarray_sortinfo_isort_scratch()
606 return xfarray_sortinfo_hi(si) + si->max_stack_depth; in xfarray_sortinfo_pivot()
763 if (si->stack_depth >= si->max_stack_depth - 1) { in xfarray_qsort_push()
[all …]
H A Dtrace.h1114 __field(int, max_stack_depth)
1121 __entry->max_stack_depth = si->max_stack_depth;
1129 __entry->max_stack_depth)
1140 __field(unsigned int, max_stack_depth)
1147 __entry->max_stack_depth = si->max_stack_depth;
1153 __entry->max_stack_depth,
1209 __field(unsigned int, max_stack_depth)
1221 __entry->max_stack_depth = si->max_stack_depth;
1239 __entry->max_stack_depth,
/linux/Documentation/filesystems/fuse/
H A Dfuse-passthrough.rst37 ``max_stack_depth``.
115 filesystem stacking depth (``sb->s_stack_depth`` and ``fc->max_stack_depth``).
117 the ``max_stack_depth`` it supports. When a backing file is registered via
/linux/tools/perf/util/
H A Dlock-contention.h170 bool match_callstack_filter(struct machine *machine, u64 *callstack, int max_stack_depth);
H A Dhist.h368 int max_stack_depth, void *arg);
H A Dhist.c1336 int max_stack_depth, void *arg) in hist_entry_iter__add()
1345 al, max_stack_depth); in hist_entry_iter__add()
1333 hist_entry_iter__add(struct hist_entry_iter * iter,struct addr_location * al,int max_stack_depth,void * arg) hist_entry_iter__add() argument
/linux/tools/perf/
H A Dbuiltin-lock.c60 static int max_stack_depth = CONTENTION_STACK_DEPTH;
858 NULL, NULL, max_stack_depth); in lock_contention_caller()
907 NULL, NULL, max_stack_depth); in callchain_id()
1069 u64 *callstack = get_callstack(sample, max_stack_depth); in report_lock_contention_begin_event()
1073 if (!match_callstack_filter(machine, callstack, max_stack_depth)) { in report_lock_contention_begin_event()
1662 for (int i = 0; i < max_stack_depth; i++) { in print_lock_stat_stdio()
1715 for (int i = 0; i < max_stack_depth; i++) { in print_lock_stat_csv()
2004 .max_stack = max_stack_depth, in __cmd_contention()
2651 OPT_CALLBACK(0, "max-stack", &max_stack_depth, "num", in cmd_lock()
58 static int max_stack_depth = CONTENTION_STACK_DEPTH; global() variable
/linux/include/uapi/linux/
H A Dfuse.h926 uint32_t max_stack_depth; member
/linux/include/linux/
H A Dbpf_verifier.h990 u32 max_stack_depth; member
/linux/kernel/bpf/
H A Dverifier.c5344 if (subprog_depth > env->max_stack_depth) in check_max_stack_depth_subprog()
5345 env->max_stack_depth = subprog_depth; in check_max_stack_depth_subprog()
5353 if (depth > env->max_stack_depth) in check_max_stack_depth_subprog()
5354 env->max_stack_depth = depth; in check_max_stack_depth_subprog()
19521 verbose(env, "stack depth max %d\n", env->max_stack_depth); in print_verification_stats()