| /linux/tools/testing/selftests/bpf/prog_tests/ |
| H A D | core_extern.c | 26 bool fails; member 60 { .name = "tristate (int)", .fails = 1, .cfg = CFG"CONFIG_TRISTATE=1" }, 61 { .name = "tristate (bad)", .fails = 1, .cfg = CFG"CONFIG_TRISTATE=M" }, 67 { .name = "bool (tristate)", .fails = 1, .cfg = CFG"CONFIG_BOOL=m" }, 68 { .name = "bool (int)", .fails = 1, .cfg = CFG"CONFIG_BOOL=1" }, 72 { .name = "char (bad)", .fails = 1, .cfg = CFG"CONFIG_CHAR=q\n" }, 73 { .name = "char (empty)", .fails = 1, .cfg = CFG"CONFIG_CHAR=\n" }, 74 { .name = "char (str)", .fails = 1, .cfg = CFG"CONFIG_CHAR=\"y\"\n" }, 82 { .name = "str (no value)", .fails = 1, .cfg = CFG"CONFIG_STR=\n" }, 83 { .name = "str (bad value)", .fails = 1, .cfg = CFG"CONFIG_STR=bla\n" }, [all …]
|
| H A D | core_reloc.c | 62 .fails = true, \ 87 .fails = true, \ 122 .fails = true, \ 150 .fails = true, \ 223 .fails = true, \ 263 .fails = true, \ 270 .fails = true, \ 311 .fails = true, \ 331 .fails = true, \ 350 .fails = true, \ [all …]
|
| H A D | cpu_mask.c | 35 bool fails; member 66 if (test_cases[i].fails) { in test_cpu_mask()
|
| /linux/tools/perf/tests/ |
| H A D | bp_signal_overflow.c | 68 int fd, i, fails = 0; in test__bp_signal_overflow() local 131 fails++; in test__bp_signal_overflow() 137 fails++; in test__bp_signal_overflow() 140 return fails ? TEST_FAIL : TEST_OK; in test__bp_signal_overflow()
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-platform-dfl-fme | 54 fails with -EINVAL if input parsing fails or input error code 63 fails with -EINVAL if input parsing fails or input error code 83 file to inject errors for testing purpose. Write fails with 84 -EINVAL if input parsing fails or input inject error code isn't 93 fails with -EINVAL if input parsing fails or input error code 197 clamped within the range from 0 to 127 Watts. Write fails with 198 -EINVAL if input parsing fails. 210 clamped within the range from 0 to 127 Watts. Write fails with 211 -EINVAL if input parsing fails.
|
| /linux/Documentation/userspace-api/ |
| H A D | ntsync.rst | 134 zero and ``count`` is nonzero, the function fails with ``EINVAL``. 162 past the semaphore's maximum count, the ioctl fails with 180 If ``owner`` is zero, the ioctl fails with ``EINVAL``. If ``owner`` 181 is not the current owner of the mutex, the ioctl fails with 241 If the mutex is marked as abandoned, the function fails with 262 owner. If the owner is zero, the ioctl fails with ``EINVAL``. If the 263 owner does not own the mutex, the function fails with ``EPERM``. 288 invalid, the function fails with ``EINVAL``. 291 If greater than ``NTSYNC_MAX_WAIT_COUNT``, the function fails 296 ``owner``. If ``owner`` is zero, the ioctl fails with [all …]
|
| /linux/drivers/gpu/drm/ci/xfails/ |
| H A D | msm-apq8016-skips.txt | 15 # Currently fails and causes coverage loss for other tests 16 # since core_getversion also fails.
|
| H A D | meson-g12b-skips.txt | 16 # Currently fails and causes coverage loss for other tests 17 # since core_getversion also fails.
|
| H A D | rockchip-rk3288-skips.txt | 19 # Currently fails and causes coverage loss for other tests 20 # since core_getversion also fails.
|
| H A D | panfrost-g12b-skips.txt | 22 # Currently fails and causes coverage loss for other tests 23 # since core_getversion also fails.
|
| H A D | panfrost-mt8183-skips.txt | 22 # Currently fails and causes coverage loss for other tests 23 # since core_getversion also fails.
|
| H A D | mediatek-mt8173-skips.txt | 16 # Currently fails and causes coverage loss for other tests 17 # since core_getversion also fails.
|
| H A D | mediatek-mt8183-skips.txt | 16 # Currently fails and causes coverage loss for other tests 17 # since core_getversion also fails.
|
| H A D | panfrost-rk3399-skips.txt | 25 # Currently fails and causes coverage loss for other tests 26 # since core_getversion also fails.
|
| H A D | panfrost-rk3288-skips.txt | 25 # Currently fails and causes coverage loss for other tests 26 # since core_getversion also fails.
|
| H A D | rockchip-rk3399-skips.txt | 19 # Currently fails and causes coverage loss for other tests 20 # since core_getversion also fails.
|
| H A D | msm-apq8096-skips.txt | 18 # Currently fails and causes coverage loss for other tests 19 # since core_getversion also fails.
|
| H A D | virtio_gpu-none-skips.txt | 24 # Currently fails and causes coverage loss for other tests 25 # since core_getversion also fails.
|
| H A D | msm-sc7180-trogdor-lazor-limozeen-skips.txt | 18 # Currently fails and causes coverage loss for other tests 19 # since core_getversion also fails.
|
| H A D | msm-sc7180-trogdor-kingoftown-skips.txt | 18 # Currently fails and causes coverage loss for other tests 19 # since core_getversion also fails.
|
| H A D | amdgpu-stoney-skips.txt | 19 # Currently fails and causes coverage loss for other tests 20 # since core_getversion also fails.
|
| /linux/tools/testing/selftests/powerpc/papr_sysparm/ |
| H A D | papr_sysparm.c | 186 size_t fails = 0; in main() local 192 ++fails; in main() 195 return fails == 0 ? EXIT_SUCCESS : EXIT_FAILURE; in main()
|
| /linux/tools/perf/ |
| H A D | builtin-lock.c | 1739 static void print_footer_stdio(int total, int bad, struct lock_contention_fails *fails) in print_footer_stdio() argument 1742 int broken = fails->task + fails->stack + fails->time + fails->data; in print_footer_stdio() 1756 fprintf(lock_output, " %10s: %d\n", "task", fails->task); in print_footer_stdio() 1757 fprintf(lock_output, " %10s: %d\n", "stack", fails->stack); in print_footer_stdio() 1758 fprintf(lock_output, " %10s: %d\n", "time", fails->time); in print_footer_stdio() 1759 fprintf(lock_output, " %10s: %d\n", "data", fails->data); in print_footer_stdio() 1762 static void print_footer_csv(int total, int bad, struct lock_contention_fails *fails, in print_footer_csv() argument 1767 bad = fails->task + fails->stack + fails->time + fails->data; in print_footer_csv() 1776 fprintf(lock_output, "%s bad_%s=%d", sep, "task", fails->task); in print_footer_csv() 1777 fprintf(lock_output, "%s bad_%s=%d", sep, "stack", fails->stack); in print_footer_csv() [all …]
|
| /linux/Documentation/core-api/ |
| H A D | memory-hotplug.rst | 23 Generated if MEM_GOING_ONLINE fails. 36 Generated if MEM_GOING_OFFLINE fails. Memory is available again from 70 This can happen when a consumer fails, meaning we break the callchain and we 96 Generated if NODE_ADDING_FIRST_MEMORY fails. 105 Generated when NODE_CANCEL_REMOVING_LAST_MEMORY fails. 137 This can happen when a consumer fails, meaning we break the callchain and we
|
| /linux/tools/testing/selftests/timers/ |
| H A D | freq-step.c | 241 int i, j, fails = 0; in main() local 253 fails += run_test(0, freq_base, freq_step); in main() 259 if (fails) in main()
|