Home
last modified time | relevance | path

Searched refs:kconfig (Results 1 - 25 of 119) sorted by relevance

12345

/kernel/linux/linux-6.6/drivers/misc/lkdtm/
H A Dlkdtm.h11 #define pr_expected_config(kconfig) \
13 if (IS_ENABLED(kconfig)) \
14 pr_err("Unexpected! This %s was built with " #kconfig "=y\n", \
17 pr_warn("This is probably expected, since this %s was built *without* " #kconfig "=y\n", \
23 #define pr_expected_config_param(kconfig, param) \
25 if (IS_ENABLED(kconfig)) { \
28 pr_warn("This is probably expected, since this %s was built with " #kconfig "=y but booted with '" param "=N'\n", \
32 pr_err("Unexpected! This %s was built with " #kconfig "=y and booted with '" param "=Y'\n", \
36 pr_err("Unexpected! This %s was built with " #kconfig "=y (and booted without '" param "' specified)\n", \
42 pr_warn("This is probably expected, as this %s was built *without* " #kconfig "
[all...]
/kernel/linux/linux-5.10/scripts/kconfig/
H A Dstreamline_config.pl136 my $kconfig = $ARGV[1];
155 my ($kconfig) = @_;
163 my $source = "$ksource/$kconfig";
173 open(my $kinfile, '<', $source) || die "Can't open $kconfig";
192 my $kconfig = $1;
194 if (!defined($read_kconfigs{$kconfig})) {
195 $read_kconfigs{$kconfig} = 1;
196 read_kconfig($kconfig);
205 $config2kfile{"CONFIG_$config"} = $kconfig;
268 if ($kconfig) {
[all...]
/kernel/linux/linux-6.6/scripts/kconfig/
H A Dstreamline_config.pl136 my $kconfig = $ARGV[1];
155 my ($kconfig) = @_;
163 my $source = "$ksource/$kconfig";
192 my $kconfig = $1;
194 if (!defined($read_kconfigs{$kconfig})) {
195 $read_kconfigs{$kconfig} = 1;
196 read_kconfig($kconfig);
205 $config2kfile{"CONFIG_$config"} = $kconfig;
268 if ($kconfig) {
269 read_kconfig($kconfig);
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/rcutorture/bin/
H A Dconfigcheck.sh42 sed -e 's/^/test_kconfig_disabled /' -e 's/=n$//' > $T/kconfig-n.sh
43 . $T/kconfig-n.sh
45 sed -e 's/^/test_kconfig_enabled /' > $T/kconfig-not-n.sh
46 . $T/kconfig-not-n.sh
H A Dtorture.sh336 torture_one "$@" --kconfig "CONFIG_DEBUG_LOCK_ALLOC=y CONFIG_PROVE_LOCKING=y" $kcsan_kmake_tag $cur_kcsan_kmake_args --kcsan
394 tools/testing/selftests/rcutorture/bin/kvm.sh --datestamp "$ds/results-rcutasksflavors/$flavor" --buildonly --configs "TINY01 TREE04" --kconfig "CONFIG_RCU_EXPERT=y CONFIG_RCU_SCALE_TEST=y $forceflavor=y $deselectedflavors" --trust-make > $T/$flavor.out 2>&1
430 torture_set "scftorture" tools/testing/selftests/rcutorture/bin/kvm.sh --torture scf --allcpus --duration "$duration_scftorture" --configs "$configs_scftorture" --kconfig "CONFIG_NR_CPUS=$HALF_ALLOTED_CPUS" --memory ${scfmem}G --trust-make
475 torture_set "refscale-$prim" tools/testing/selftests/rcutorture/bin/kvm.sh --torture refscale --allcpus --duration 5 --kconfig "CONFIG_TASKS_TRACE_RCU=y CONFIG_NR_CPUS=$HALF_ALLOTED_CPUS" --bootargs "verbose_batched=$VERBOSE_BATCH_CPUS torture.verbose_sleep_frequency=8 torture.verbose_sleep_duration=$VERBOSE_BATCH_CPUS" --trust-make
524 torture_set "rcuscale-$prim" tools/testing/selftests/rcutorture/bin/kvm.sh --torture rcuscale --allcpus --duration 5 --kconfig "CONFIG_TASKS_TRACE_RCU=y CONFIG_NR_CPUS=$HALF_ALLOTED_CPUS" --trust-make
562 torture_set "rcuscale-kvfree" tools/testing/selftests/rcutorture/bin/kvm.sh --torture rcuscale --allcpus --duration 10 --kconfig "CONFIG_NR_CPUS=$HALF_ALLOTED_CPUS" --memory 2G --trust-make
568 torture_set "clocksourcewd-1" tools/testing/selftests/rcutorture/bin/kvm.sh --allcpus --duration 45s --configs TREE03 --kconfig "CONFIG_TEST_CLOCKSOURCE_WATCHDOG=y" --trust-make
571 torture_set "clocksourcewd-2" tools/testing/selftests/rcutorture/bin/kvm.sh --allcpus --duration 45s --configs TREE03 --kconfig "CONFIG_TEST_CLOCKSOURCE_WATCHDOG=y" --trust-make
/kernel/linux/linux-6.6/scripts/
H A Dget_feat.pl112 my $kconfig;
133 $kconfig = $1;
134 if (length($kconfig) > $max_size_kconfig) {
135 $max_size_kconfig = length($kconfig);
190 parse_error($file, $ln, "Kconfig not found", "") if (!$kconfig);
200 $data{$name}->{kconfig} = $kconfig;
253 printf "%-${max_size_kconfig}s ", $data{$name}->{kconfig};
290 printf "%${max_size_kconfig}s # ", $data{$name}->{kconfig};
306 print ":Kconfig: $data{$feat}->{kconfig} \
[all...]
H A Dtags.sh235 kconfig) tmp=("${regex_kconfig[@]}") ;;
282 if ! $1 --list-languages | grep -iq kconfig; then
283 setup_regex exuberant kconfig
284 KCONFIG_ARGS=(--langdef=kconfig --language-force=kconfig "${regex[@]}")
294 setup_regex emacs kconfig
/kernel/linux/linux-6.6/tools/testing/kunit/
H A Dkunit_config.py87 kconfig = Kconfig()
97 kconfig.add_entry(match.group(1), match.group(2))
102 kconfig.add_entry(empty_match.group(1), 'n')
108 return kconfig
H A Dkunit_kernel.py104 self._kconfig = qemu_arch_params.kconfig
112 kconfig = kunit_config.parse_from_string(self._kconfig)
113 kconfig.merge_in_entries(base_kunitconfig)
114 return kconfig
141 kconfig = kunit_config.parse_file(UML_KCONFIG_PATH)
142 kconfig.merge_in_entries(base_kunitconfig)
143 return kconfig
251 kconfig = kunit_config.parse_from_string('\n'.join(kconfig_add))
252 self._kconfig.merge_in_entries(kconfig)
/kernel/linux/linux-5.10/scripts/
H A Dtags.sh235 kconfig) tmp=("${regex_kconfig[@]}") ;;
277 setup_regex exuberant kconfig
279 --langdef=kconfig --language-force=kconfig "${regex[@]}"
288 setup_regex emacs kconfig
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/
H A Dlsm_cgroup.c178 if (!(skel->kconfig->CONFIG_SECURITY_APPARMOR in test_lsm_cgroup_functional()
179 || skel->kconfig->CONFIG_SECURITY_SELINUX in test_lsm_cgroup_functional()
180 || skel->kconfig->CONFIG_SECURITY_SMACK)) in test_lsm_cgroup_functional()
244 if (skel->kconfig->CONFIG_SECURITY_APPARMOR in test_lsm_cgroup_functional()
245 || skel->kconfig->CONFIG_SECURITY_SELINUX in test_lsm_cgroup_functional()
246 || skel->kconfig->CONFIG_SECURITY_SMACK) in test_lsm_cgroup_functional()
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/prog_tests/
H A Dskeleton.c26 if (CHECK(skel->kconfig, "skel_kconfig", "kconfig is mmaped()!\n")) in test_skeleton()
72 kcfg = skel->kconfig; in test_skeleton()
/kernel/linux/linux-6.6/tools/testing/kunit/qemu_configs/
H A Darm.py4 kconfig='''
H A Darm64.py4 kconfig='''
H A Dm68k.py5 kconfig='''
H A Di386.py4 kconfig='''
H A Dalpha.py4 kconfig='''
H A Dpowerpc.py4 kconfig='''
H A Ds390.py4 kconfig='''
H A Dsparc.py4 kconfig='''
H A Dx86_64.py4 kconfig='''
H A Dsh.py5 kconfig='''
/kernel/linux/linux-6.6/drivers/ufs/core/
H A Dufs-fault-injection.h6 #include <linux/kconfig.h>
/kernel/linux/linux-6.6/tools/testing/memblock/linux/
H A Dkernel.h10 #include <linux/kconfig.h>
/kernel/linux/linux-6.6/include/linux/platform_data/x86/
H A Dp2sb.h10 #include <linux/kconfig.h>

Completed in 7 milliseconds

12345