| /tools/testing/selftests/futex/functional/ |
| A D | futex_requeue_pi_signal_restart.c | 35 futex_t f2 = FUTEX_INITIALIZER; variable 100 info("Calling FUTEX_LOCK_PI on f2=%x @ %p\n", f2, &f2); in waiterfn() 107 info("w2:futex: %x\n", f2); in waiterfn() 156 info("m1:f2: %x\n", f2); in main() 165 info("Calling FUTEX_LOCK_PI on f2=%x @ %p\n", f2, &f2); in main() 166 info("m2:f2: %x\n", f2); in main() 168 info("m3:f2: %x\n", f2); in main() 199 info("m4:f2: %x\n", f2); in main() 212 info("Calling FUTEX_UNLOCK_PI on mutex=%x @ %p\n", f2, &f2); in main() 213 futex_unlock_pi(&f2, FUTEX_PRIVATE_FLAG); in main() [all …]
|
| A D | futex_requeue_pi.c | 42 futex_t f2 = FUTEX_INITIALIZER; variable 124 &f1, f1, &f2); in waiterfn() 138 futex_lock_pi(&f2, NULL, 0, FUTEX_PRIVATE_FLAG); in waiterfn() 140 futex_unlock_pi(&f2, FUTEX_PRIVATE_FLAG); in waiterfn() 162 info("Calling FUTEX_LOCK_PI on mutex=%x @ %p\n", f2, &f2); in broadcast_wakerfn() 185 futex_unlock_pi(&f2, FUTEX_PRIVATE_FLAG); in broadcast_wakerfn() 213 f2, &f2); in signal_wakerfn() 224 info("futex: %x\n", f2); in signal_wakerfn() 227 f2, &f2); in signal_wakerfn() 228 futex_unlock_pi(&f2, FUTEX_PRIVATE_FLAG); in signal_wakerfn() [all …]
|
| A D | futex_requeue.c | 47 volatile futex_t f2 = 0; in main() local 82 res = futex_cmp_requeue(f1, 0, &f2, 0, 1, 0); in main() 92 res = futex_wake(&f2, 1, 0); in main() 115 res = futex_cmp_requeue(f1, 0, &f2, 3, 7, 0); in main() 124 res = futex_wake(&f2, INT_MAX, 0); in main()
|
| A D | futex_requeue_pi_mismatched_ops.c | 32 futex_t f2 = FUTEX_INITIALIZER; variable 96 ret = futex_cmp_requeue_pi(&f1, f1, &f2, 1, 0, FUTEX_PRIVATE_FLAG); in main()
|
| /tools/testing/selftests/bpf/progs/ |
| A D | test_spin_lock_fail.c | 103 f2 = bpf_obj_new(typeof(*f2)); \ 126 struct foo *f1, *f2; in lock_id_mismatch_mapval_mapval() local 133 if (!f2) in lock_id_mismatch_mapval_mapval() 138 bpf_spin_unlock(&f2->lock); in lock_id_mismatch_mapval_mapval() 150 struct foo *f1, *f2; in lock_id_mismatch_innermapval_innermapval1() local 160 f2 = bpf_map_lookup_elem(map, &key); in lock_id_mismatch_innermapval_innermapval1() 161 if (!f2) in lock_id_mismatch_innermapval_innermapval1() 166 bpf_spin_unlock(&f2->lock); in lock_id_mismatch_innermapval_innermapval1() 174 struct foo *f1, *f2; in lock_id_mismatch_innermapval_innermapval2() local 188 if (!f2) in lock_id_mismatch_innermapval_innermapval2() [all …]
|
| A D | test_global_func5.c | 17 int f2(int val, struct __sk_buff *skb) in f2() function 32 return f1(skb) + f2(2, skb) + f3(3, skb); in global_func5()
|
| A D | test_global_func6.c | 17 int f2(int val, struct __sk_buff *skb) in f2() function 32 return f1(skb) + f2(2, skb) + f3(3, skb); in global_func6()
|
| A D | core_reloc_types.h | 962 struct a_complex_struct f2; member 1029 struct a_complex_struct___diff f2; member 1079 union a_union___diff_sz f2; member 1129 struct a_union___incompat f2; member 1192 union a_union f2; member 1248 anon_enum f2; member 1265 enum named_signed_enum64 f2; member 1283 anon_enum___diff f2; member 1300 enum named_signed_enum64___diff f2; member 1316 anon_enum___val3_missing f2; member [all …]
|
| A D | test_global_func4.c | 15 int f2(int val, struct __sk_buff *skb) in f2() function 23 return f2(var, skb) + val; in f3()
|
| A D | test_global_func2.c | 29 int f2(int val, struct __sk_buff *skb) in f2() function 48 return f0(1, skb) + f1(skb) + f2(2, skb) + f3(3, skb, 4); in global_func2()
|
| A D | test_global_func3.c | 15 int f2(int val, struct __sk_buff *skb) in f2() function 23 return f2(var, skb) + val; in f3()
|
| A D | test_global_func1.c | 31 int f2(int val, struct __sk_buff *skb) in f2() function 54 return f0(1, skb) + f1(skb) + f2(2, skb) + f3(3, skb, 4); in global_func1()
|
| A D | linked_list_fail.c | 12 struct foo *f, *f1, *f2; \ 35 f2 = bpf_obj_new(typeof(*f2)); \ 36 if (!f2) { \ 42 bpf_obj_drop(f2); \ 106 CHECK(kptr_kptr, op, &f1->lock, &f2->head); \ 117 CHECK(map_kptr, op, &v->lock, &f2->head); \ 122 CHECK(inner_map_kptr, op, &iv->lock, &f2->head); \ 143 CHECK(kptr_kptr, op, &f1->lock, &f2->head, &b->node); \ 154 CHECK(map_kptr, op, &v->lock, &f2->head, &b->node); \ 159 CHECK(inner_map_kptr, op, &iv->lock, &f2->head, &b->node); \
|
| A D | btf__core_reloc_nesting___err_dup_incompat_types.c | 4 void f2(struct core_reloc_nesting___err_dup_incompat_types__2 x) {} in f2() function
|
| A D | btf__core_reloc_nesting___err_partial_match_dups.c | 4 void f2(struct core_reloc_nesting___err_partial_match_dups__b x) {} in f2() function
|
| A D | btf__core_reloc_nesting___dup_compat_types.c | 4 void f2(struct core_reloc_nesting___dup_compat_types__2 x) {} in f2() function
|
| A D | btf__core_reloc_misc.c | 4 void f2(struct core_reloc_misc___b x) {} in f2() function
|
| A D | res_spin_lock_fail.c | 157 unsigned long f1, f2; in res_spin_lock_ooo_irq() local 164 if (bpf_res_spin_lock_irqsave(&elem->lock, &f2)) { in res_spin_lock_ooo_irq() 169 bpf_res_spin_unlock_irqrestore(&elem->lock, &f2); in res_spin_lock_ooo_irq()
|
| /tools/bootconfig/scripts/ |
| A D | ftrace.sh | 24 cmd=`echo $line | cut -f2- -d: | cut -f1 -d"["` 30 cmd=`echo $line | cut -f2- -d: | cut -f1 -d"["` 56 tr=`echo $t | cut -d: -f2` 65 tr=`echo $t | cut -d: -f2-4` 68 tr=`echo $t | cut -d: -f2`
|
| A D | xbc.sh | 39 grep "^$1 =" $XBC_TMPFILE | cut -d= -f2- | \
|
| /tools/testing/selftests/lkdtm/ |
| A D | run.sh | 43 expect=$(echo "$line" | cut -d" " -f2-) 64 repeat=$(echo "$expect" | cut -d' ' -f1 | cut -d: -f2) 65 expect=$(echo "$expect" | cut -d' ' -f2-)
|
| /tools/testing/selftests/pstore/ |
| A D | pstore_post_reboot_tests | 25 mount_point=`echo ${mount_info} | cut -d' ' -f2 | head -n1` 30 mount_point=`grep pstore /proc/mounts | cut -d' ' -f2 | head -n1`
|
| /tools/testing/selftests/drivers/net/hw/ |
| A D | ethtool_extended_state.sh | 31 | cut -d "(" -f2 | cut -d ")" -f1) 32 local ext_substate=$(echo $ext_state | cut -sd "," -f2 \
|
| /tools/testing/selftests/ftrace/ |
| A D | ftracetest | 161 TRACING_DIR=`grep tracefs /proc/mounts | cut -f2 -d' ' | head -1` 163 DEBUGFS_DIR=`grep debugfs /proc/mounts | cut -f2 -d' ' | head -1` 295 CASENAME=`grep "^#[ \t]*description:" $1 | cut -f2- -d:` 299 requires=`grep "^#[ \t]*requires:" $1 | cut -f2- -d:`
|
| /tools/testing/selftests/ftrace/test.d/ |
| A D | functions | 21 cmd=`echo $line | cut -f2- -d: | cut -f1 -d"["` 27 cmd=`echo $line | cut -f2- -d: | cut -f1 -d"["` 53 tr=`echo $t | cut -d: -f2` 62 tr=`echo $t | cut -d: -f2-4` 65 tr=`echo $t | cut -d: -f2`
|