Home
last modified time | relevance | path

Searched refs:effective (Results 1 – 11 of 11) sorted by relevance

/tools/testing/selftests/bpf/
Dcap_helpers.c25 *old_caps = (__u64)(data[1].effective) << 32 | data[0].effective; in cap_enable_effective()
27 if ((data[0].effective & cap0) == cap0 && in cap_enable_effective()
28 (data[1].effective & cap1) == cap1) in cap_enable_effective()
31 data[0].effective |= cap0; in cap_enable_effective()
32 data[1].effective |= cap1; in cap_enable_effective()
55 *old_caps = (__u64)(data[1].effective) << 32 | data[0].effective; in cap_disable_effective()
57 if (!(data[0].effective & cap0) && !(data[1].effective & cap1)) in cap_disable_effective()
60 data[0].effective &= ~cap0; in cap_disable_effective()
61 data[1].effective &= ~cap1; in cap_disable_effective()
/tools/testing/selftests/powerpc/dexcr/
Dlsdexcr.c13 static unsigned int effective; variable
98 if (!(effective & mask)) in print_aspect()
101 printf("%12s %c (%d): ", aspect->name, effective & mask ? '*' : ' ', aspect->index); in print_aspect()
115 effective = dexcr | hdexcr; in main()
119 print_dexcr("Effective", effective); in main()
126 if (effective & DEXCR_PR_NPHIE) { in main()
/tools/bpf/bpftool/Documentation/
Dbpftool-cgroup.rst27 | **bpftool** **cgroup** { **show** | **list** } *CGROUP* [**effective**]
28 | **bpftool** **cgroup tree** [*CGROUP_ROOT*] [**effective**]
49 **bpftool cgroup { show | list }** *CGROUP* [**effective**]
55 If **effective** is specified retrieve effective programs that
59 **bpftool cgroup tree** [*CGROUP_ROOT*] [**effective**]
68 If **effective** is specified retrieve effective programs that
/tools/testing/selftests/cgroup/
Dtest_cpuset_prs.sh115 ACTUAL_VAL=$(cat cpuset.cpus.effective)
454 ECPUS=$DIR/cpuset.cpus.effective
475 FILE=$CGRP/cpuset.cpus.effective
586 echo "Test $TEST[$I] failed effective CPU check!"
Dmemcg_protection.m15 % E number parent effective protection
/tools/testing/selftests/clone3/
Dclone3_cap_checkpoint_restore.c124 cap->data[1].effective |= 1 << (40 - 32); in set_capability()
/tools/perf/Documentation/
Dperf-config.txt409 that means the value of this option is effective only if there's a
435 and 'lbr'. The value 'dwarf' is effective only if libunwind
Dperf-intel-pt.txt937 be emitted. Thus, it is more effective for attributing cycles to functions
/tools/memory-model/Documentation/
Dsimple.txt138 and effective ways of using it that avoid the need to pay attention to
/tools/testing/selftests/filesystems/fuse/
Dfuse_test.c1394 ucds[0].effective &= ~(1 << CAP_DAC_OVERRIDE | 1 << CAP_DAC_READ_SEARCH); in readdir_perms_test()
1412 ucds[0].effective |= 1 << CAP_DAC_OVERRIDE | 1 << CAP_DAC_READ_SEARCH; in readdir_perms_test()
/tools/bpf/bpftool/bash-completion/
Dbpftool1027 COMPREPLY=( $( compgen -W 'effective' -- "$cur" ) )