Home
last modified time | relevance | path

Searched refs:use (Results 1 – 5 of 5) sorted by relevance

/kernel/gcov/
DKconfig26 is specified, use:
60 In such a case use this option to adjust the format used in the kernel
68 Select this option to use the format that corresponds to your GCC
74 Select this option to use the format defined by GCC 3.4.
79 Select this option to use the format defined by GCC 4.7.
/kernel/power/
DKconfig51 Alternatively, you can use the additional userland tools available
56 of the reasons to use software suspend is that the firmware hooks
64 be reloaded, then use the 'noresume' kernel command line argument.
72 meantime you cannot use the swap partition(s)/file(s) involved in
73 suspending. Also in this case you must not use the filesystems
229 To use this debugging feature you should attempt to suspend the
248 In order to use APM, you will need supporting software. For location
274 implementations a ready to use framework to manage OPPs.
/kernel/
Dmodule.c792 struct module_use *use; in already_uses() local
794 list_for_each_entry(use, &b->source_list, source_list) { in already_uses()
795 if (use->source == a) { in already_uses()
813 struct module_use *use; in add_module_usage() local
816 use = kmalloc(sizeof(*use), GFP_ATOMIC); in add_module_usage()
817 if (!use) { in add_module_usage()
822 use->source = a; in add_module_usage()
823 use->target = b; in add_module_usage()
824 list_add(&use->source_list, &b->source_list); in add_module_usage()
825 list_add(&use->target_list, &a->target_list); in add_module_usage()
[all …]
/kernel/trace/
DKconfig84 Allow the use of ring_buffer_swap_cpu.
115 # PPC32 has no irqflags tracing support, but it can use most of the
354 on if you need to profile the system's use of these macros.
460 If you want to use perf tools, this option is strongly recommended.
476 This option is required if you plan to use perf-probe subcommand
583 selected by tracers that use it.
608 However, it should be safe to use on e.g. unused portion of VRAM.
687 use this string to parse the raw data as user space does not know
/kernel/debug/kdb/
Dkdb_main.c2038 struct module_use *use; in kdb_lsmod() local
2040 list_for_each_entry(use, &mod->source_list, in kdb_lsmod()
2042 kdb_printf("%s ", use->target->name); in kdb_lsmod()