/linux-4.1.27/fs/btrfs/ |
D | Makefile | 17 btrfs-$(CONFIG_BTRFS_FS_RUN_SANITY_TESTS) += tests/free-space-tests.o \ 18 tests/extent-buffer-tests.o tests/btrfs-tests.o \ 19 tests/extent-io-tests.o tests/inode-tests.o tests/qgroup-tests.o
|
D | Kconfig | 64 bool "Btrfs will run sanity tests upon loading" 67 This will run some basic sanity tests on the free space cache 69 regression tests and are only really interesting to btrfs
|
/linux-4.1.27/Documentation/ |
D | kselftest.txt | 3 The kernel contains a set of "self tests" under the tools/testing/selftests/ 4 directory. These are intended to be small unit tests to exercise individual 7 On some systems, hot-plug tests could hang forever waiting for cpu and 9 to run full range of hot-plug tests. In default mode, hot-plug tests run 14 Running the selftests (hotplug tests are run in limited mode) 17 To build the tests: 21 To run the tests: 24 To build and run the tests with a single command, use: 27 - note that some tests will require root privileges. 33 single test to run, or a list of tests to run. [all …]
|
D | hw_random.txt | 26 fitness tests, and could potentially be bogus (if the 29 a security-conscious person would run fitness tests on the 32 The rng-tools package uses such tests in "rngd", and lets you
|
D | HOWTO | 225 - the 4.x -next kernel tree for integration tests 320 4.x -next kernel tree for integration tests
|
D | svga.txt | 255 - Hardware testing order slightly changed, tests based on ROM
|
D | kernel-parameters.txt | 809 [KNL] verbose self-tests 812 self-tests. 1854 This tests the locking primitive's ability to 2420 no_timer_check [X86,APIC] Disables the code which tests for 3075 callback-flood tests. 3155 wait for five seconds, and so on. This tests RCU's 3198 Run the RCU early boot self tests 3201 Run the RCU bh early boot self tests 3204 Run the RCU sched early boot self tests
|
D | DMA-API.txt | 145 Notes: This routine merely tests to see if the mask is possible. It
|
D | memory-barriers.txt | 788 These two examples are the LB and WWC litmus tests from this paper:
|
/linux-4.1.27/tools/lib/lockdep/ |
D | run_tests.sh | 5 for i in `ls tests/*.c`; do 7 gcc -o tests/$testname -pthread -lpthread $i liblockdep.a -Iinclude -D__USE_LIBLOCKDEP &> /dev/null 9 if [ $(timeout 1 ./tests/$testname | wc -l) -gt 0 ]; then 14 rm tests/$testname 17 for i in `ls tests/*.c`; do 19 gcc -o tests/$testname -pthread -lpthread -Iinclude $i &> /dev/null 21 if [ $(timeout 1 ./lockdep ./tests/$testname | wc -l) -gt 0 ]; then 26 rm tests/$testname
|
/linux-4.1.27/tools/perf/tests/ |
D | builtin-test.c | 20 } tests[] = { variable 195 if (strstr(tests[curr].desc, argv[i])) in perf_test__matches() 237 while (tests[i].func) { in __cmd_test() 238 int len = strlen(tests[i].desc); in __cmd_test() 246 while (tests[i].func) { in __cmd_test() 252 pr_info("%2d: %-*s:", i, width, tests[curr].desc); in __cmd_test() 260 err = run_test(&tests[curr]); in __cmd_test() 261 pr_debug("---- end ----\n%s:", tests[curr].desc); in __cmd_test() 284 while (tests[i].func) { in perf_test__list() 287 if (argc > 1 && !strstr(tests[curr].desc, argv[1])) in perf_test__list() [all …]
|
D | make | 6 # FIXME looks like x86 is the only arch running tests ;-) 57 # $(run) contains all available tests 100 # $(run_O) contains same portion of $(run) tests with '_O' attached 101 # to distinguish O=... tests 104 # disable some tests for O=... 222 @cmd="$(PERF)/tests/perf-targz-src-pkg $(PERF)"; \
|
D | parse-events.c | 1711 #define TEST_EVENTS(tests) \ in test__parse_events() argument 1713 ret1 = test_events(tests, ARRAY_SIZE(tests)); \ in test__parse_events()
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-test.txt | 6 perf-test - Runs sanity tests. 15 This command does assorted sanity tests, initially through linked routines but 16 also will look for a directory with more tests in the form of scripts. 18 To get a list of available tests use 'perf test list', specifying a test name 19 fragment will show all tests that have it. 21 To run just specific tests, inform test name fragments or the numbers obtained
|
/linux-4.1.27/drivers/net/ethernet/sfc/ |
D | selftest.c | 99 static int efx_test_phy_alive(struct efx_nic *efx, struct efx_self_tests *tests) in efx_test_phy_alive() argument 105 tests->phy_alive = rc ? -1 : 1; in efx_test_phy_alive() 111 static int efx_test_nvram(struct efx_nic *efx, struct efx_self_tests *tests) in efx_test_nvram() argument 117 tests->nvram = rc ? -1 : 1; in efx_test_nvram() 131 struct efx_self_tests *tests) in efx_test_interrupts() argument 137 tests->interrupt = -1; in efx_test_interrupts() 159 tests->interrupt = 1; in efx_test_interrupts() 165 struct efx_self_tests *tests) in efx_test_eventq_irq() argument 213 tests->eventq_dma[channel->channel] = dma_seen ? 1 : -1; in efx_test_eventq_irq() 214 tests->eventq_int[channel->channel] = int_seen ? 1 : -1; in efx_test_eventq_irq() [all …]
|
D | ethtool.c | 303 struct efx_self_tests *tests, in efx_ethtool_fill_self_tests() argument 310 efx_fill_test(n++, strings, data, &tests->phy_alive, in efx_ethtool_fill_self_tests() 312 efx_fill_test(n++, strings, data, &tests->nvram, in efx_ethtool_fill_self_tests() 314 efx_fill_test(n++, strings, data, &tests->interrupt, in efx_ethtool_fill_self_tests() 320 &tests->eventq_dma[channel->channel], in efx_ethtool_fill_self_tests() 324 &tests->eventq_int[channel->channel], in efx_ethtool_fill_self_tests() 329 efx_fill_test(n++, strings, data, &tests->memory, in efx_ethtool_fill_self_tests() 331 efx_fill_test(n++, strings, data, &tests->registers, in efx_ethtool_fill_self_tests() 345 efx_fill_test(n++, strings, data, &tests->phy_ext[i], in efx_ethtool_fill_self_tests() 355 &tests->loopback[mode], mode, n, in efx_ethtool_fill_self_tests()
|
D | selftest.h | 49 int efx_selftest(struct efx_nic *efx, struct efx_self_tests *tests,
|
D | siena.c | 94 static int siena_test_chip(struct efx_nic *efx, struct efx_self_tests *tests) in siena_test_chip() argument 108 tests->registers = in siena_test_chip()
|
D | net_driver.h | 1264 int (*test_chip)(struct efx_nic *efx, struct efx_self_tests *tests);
|
D | ef10.c | 3352 efx_ef10_test_chip(struct efx_nic *efx, struct efx_self_tests *tests) in efx_ef10_test_chip() argument 3363 tests->memory = efx_ef10_run_bist(efx, MC_CMD_MC_MEM_BIST) ? -1 : 1; in efx_ef10_test_chip() 3364 tests->registers = efx_ef10_run_bist(efx, MC_CMD_REG_BIST) ? -1 : 1; in efx_ef10_test_chip()
|
D | falcon.c | 1881 falcon_b0_test_chip(struct efx_nic *efx, struct efx_self_tests *tests) in falcon_b0_test_chip() argument 1900 tests->registers = in falcon_b0_test_chip()
|
/linux-4.1.27/crypto/async_tx/ |
D | raid6test.c | 155 static int test(int disks, int *tests) in test() argument 187 (*tests)++; in test() 198 int tests = 0; in raid6_test() local 212 err += test(4, &tests); in raid6_test() 214 err += test(5, &tests); in raid6_test() 219 err += test(11, &tests); in raid6_test() 220 err += test(12, &tests); in raid6_test() 228 err += test(24, &tests); in raid6_test() 230 err += test(NDISKS, &tests); in raid6_test() 234 tests, err, err == 1 ? "" : "s"); in raid6_test()
|
/linux-4.1.27/drivers/of/unittest-data/ |
D | testcases.dts | 12 #include "tests-phandle.dtsi" 13 #include "tests-interrupts.dtsi" 14 #include "tests-match.dtsi" 15 #include "tests-platform.dtsi" 16 #include "tests-overlay.dtsi" 28 phandle-tests {
|
D | tests-platform.dtsi | 4 platform-tests {
|
D | tests-phandle.dtsi | 11 phandle-tests {
|
/linux-4.1.27/tools/testing/selftests/net/ |
D | socket.c | 25 static struct socket_testcase tests[] = { variable 43 for (i = 0; i < ARRAY_SIZE(tests); i++) { in run_tests() 44 struct socket_testcase *s = &tests[i]; in run_tests()
|
/linux-4.1.27/tools/perf/tests/attr/ |
D | README | 1 The struct perf_event_attr test (attr tests) support 12 The attr tests consist of following parts: 14 tests/attr.c 25 tests/attr.py 30 tests/attr/ 33 Following tests are defined (with perf commands):
|
/linux-4.1.27/tools/testing/selftests/ftrace/ |
D | README | 31 * Take care with side effects as the tests are run with root privilege. 33 * The tests should not run for a long period of time (more than 1 min.) 34 These are to be unit tests. 41 * Note that the tests are run with "set -e" (errexit) option. If any 44 * The tests can return some result codes instead of pass or fail by
|
/linux-4.1.27/Documentation/isdn/ |
D | HiSax.cert | 23 Additional ITU approval tests have been carried out for all generic cards 26 These tests included all layers 1-3 and as well all functional tests for 29 regarded as approved for those tests. Some additional electrical tests 32 solution has been tested including those electrical tests. So if cards 34 for those electrical tests is valid for linux, too.
|
D | README.x25 | 170 tests, the x25-utils package contains a modified version of telnet 172 use those for your first tests. Furthermore, you might check
|
/linux-4.1.27/Documentation/networking/mac80211_hwsim/ |
D | README | 23 and always reproduce the same setup for future tests. In addition, 25 tests regardless of regulatory rules. 30 point and a station) or large scale tests (multiple access points with 67 git://w1.fi/srv/git/hostap.git and mac80211_hwsim/tests subdirectory 68 (http://w1.fi/gitweb/gitweb.cgi?p=hostap.git;a=tree;f=mac80211_hwsim/tests)
|
/linux-4.1.27/Documentation/power/ |
D | drivers-testing.txt | 38 2). [As far as the STR tests are concerned, it should not matter whether or 44 Each of the above tests should be repeated several times and the STD tests 45 should be mixed with the STR tests. If any of them fails, the driver cannot be
|
D | basic-pm-debugging.txt | 89 contains a space-separated list of all available tests (including "none" that 94 one and the "core" level tests the hardware and drivers as deeply as possible 143 A failure of any of the "platform", "processors" or "core" tests may cause your
|
/linux-4.1.27/arch/m68k/ifpsp060/ |
D | TEST.DOC | 32 The files itest.sa and ftest.sa contain simple tests to check 38 hexadecimal images of the actual tests. This format is the 85 are individual tests, they each require their own "Call-out" sections. 148 3 different calls to the package if each of the three following tests 151 main fp test: tests (1) unimp effective address exception 155 FP unimplemented: tests FP unimplemented exception. this one is 156 separate from the previous tests for systems that don't 159 FP enabled: tests enabled snan/operr/ovfl/unfl/dz/inex. 171 Again, itest.sa and ftest.sa are simple tests and do not thoroughly
|
D | MISC | 198 tests
|
/linux-4.1.27/net/hsr/ |
D | Kconfig | 21 described in IEC 62439-3:2010 (HSRv0), but no compliancy tests have 24 You need to perform any and all necessary tests yourself before
|
/linux-4.1.27/Documentation/arm/VFP/ |
D | release-notes.txt | 31 All the above pass softfloat tests with the following exceptions: 39 Other operations which have been tested by basic assembly-only tests
|
/linux-4.1.27/samples/bpf/ |
D | test_verifier.c | 34 static struct bpf_test tests[] = { variable 776 for (i = 0; i < ARRAY_SIZE(tests); i++) { in test() 777 struct bpf_insn *prog = tests[i].insns; in test() 779 int *fixup = tests[i].fixup; in test() 790 printf("#%d %s ", i, tests[i].descr); in test() 796 if (tests[i].result == ACCEPT) { in test() 811 if (strstr(bpf_log_buf, tests[i].errstr) == 0) { in test()
|
/linux-4.1.27/lib/ |
D | Kconfig.kgdb | 40 the tests. The most basic of this I/O module is to boot 44 bool "KGDB: Run tests on boot" 48 Run the kgdb tests on boot up automatically without the need 52 string "KGDB: which internal kgdb tests to run"
|
D | test_bpf.c | 79 static struct bpf_test tests[] = { variable 1876 unsigned int flen = probe_filter_length(tests[which].u.insns); in generate_filter() 1877 __u8 test_type = tests[which].aux & TEST_TYPE_MASK; in generate_filter() 1881 fprog.filter = tests[which].u.insns; in generate_filter() 1885 if (tests[which].aux & FLAG_EXPECTED_FAIL) { in generate_filter() 1917 memcpy(fp->insnsi, tests[which].u.insns_int, in generate_filter() 1930 __u8 test_type = tests[which].aux & TEST_TYPE_MASK; in release_filter() 1994 for (i = 0; i < ARRAY_SIZE(tests); i++) { in test_bpf() 1998 pr_info("#%d %s ", i, tests[i].descr); in test_bpf() 2009 err = run_one(fp, &tests[i]); in test_bpf()
|
D | Kconfig.debug | 1059 bool "Locking API boot-time self-tests" 1070 tristate "torture tests for locking" 1075 This option provides a kernel module that runs torture tests 1079 Say Y here if you want kernel locking-primitive torture tests 1081 Say M if you want these torture tests to build as a module. 1232 tristate "torture tests for RCU" 1238 This option provides a kernel module that runs torture tests 1242 Say Y here if you want RCU torture tests to be built into 1244 Say M if you want the RCU torture tests to build as a module. 1248 bool "torture tests for RCU runnable by default" [all …]
|
/linux-4.1.27/tools/perf/arch/arm/ |
D | Build | 2 libperf-$(CONFIG_DWARF_UNWIND) += tests/
|
/linux-4.1.27/tools/perf/arch/x86/ |
D | Build | 2 libperf-$(CONFIG_DWARF_UNWIND) += tests/
|
/linux-4.1.27/drivers/gpu/drm/nouveau/ |
D | Kbuild | 8 #- code also used by various userspace tools/tests 13 #- code also used by various userspace tools/tests
|
/linux-4.1.27/Documentation/devicetree/ |
D | of_unittest.txt | 26 the test data required for executing the unit tests automated in 30 drivers/of/unittest-data/tests-interrupts.dtsi 31 drivers/of/unittest-data/tests-platform.dtsi 32 drivers/of/unittest-data/tests-phandle.dtsi 33 drivers/of/unittest-data/tests-match.dtsi
|
/linux-4.1.27/include/uapi/linux/netfilter/ |
D | xt_u32.h | 37 struct xt_u32_test tests[XT_U32_MAXSIZE+1]; member
|
/linux-4.1.27/tools/testing/ktest/examples/ |
D | test.conf | 59 INCLUDE include/tests.conf
|
D | kvm.conf | 90 INCLUDE include/tests.conf
|
D | README | 11 lots of different architectures. It only does build tests, but makes
|
/linux-4.1.27/tools/perf/ |
D | Makefile.perf | 313 tests/%.o: $(OUTPUT)tests/%.o 503 $(call QUIET_INSTALL, tests) \ 505 $(INSTALL) tests/attr.py '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests'; \ 507 $(INSTALL) tests/attr/* '$(DESTDIR_SQ)$(perfexec_instdir_SQ)/tests/attr'
|
D | Makefile | 81 @$(MAKE) -f tests/make --no-print-directory
|
D | Build | 27 perf-y += tests/
|
/linux-4.1.27/drivers/mmc/card/ |
D | Kconfig | 65 in host controllers. The tests are executed by writing to the 67 on your card will be overwritten by these tests.
|
/linux-4.1.27/Documentation/fault-injection/ |
D | notifier-error-inject.txt | 98 These scripts first do simple online and offline tests and then do fault 99 injection tests if notifier error injection module is available.
|
D | fault-injection.txt | 49 should_fail() that pass all the other tests.
|
/linux-4.1.27/arch/x86/math-emu/ |
D | README | 170 Timing: Some simple timing tests have been made on the emulator functions. 172 measured on a 33MHz 386 with 64k cache. The Turbo C tests were under 264 The emulator passes the "paranoia" tests (compiled with gcc 2.3.3 or 268 properly performing FPU cannot pass the 'paranoia' tests for 'double' 326 instr arg range # tests 63.7 63.8 63.9 worst at arg 340 486DX2/66 (other tests indicate that an Intel 486DX produces 341 identical results). The tests were basically the same as those used 343 the same). The total number of tests for each instruction are given 344 at the end of the table, in case each about 100k tests were performed.
|
/linux-4.1.27/drivers/mtd/ |
D | Makefile | 33 obj-y += chips/ lpddr/ maps/ devices/ nand/ onenand/ tests/
|
D | Kconfig | 16 tristate "MTD tests support (DANGEROUS)" 19 This option includes various MTD tests into compilation. The tests 23 WARNING: some of the tests will ERASE entire MTD device which they 24 test. Do not use these tests unless you really know what you do.
|
/linux-4.1.27/arch/arm/mach-u300/ |
D | Kconfig | 39 SPI device to be used for loopback tests. Regularly used
|
/linux-4.1.27/drivers/staging/media/mn88473/ |
D | TODO | 14 checkpatch.pl tests. I don't want waste my time to review this kind of
|
/linux-4.1.27/drivers/staging/media/mn88472/ |
D | TODO | 14 checkpatch.pl tests. I don't want waste my time to review this kind of
|
/linux-4.1.27/scripts/coccinelle/null/ |
D | eno.cocci | 40 cocci.print_secs("IS_ERR that should be NULL tests",p2)
|
/linux-4.1.27/net/netfilter/ |
D | xt_u32.c | 34 ct = &data->tests[testind]; in u32_match_it()
|
/linux-4.1.27/Documentation/dmaengine/ |
D | dmatest.txt | 49 before returning. For example, the following scripts wait for 42 tests 85 number of tests executed, number that failed, and a result code.
|
/linux-4.1.27/Documentation/scsi/ |
D | qlogicfas.txt | 62 you can do multiple tests on smaller files. Then do a COMP to verify 64 tests, otherwise you will test your RAM and not the files). Then do
|
D | osd.txt | 57 osd_test.c User-mode application to call the kernel tests 174 TODO: More user-mode control on tests.
|
D | in2000.txt | 138 to see what happens: my tests showed little difference either way.
|
D | ChangeLog.lpfc | 1278 * Fixed crash on driver rmmod after error injection tests and 1793 * Use lpfc_is_LC_HBA() macro that tests pcidev->device directly
|
D | ChangeLog.1992-1997 | 1739 * aha1542.c: Replace 16 with sizeof(SCpnt->sense_buffer). Add tests
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | review-checklist.txt | 20 7. Emulator changes should be accompanied by unit tests for qemu-kvm.git
|
/linux-4.1.27/drivers/staging/media/davinci_vpfe/ |
D | TODO | 21 layer and compatibility tests that warrants (using the libv4l's LD_PRELOAD
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-bus-usb-lvstest | 2 Speed Link Layer tests. These nodes are available in sysfs only when lvs
|
/linux-4.1.27/drivers/of/ |
D | Kconfig | 11 bool "Device Tree runtime unit tests"
|
/linux-4.1.27/Documentation/locking/ |
D | locktorture.txt | 6 that runs torture tests on core kernel locking primitives. The kernel 8 kernel to be tested, if desired. The tests periodically output status
|
/linux-4.1.27/arch/arm/probes/kprobes/ |
D | test-thumb.c | 21 #define DONT_TEST_IN_ITBLOCK(tests) \ argument 23 tests \ 26 #define CONDITION_INSTRUCTIONS(cc_pos, tests) \ argument 28 DONT_TEST_IN_ITBLOCK(tests) \
|
D | test-core.c | 1605 static int run_test_cases(void (*tests)(void), const union decode_item *table) in run_test_cases() 1619 tests(); in run_test_cases()
|
/linux-4.1.27/scripts/coccinelle/misc/ |
D | boolinit.cocci | 1 /// Bool initializations should use true and false. Bool tests don't need
|
/linux-4.1.27/Documentation/RCU/ |
D | torture.txt | 16 result in the tests being loaded into the base kernel. In this case, 18 whether the RCU torture tests are to be started immediately during 21 restart the tests, regardless of the initial state specified by the 24 You will normally -not- want to start the RCU torture tests during boot
|
D | trace.txt | 32 The first line shows the number of rcutorture tests that have completed
|
/linux-4.1.27/arch/xtensa/lib/ |
D | memset.S | 53 movi a6, 3 # for alignment tests
|
/linux-4.1.27/scripts/coccinelle/iterators/ |
D | use_after_iter.cocci | 6 //#reported reference is at the label of this goto. Some flag tests
|
/linux-4.1.27/tools/usb/usbip/ |
D | INSTALL | 29 the results of its tests to speed up reconfiguring. Caching is 55 3. Optionally, type `make check' to run any self-tests that come with 216 Enable the cache: use and save the results of the tests in FILE,
|
/linux-4.1.27/arch/powerpc/ |
D | Kconfig.debug | 59 bool "Run self-tests of the code-patching code." 64 bool "Run self-tests of the feature-fixup code." 69 bool "Run self-tests of the MSI bitmap code."
|
/linux-4.1.27/Documentation/usb/ |
D | mtouchusb.txt | 14 Performed multiple successful tests with an EXII-5010UC
|
/linux-4.1.27/Documentation/networking/ |
D | driver.txt | 47 For a non-scatter-gather supporting card, the three tests simply become:
|
D | e1000e.txt | 279 NOTE: When validating enable/disable tests on some parts (82578, for example) 280 you need to add a few seconds between tests when working with ethtool.
|
D | de4x5.txt | 87 pause whilst the driver figures out where its media went). My tests
|
D | cs89x0.txt | 392 To run the diagnostics tests on the CS8900/20 adapter: 408 assigned during hardware configuration. The following tests are performed:
|
D | eql.txt | 335 Subject: EQL driver tests
|
D | decnet.txt | 173 - How far though the above set of tests can you get ?
|
D | vortex.txt | 446 asks more questions, asks for more tests, asks for patches to be
|
D | ixgb.txt | 214 # several network benchmark tests, your mileage may vary
|
D | scaling.txt | 95 initial tests, so limit the number of queues to the number of CPU cores
|
/linux-4.1.27/net/bluetooth/ |
D | Kconfig | 71 Run self tests when initializing the Bluetooth subsystem. This
|
/linux-4.1.27/tools/perf/bench/ |
D | numa.c | 1643 static const char *tests[][MAX_ARGS] = { variable 1718 int nr = ARRAY_SIZE(tests); in bench_all() 1726 run_bench_numa(tests[i][0], tests[i] + 1); in bench_all()
|
/linux-4.1.27/tools/build/Documentation/ |
D | Build.txt | 95 You can check the 'ex' example in 'tools/build/tests/ex' for more details.
|
/linux-4.1.27/arch/blackfin/ |
D | Kconfig.debug | 235 bool "isram boot self tests" 238 Run some self tests of the isram driver code at boot.
|
/linux-4.1.27/Documentation/timers/ |
D | hrtimers.txt | 153 timer tests in order to ensure specification compliance. We also ran 154 tests on low-resolution clocks.
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | boost.txt | 40 to do tests with and without boosting.
|
/linux-4.1.27/Documentation/infiniband/ |
D | ipoib.txt | 96 performance, because it adds tests to the fast path.
|
/linux-4.1.27/arch/mn10300/ |
D | Kconfig.debug | 15 bool "Run tests on the misalignment handler"
|
/linux-4.1.27/arch/mips/ |
D | Kconfig.debug | 119 bool "Enable spinlock timing tests in debugfs"
|
/linux-4.1.27/arch/x86/ |
D | Kconfig.debug | 284 Do change_page_attr() self-tests every 30 seconds. 318 Some simple tests are run to verify IMR bounds checking, alignment
|
/linux-4.1.27/Documentation/i2c/ |
D | functionality | 94 Before a client tries to attach to an adapter, or even do tests to check
|
/linux-4.1.27/Documentation/power/regulator/ |
D | overview.txt | 124 If the regulator request passes all the constraint tests
|
/linux-4.1.27/kernel/trace/ |
D | Kconfig | 501 This option performs a series of startup tests on ftrace. On bootup 502 a series of tests are made to verify that the tracer is 503 functioning properly. It will do tests on all the configured
|
/linux-4.1.27/arch/m68k/fpsp040/ |
D | x_operr.S | 302 | End_operr tests for operr enabled. If not, it cleans up the stack
|
/linux-4.1.27/drivers/cpufreq/ |
D | Kconfig.arm | 217 tests but not documented in any datasheet.
|
/linux-4.1.27/Documentation/hwmon/ |
D | w83792d | 109 - The function of chassis open detection needs more tests.
|
/linux-4.1.27/Documentation/vm/ |
D | hwpoison.txt | 171 Test suite (hwpoison specific portable tests in tsrc)
|
D | slub.txt | 106 In that case slabinfo -v simply tests all reachable objects. Usually
|
/linux-4.1.27/Documentation/filesystems/ |
D | vfat.txt | 212 This tests quite a few parts of the vfat filesystem and additional 213 tests for new features or untested features would be appreciated.
|
/linux-4.1.27/Documentation/fb/ |
D | udlfb.txt | 155 performance tests to start and finish in a very short
|
D | matroxfb.txt | 307 pretty effects on screen. Device was not destroyed during tests. :-)
|
/linux-4.1.27/Documentation/cgroups/ |
D | memcg_test.txt | 180 Use tests like the following.
|
/linux-4.1.27/ |
D | REPORTING-BUGS | 139 bug reports. That may include running new tests, applying patches,
|
D | CREDITS | 1105 D: Mitsumi LU005 tests and fixes
|
/linux-4.1.27/drivers/iommu/ |
D | Kconfig | 37 Enable self-tests for LPAE page table allocator. This performs
|
/linux-4.1.27/fs/affs/ |
D | Changes | 201 I not find this during my tests?
|
/linux-4.1.27/scripts/ |
D | Kbuild.include | 82 # output directory for tests below
|
/linux-4.1.27/Documentation/x86/ |
D | exception-tables.txt | 18 tests, this normally unneeded verification used up a considerable
|
/linux-4.1.27/arch/m68k/ |
D | Kconfig.cpu | 326 math coprocessor. This makes the kernel a bit faster as no tests
|
/linux-4.1.27/Documentation/serial/ |
D | driver | 75 This function tests whether the transmitter fifo and shifter
|
/linux-4.1.27/drivers/usb/gadget/ |
D | Kconfig | 360 and its driver through a basic set of functional tests.
|
/linux-4.1.27/drivers/usb/gadget/legacy/ |
D | Kconfig | 32 and its driver through a basic set of functional tests.
|
/linux-4.1.27/crypto/ |
D | Kconfig | 113 bool "Disable run-time self tests" 117 Disable run-time self tests that normally take place at
|
/linux-4.1.27/arch/alpha/ |
D | Kconfig | 509 elimiate as many runtime tests as possible.
|
/linux-4.1.27/drivers/usb/host/ |
D | Kconfig | 786 to include other tests that require support from a HCD driver.
|
/linux-4.1.27/arch/m68k/ifpsp060/src/ |
D | fpsp.S | 16328 # IEEE Nonaware tests # 16330 # For the IEEE nonaware tests, only the false branch changes the # 16586 # Miscellaneous tests # 16588 # For the IEEE miscellaneous tests, all but fdbf and fdbt can set bsun. # 16683 # IEEE Aware tests # 16685 # For the IEEE aware tests, action is only taken if the result is false.# 16688 # The BSUN exception will not be set for any of these tests. #
|
/linux-4.1.27/drivers/ide/ |
D | Kconfig | 363 onboard chipsets. It also tests for Simplex mode and enables
|
/linux-4.1.27/arch/arm/ |
D | Kconfig.debug | 1575 Perform tests of kprobes API and instruction set simulation.
|
/linux-4.1.27/Documentation/kbuild/ |
D | makefiles.txt | 534 cc-ifversion tests the version of $(CC) and equals the fourth parameter
|
/linux-4.1.27/Documentation/video4linux/ |
D | vivid.txt | 238 all tests that v4l2-compliance is doing will fail afterwards.
|
/linux-4.1.27/Documentation/filesystems/cifs/ |
D | CHANGES | 979 clients. basic posix file i/o tests now work on big endian machines, not just le
|
/linux-4.1.27/Documentation/cdrom/ |
D | cdrom-standard.tex | 728 set, that it contains tracks of type `data mode 1.' Only if all tests
|
/linux-4.1.27/Documentation/block/ |
D | biodoc.txt | 284 capabilities for certain kinds of fitness tests. Having direct interfaces at
|
/linux-4.1.27/Documentation/trace/ |
D | ftrace.txt | 892 when performing latency tests.
|