Home
last modified time | relevance | path

Searched refs:yes (Results 1 - 25 of 159) sorted by relevance

1234567

/kernel/linux/linux-6.6/tools/testing/selftests/rcutorture/bin/
H A Dtorture.sh46 # "yes" or "no" parameters
47 do_allmodconfig=yes
48 do_rcutorture=yes
49 do_locktorture=yes
50 do_scftorture=yes
51 do_rcuscale=yes
52 do_refscale=yes
53 do_kvfree=yes
54 do_kasan=yes
56 do_clocksourcewd=yes
[all...]
H A Dkvm-remote.sh140 ssh -o BatchMode=yes $i getconf _NPROCESSORS_ONLN > $T/ssh.stdout 2> $T/ssh.stderr
161 cat $T/binres.tgz | ssh -o BatchMode=yes $i "cd /tmp; tar -xzf -"
168 cat $T/binres.tgz | ssh -o BatchMode=yes $i "cd /tmp; tar -xzf -"
193 ssh -o BatchMode=yes $1 "test -f \"$2\""
236 ssh -o BatchMode=yes "$i" "cd \"$resdir/$ds\"; touch remote.run; PATH=\"$T/bin:$PATH\" nohup kvm-remote-$curbatch.sh > kvm-remote-$curbatch.sh.out 2>&1 &" 1>&2
276 ( cd "$oldrun"; ssh -o BatchMode=yes $i "cd $rundir; tar -czf - kvm-remote-*.sh.out */console.log */kvm-test-1-run*.sh.out */qemu[_-]pid */qemu-retval */qemu-affinity; rm -rf $T > /dev/null 2>&1" | tar -xzf - )
/kernel/linux/linux-5.10/samples/bpf/
H A Dxdp2skb_meta.sh98 VERBOSE=yes
103 DRYRUN=yes
104 VERBOSE=yes
109 FLUSH=yes
113 LIST=yes
/kernel/linux/linux-6.6/samples/bpf/
H A Dxdp2skb_meta.sh98 VERBOSE=yes
103 DRYRUN=yes
104 VERBOSE=yes
109 FLUSH=yes
113 LIST=yes
/kernel/linux/linux-6.6/samples/pktgen/
H A Dparameters.sh77 export VERBOSE=yes
81 export DEBUG=yes
89 export APPEND=yes
93 export UDP_CSUM=yes
/kernel/linux/linux-6.6/scripts/kconfig/
H A Dconf.c128 if (csym->curr.tri != yes) in randomize_choice_values()
139 * find a random value and set it to yes, in randomize_choice_values()
147 sym->def[S_DEF_USER].tri = yes; in randomize_choice_values()
238 sym->def[S_DEF_USER].tri = yes; in conf_set_all_new_symbols()
251 sym->def[S_DEF_USER].tri = yes; in conf_set_all_new_symbols()
255 sym->def[S_DEF_USER].tri = yes; in conf_set_all_new_symbols()
276 * If curr.tri equals yes then only one symbol can be in conf_set_all_new_symbols()
277 * selected in a choice block and we set it to yes, in conf_set_all_new_symbols()
400 case yes: in conf_sym()
408 if (oldval != yes in conf_sym()
[all...]
H A Dsymbol.c16 .curr = { "y", yes },
46 if (sym_is_choice_value(sym) && sym->visible == yes) in sym_get_type()
191 * 'yes'. in sym_calc_visibility()
194 prop->visible.tri == mod && choice_sym->curr.tri == yes) in sym_calc_visibility()
200 tri = yes; in sym_calc_visibility()
207 /* defaulting to "yes" if no explicit "depends on" are given */ in sym_calc_visibility()
208 tri = yes; in sym_calc_visibility()
212 tri = yes; in sym_calc_visibility()
221 tri = yes; in sym_calc_visibility()
230 tri = yes; in sym_calc_visibility()
[all...]
H A Dmconf.c585 case yes: ch = '*'; break; in build_conf()
601 if (val == yes) { in build_conf()
622 if (sym_is_choice_value(sym) && val == yes) { in build_conf()
638 case yes: ch = '*'; break; in build_conf()
724 sym_set_tristate_value(child->sym, yes); in conf_choice()
888 if (sym_is_choice(sym) && sym_get_tristate_value(sym) == yes) in conf()
916 if (sym_set_tristate_value(sym, yes)) in conf()
/kernel/linux/linux-5.10/net/ipv4/
H A Dinet_diag.c657 int yes = 1; in inet_diag_bc_run() local
664 yes = 0; in inet_diag_bc_run()
667 yes = entry->sport == op[1].no; in inet_diag_bc_run()
670 yes = entry->sport >= op[1].no; in inet_diag_bc_run()
673 yes = entry->sport <= op[1].no; in inet_diag_bc_run()
676 yes = entry->dport == op[1].no; in inet_diag_bc_run()
679 yes = entry->dport >= op[1].no; in inet_diag_bc_run()
682 yes = entry->dport <= op[1].no; in inet_diag_bc_run()
685 yes = !(entry->userlocks & SOCK_BINDPORT_LOCK); in inet_diag_bc_run()
696 yes in inet_diag_bc_run()
[all...]
/kernel/linux/linux-5.10/lib/raid6/test/
H A DMakefile21 IS_X86 = yes
25 IS_X86 = yes
30 HAS_NEON = yes
34 HAS_NEON = yes
40 gcc -c -x c - >/dev/null && rm ./-.o && echo yes)
53 ifeq ($(IS_X86),yes)
59 else ifeq ($(HAS_NEON),yes)
62 else ifeq ($(HAS_ALTIVEC),yes)
/kernel/linux/linux-6.6/lib/raid6/test/
H A DMakefile22 IS_X86 = yes
26 IS_X86 = yes
31 HAS_NEON = yes
35 HAS_NEON = yes
41 gcc -c -x c - >/dev/null && rm ./-.o && echo yes)
54 ifeq ($(IS_X86),yes)
60 else ifeq ($(HAS_NEON),yes)
63 else ifeq ($(HAS_ALTIVEC),yes)
/kernel/linux/linux-5.10/arch/um/drivers/
H A Dumcast_user.c70 int fd, yes = 1, err = -EINVAL; in umcast_open() local
87 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(yes)) < 0) { in umcast_open()
106 &yes, sizeof(yes)) < 0) { in umcast_open()
/kernel/linux/linux-6.6/arch/um/drivers/
H A Dumcast_user.c70 int fd, yes = 1, err = -EINVAL; in umcast_open() local
87 if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(yes)) < 0) { in umcast_open()
106 &yes, sizeof(yes)) < 0) { in umcast_open()
/kernel/linux/linux-5.10/scripts/kconfig/
H A Dsymbol.c16 .curr = { "y", yes },
47 if (sym_is_choice_value(sym) && sym->visible == yes) in sym_get_type()
192 * 'yes'. in sym_calc_visibility()
195 prop->visible.tri == mod && choice_sym->curr.tri == yes) in sym_calc_visibility()
201 tri = yes; in sym_calc_visibility()
208 /* defaulting to "yes" if no explicit "depends on" are given */ in sym_calc_visibility()
209 tri = yes; in sym_calc_visibility()
213 tri = yes; in sym_calc_visibility()
222 tri = yes; in sym_calc_visibility()
231 tri = yes; in sym_calc_visibility()
[all...]
H A Dconfdata.c248 sym->def[def].tri = yes; in conf_set_sym_val()
494 if (cs->def[def].tri == yes) { in conf_read_simple()
499 case yes: in conf_read_simple()
799 sym_get_tristate_value(sym) == yes) in conf_write_defconfig()
1146 if (csym->curr.tri != yes) in randomize_choice_values()
1157 * find a random value and set it to yes, in randomize_choice_values()
1165 sym->def[S_DEF_USER].tri = yes; in randomize_choice_values()
1261 sym->def[S_DEF_USER].tri = yes; in conf_set_all_new_symbols()
1268 sym->def[S_DEF_USER].tri = yes; in conf_set_all_new_symbols()
1277 sym->def[S_DEF_USER].tri = yes; in conf_set_all_new_symbols()
[all...]
H A Dconf.c183 case yes: in conf_sym()
191 if (oldval != yes && sym_tristate_within_range(sym, yes)) in conf_sym()
213 newval = yes; in conf_sym()
248 case yes: in conf_choice()
258 case yes: in conf_choice()
425 (sym_is_choice(sym) && sym_get_tristate_value(sym) == yes)) { in check_conf()
492 printf(" --allyesconfig New config where all options are answered with yes\n"); in conf_usage()
496 printf(" --yes2modconfig Change answers from yes to mod if possible\n"); in conf_usage()
497 printf(" --mod2yesconfig Change answers from mod to yes i in conf_usage()
[all...]
/kernel/linux/linux-6.6/lib/
H A Dbust_spinlocks.c20 void bust_spinlocks(int yes) in bust_spinlocks() argument
22 if (yes) { in bust_spinlocks()
/kernel/linux/linux-5.10/certs/
H A DMakefile50 openssl_available = $(shell openssl help 2>/dev/null && echo yes)
57 ifeq ($(openssl_available),yes)
64 ifeq ($(openssl_available),yes)
70 ifeq ($(openssl_available),yes)
/kernel/linux/linux-5.10/lib/
H A Dbust_spinlocks.c20 void bust_spinlocks(int yes) in bust_spinlocks() argument
22 if (yes) { in bust_spinlocks()
/kernel/linux/linux-5.10/arch/m68k/ifpsp060/src/
H A Dpfpsp.S683 bsr.l unnorm_fix # yes; convert to NORM,DENORM,or ZERO
917 bne.b funfl_extract # yes
926 bsr.l unnorm_fix # yes; convert to NORM,DENORM,or ZERO
1244 bne.w fu_out # yes
1272 bsr.l unnorm_fix # yes; convert to NORM,DENORM,or ZERO
1284 beq.b fu_extract # yes, so it's monadic, too
1292 bsr.l unnorm_fix # yes; convert to NORM,DENORM,or ZERO
1330 beq.b fu_in_exit # yes
1390 bne.w fu_in_exc_unfl # yes
1392 bne.w fu_in_exc_ovfl # yes
[all...]
H A Dfplsp.S593 bsr.l src_zero # yes
598 bsr.l t_operr # yes
603 bsr.l src_qnan # yes
651 bsr.l src_zero # yes
656 bsr.l t_operr # yes
661 bsr.l src_qnan # yes
709 bsr.l src_zero # yes
714 bsr.l t_operr # yes
719 bsr.l src_qnan # yes
770 bsr.l ld_pone # yes
[all...]
/kernel/linux/linux-6.6/arch/m68k/ifpsp060/src/
H A Dpfpsp.S683 bsr.l unnorm_fix # yes; convert to NORM,DENORM,or ZERO
917 bne.b funfl_extract # yes
926 bsr.l unnorm_fix # yes; convert to NORM,DENORM,or ZERO
1244 bne.w fu_out # yes
1272 bsr.l unnorm_fix # yes; convert to NORM,DENORM,or ZERO
1284 beq.b fu_extract # yes, so it's monadic, too
1292 bsr.l unnorm_fix # yes; convert to NORM,DENORM,or ZERO
1330 beq.b fu_in_exit # yes
1390 bne.w fu_in_exc_unfl # yes
1392 bne.w fu_in_exc_ovfl # yes
[all...]
/kernel/linux/linux-6.6/net/ipv4/
H A Dinet_diag.c660 int yes = 1; in inet_diag_bc_run() local
667 yes = 0; in inet_diag_bc_run()
670 yes = entry->sport == op[1].no; in inet_diag_bc_run()
673 yes = entry->sport >= op[1].no; in inet_diag_bc_run()
676 yes = entry->sport <= op[1].no; in inet_diag_bc_run()
679 yes = entry->dport == op[1].no; in inet_diag_bc_run()
682 yes = entry->dport >= op[1].no; in inet_diag_bc_run()
685 yes = entry->dport <= op[1].no; in inet_diag_bc_run()
688 yes = !(entry->userlocks & SOCK_BINDPORT_LOCK); in inet_diag_bc_run()
699 yes in inet_diag_bc_run()
[all...]
/kernel/linux/linux-5.10/arch/arm/mm/
H A Dabort-macro.S20 orreq \tmp, \tmp, #1 << 11 @ Set L-bit if yes
22 orreq \fsr, \fsr, #1 << 11 @ yes.
/kernel/linux/linux-6.6/arch/arm/mm/
H A Dabort-macro.S20 orreq \tmp, \tmp, #1 << 11 @ Set L-bit if yes
22 orreq \fsr, \fsr, #1 << 11 @ yes.

Completed in 24 milliseconds

1234567