Home
last modified time | relevance | path

Searched refs:used (Results 1 – 14 of 14) sorted by relevance

/kernel/kcsan/
Ddebugfs.c46 int used; /* number of elements used */ member
52 .used = 0,
114 if (report_filterlist.used == 0) in kcsan_skip_report_debugfs()
119 sort(report_filterlist.addrs, report_filterlist.used, in kcsan_skip_report_debugfs()
124 report_filterlist.used, sizeof(unsigned long), in kcsan_skip_report_debugfs()
166 } else if (report_filterlist.used == report_filterlist.size) { in insert_report_filterlist()
184 report_filterlist.addrs[report_filterlist.used++] = in insert_report_filterlist()
210 report_filterlist.used == 0 ? "none" : ""); in show_info()
211 for (i = 0; i < report_filterlist.used; ++i) in show_info()
/kernel/
Dscs.c133 unsigned long *p, prev, curr = highest, used = 0; in scs_check_usage() local
141 used += sizeof(*p); in scs_check_usage()
144 while (used > curr) { in scs_check_usage()
145 prev = cmpxchg_relaxed(&highest, curr, used); in scs_check_usage()
149 tsk->comm, task_pid_nr(tsk), used); in scs_check_usage()
DKconfig.preempt115 Interesting if you want the same pre-built kernel should be used for
/kernel/dma/
Dswiotlb.c92 unsigned long used; member
306 mem->areas[i].used = 0; in swiotlb_init_io_tlb_mem()
680 if (unlikely(nslots > mem->area_nslabs - area->used)) in swiotlb_do_find_slots()
732 area->used += nslots; in swiotlb_do_find_slots()
759 unsigned long used = 0; in mem_used() local
762 used += mem->areas[i].used; in mem_used()
763 return used; in mem_used()
864 area->used -= nslots; in swiotlb_release_slots()
DKconfig230 dma_map_sg() API is used for general bulk mapping of pages rather than
/kernel/module/
DKconfig12 useful for infrequently used options which are not required
86 see exactly which source was used to build a module (since
95 This enables the module attribute "scmversion" which can be used
162 This determines which sort of hashing algorithm will be used during
202 This option allows you to choose the algorithm which will be used to
214 Please note that the tool used to load modules needs to support the
294 many of those exported symbols might never be used.
/kernel/trace/
DKconfig21 API, which will be used by other function-entry hooking
339 used together or separately.)
363 used together or separately.)
469 events can be used to trace the source of interference from NMI,
718 set a different return value. This is used for error injection.
757 generally used outside of that context, and is normally
767 used to combine data from other trace events or in fact any
784 can be used like an existing kernel trace event. User trace
819 buffer. This is mainly used for testing purpose.
878 To fix this, there's a special macro in the kernel that can be used
[all …]
/kernel/rcu/
DKconfig156 The default value of RCU_FANOUT should be used for production
246 real-time workloads. It can also be used to offload RCU
261 be used to force the kthreads to run on whatever set of CPUs is
331 off. Boot time param rcutree.enable_rcu_lazy=1 can be used to switch
346 also be used to extend the delay to be larger than the default, assuming
/kernel/configs/
Ddebug.config3 # platforms. It can be used for example,
/kernel/power/
DKconfig58 ACPI will be used for the final steps when it is available. One
69 need to run mkswap against the swap partition used for the suspend.
88 Device used by the uswsusp tools.
/kernel/bpf/
DKconfig82 Unprivileged BPF could be used to exploit certain potential
/kernel/time/
Dtimeconst.bc20 /* Adjustment factor when a ceiling value is used. Use as:
DKconfig63 The legacy timer tick helper is used by platforms that
/kernel/sched/
Dfair.c9003 unsigned long used, free; in scale_rt_capacity() local
9017 used = READ_ONCE(rq->avg_rt.util_avg); in scale_rt_capacity()
9018 used += READ_ONCE(rq->avg_dl.util_avg); in scale_rt_capacity()
9019 used += thermal_load_avg(rq); in scale_rt_capacity()
9021 if (unlikely(used >= max)) in scale_rt_capacity()
9024 free = max - used; in scale_rt_capacity()