Searched refs:kconfig (Results 1 - 25 of 119) sorted by relevance
12345
/kernel/linux/linux-6.6/drivers/misc/lkdtm/ |
H A D | lkdtm.h | 11 #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 D | streamline_config.pl | 136 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 D | streamline_config.pl | 136 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 D | configcheck.sh | 42 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 D | torture.sh | 336 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 D | get_feat.pl | 112 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 D | tags.sh | 235 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 D | kunit_config.py | 87 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 D | kunit_kernel.py | 104 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 D | tags.sh | 235 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 D | lsm_cgroup.c | 178 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 D | skeleton.c | 26 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 D | arm.py | 4 kconfig='''
|
H A D | arm64.py | 4 kconfig='''
|
H A D | m68k.py | 5 kconfig='''
|
H A D | i386.py | 4 kconfig='''
|
H A D | alpha.py | 4 kconfig='''
|
H A D | powerpc.py | 4 kconfig='''
|
H A D | s390.py | 4 kconfig='''
|
H A D | sparc.py | 4 kconfig='''
|
H A D | x86_64.py | 4 kconfig='''
|
H A D | sh.py | 5 kconfig='''
|
/kernel/linux/linux-6.6/drivers/ufs/core/ |
H A D | ufs-fault-injection.h | 6 #include <linux/kconfig.h>
|
/kernel/linux/linux-6.6/tools/testing/memblock/linux/ |
H A D | kernel.h | 10 #include <linux/kconfig.h>
|
/kernel/linux/linux-6.6/include/linux/platform_data/x86/ |
H A D | p2sb.h | 10 #include <linux/kconfig.h>
|
Completed in 8 milliseconds
12345