/linux-4.1.27/drivers/mmc/card/ |
D | mmc_test.c | 172 struct mmc_test_card *test; member 182 static int mmc_test_set_blksize(struct mmc_test_card *test, unsigned size) in mmc_test_set_blksize() argument 184 return mmc_set_blocklen(test->card, size); in mmc_test_set_blksize() 190 static void mmc_test_prepare_mrq(struct mmc_test_card *test, in mmc_test_prepare_mrq() argument 205 if (!mmc_card_blockaddr(test->card)) in mmc_test_prepare_mrq() 224 mmc_set_data_timeout(mrq->data, test->card); in mmc_test_prepare_mrq() 236 static int mmc_test_wait_busy(struct mmc_test_card *test) in mmc_test_wait_busy() argument 246 cmd.arg = test->card->rca << 16; in mmc_test_wait_busy() 249 ret = mmc_wait_for_cmd(test->card->host, &cmd, 0); in mmc_test_wait_busy() 255 if (test->card->host->caps & MMC_CAP_WAIT_WHILE_BUSY) in mmc_test_wait_busy() [all …]
|
D | Kconfig | 61 tristate "MMC host test driver" 66 "test" file in debugfs under each card. Note that whatever is
|
/linux-4.1.27/drivers/of/unittest-data/ |
D | tests-overlay.dtsi | 6 /* test bus */ 7 unittestbus: test-bus { 12 unittest100: test-unittest100 { 18 unittest101: test-unittest101 { 24 unittest0: test-unittest0 { 30 unittest1: test-unittest1 { 36 unittest2: test-unittest2 { 42 unittest3: test-unittest3 { 48 unittest5: test-unittest5 { 54 unittest6: test-unittest6 { [all …]
|
D | tests-platform.dtsi | 8 test-device@0 { 9 compatible = "test-device"; 16 compatible = "test-sub-device"; 21 test-device@1 { 22 compatible = "test-device"; 29 compatible = "test-sub-device";
|
/linux-4.1.27/tools/perf/tests/attr/ |
D | README | 1 The struct perf_event_attr test (attr tests) support 28 the test definition, executes it and checks results. 32 Directory containing all attr test definitions. 35 perf record kill (test-record-basic) 36 perf record -b kill (test-record-branch-any) 37 perf record -j any kill (test-record-branch-filter-any) 38 perf record -j any_call kill (test-record-branch-filter-any_call) 39 perf record -j any_ret kill (test-record-branch-filter-any_ret) 40 perf record -j hv kill (test-record-branch-filter-hv) 41 perf record -j ind_call kill (test-record-branch-filter-ind_call) [all …]
|
/linux-4.1.27/tools/testing/selftests/powerpc/vphn/ |
D | test-vphn.c | 20 static struct test { struct 365 static int test_one(struct test *test) in test_one() argument 370 vphn_unpack_associativity(test->input, output); in test_one() 373 if (len != test->expected[0]) { in test_one() 374 printf("expected %d elements, got %d\n", test->expected[0], in test_one() 381 if (val != test->expected[i]) { in test_one() 383 test->expected[i]); in test_one() 393 static struct test *test; in test_vphn() local 395 for (test = all_tests; test->descr; test++) { in test_vphn() 398 ret = test_one(test); in test_vphn() [all …]
|
D | .gitignore | 1 test-vphn
|
/linux-4.1.27/samples/kfifo/ |
D | bytestream-example.c | 42 static struct kfifo test; variable 44 static DECLARE_KFIFO(test, unsigned char, FIFO_SIZE); 63 kfifo_in(&test, "hello", 5); in testfunc() 67 kfifo_put(&test, i); in testfunc() 70 printk(KERN_INFO "fifo len: %u\n", kfifo_len(&test)); in testfunc() 73 i = kfifo_out(&test, buf, 5); in testfunc() 77 ret = kfifo_out(&test, buf, 2); in testfunc() 80 ret = kfifo_in(&test, buf, ret); in testfunc() 85 kfifo_skip(&test); in testfunc() 88 for (i = 20; kfifo_put(&test, i); i++) in testfunc() [all …]
|
D | inttype-example.c | 42 static DECLARE_KFIFO_PTR(test, int); 44 static DEFINE_KFIFO(test, int, FIFO_SIZE); 64 kfifo_put(&test, i); in testfunc() 67 printk(KERN_INFO "fifo len: %u\n", kfifo_len(&test)); in testfunc() 70 ret = kfifo_out(&test, buf, 2); in testfunc() 73 ret = kfifo_in(&test, buf, ret); in testfunc() 78 kfifo_skip(&test); in testfunc() 81 for (i = 20; kfifo_put(&test, i); i++) in testfunc() 84 printk(KERN_INFO "queue len: %u\n", kfifo_len(&test)); in testfunc() 87 if (kfifo_peek(&test, &i)) in testfunc() [all …]
|
D | record-example.c | 50 struct kfifo_rec_ptr_1 test; variable 55 static mytest test; variable 80 kfifo_in(&test, &hello, sizeof(hello)); in testfunc() 83 printk(KERN_INFO "fifo peek len: %u\n", kfifo_peek_len(&test)); in testfunc() 88 kfifo_in(&test, buf, i + 1); in testfunc() 93 kfifo_skip(&test); in testfunc() 95 printk(KERN_INFO "fifo len: %u\n", kfifo_len(&test)); in testfunc() 98 ret = kfifo_out_peek(&test, buf, sizeof(buf)); in testfunc() 104 while (!kfifo_is_empty(&test)) { in testfunc() 105 ret = kfifo_out(&test, buf, sizeof(buf)); in testfunc() [all …]
|
/linux-4.1.27/tools/testing/selftests/ftrace/ |
D | README | 5 shell scripts for testing. Feel free to add new test cases. 17 # ./ftracetest test.d/basic3.tc 21 # ./ftracetest test.d/kprobe/ 26 Copy test.d/template to your testcase (whose filename must have *.tc 27 extension) and rewrite the test description line. 36 * You can add a directory for your testcases under test.d/ if needed. 38 * The test cases should run on dash (busybox shell) for testing on 42 command fails, the test will be terminated immediately. 52 * PASS: The test succeeded as expected. The test which exits with 0 is 53 counted as passed test. [all …]
|
/linux-4.1.27/drivers/usb/musb/ |
D | musb_debugfs.c | 146 unsigned test; in musb_test_mode_show() local 148 test = musb_readb(musb->mregs, MUSB_TESTMODE); in musb_test_mode_show() 150 if (test & MUSB_TEST_FORCE_HOST) in musb_test_mode_show() 153 if (test & MUSB_TEST_FIFO_ACCESS) in musb_test_mode_show() 156 if (test & MUSB_TEST_FORCE_FS) in musb_test_mode_show() 159 if (test & MUSB_TEST_FORCE_HS) in musb_test_mode_show() 162 if (test & MUSB_TEST_PACKET) in musb_test_mode_show() 165 if (test & MUSB_TEST_K) in musb_test_mode_show() 168 if (test & MUSB_TEST_J) in musb_test_mode_show() 171 if (test & MUSB_TEST_SE0_NAK) in musb_test_mode_show() [all …]
|
/linux-4.1.27/lib/ |
D | crc32.c | 871 } const test[] __initconst = variable 992 bytes += 2*test[i].length; 994 crc ^= __crc32c_le(test[i].crc, test_buf + 995 test[i].start, test[i].length); 1004 if (test[i].crc32c_le != __crc32c_le(test[i].crc, test_buf + 1005 test[i].start, test[i].length)) 1036 crc_full = __crc32c_le(test[i].crc, test_buf + test[i].start, 1037 test[i].length); 1038 for (j = 0; j <= test[i].length; ++j) { 1040 u32 len1 = j, len2 = test[i].length - j; [all …]
|
D | test_user_copy.c | 28 #define test(condition, msg) \ macro 62 ret |= test(copy_from_user(kmem, usermem, PAGE_SIZE), in test_user_copy_init() 64 ret |= test(copy_to_user(usermem, kmem, PAGE_SIZE), in test_user_copy_init() 66 ret |= test(get_user(value, (unsigned long __user *)usermem), in test_user_copy_init() 68 ret |= test(put_user(value, (unsigned long __user *)usermem), in test_user_copy_init() 72 ret |= test(!copy_from_user(kmem, (char __user *)(kmem + PAGE_SIZE), in test_user_copy_init() 75 ret |= test(!copy_from_user(bad_usermem, (char __user *)kmem, in test_user_copy_init() 78 ret |= test(!copy_to_user((char __user *)kmem, kmem + PAGE_SIZE, in test_user_copy_init() 81 ret |= test(!copy_to_user((char __user *)kmem, bad_usermem, in test_user_copy_init() 84 ret |= test(!get_user(value, (unsigned long __user *)kmem), in test_user_copy_init() [all …]
|
D | test-kstrtox.c | 5 #define for_each_test(i, test) \ argument 6 for (i = 0; i < ARRAY_SIZE(test); i++) 13 #define DEFINE_TEST_FAIL(test) \ argument 14 const struct test_fail test[] __initconst 23 #define DEFINE_TEST_OK(type, test) \ argument 24 const type test[] __initconst 26 #define TEST_FAIL(fn, type, fmt, test) \ argument 30 for_each_test(i, test) { \ 31 const struct test_fail *t = &test[i]; \ 45 #define TEST_OK(fn, type, fmt, test) \ argument [all …]
|
D | test-hexdump.c | 48 char test[32 * 3 + 2 + 32 + 1]; in test_hexdump() local 76 memset(test, ' ', sizeof(test)); in test_hexdump() 79 p = test; in test_hexdump() 92 p = test + rs * 2 + rs / gs + 1; in test_hexdump() 99 if (strcmp(test, real)) { in test_hexdump() 102 pr_err("Expect: '%s'\n", test); in test_hexdump()
|
D | glob.c | 140 static bool __pure __init test(char const *pat, char const *str, bool expected) in test() function 269 successes += test(pat, p, expected); in glob_init()
|
D | test_bpf.c | 76 } test[MAX_SUBTESTS]; member 1841 static void *generate_test_data(struct bpf_test *test, int sub) in generate_test_data() argument 1843 if (test->aux & FLAG_NO_DATA) in generate_test_data() 1850 return populate_skb(test->data, test->test[sub].data_size); in generate_test_data() 1853 static void release_test_data(const struct bpf_test *test, void *data) in release_test_data() argument 1855 if (test->aux & FLAG_NO_DATA) in release_test_data() 1961 static int run_one(const struct bpf_prog *fp, struct bpf_test *test) in run_one() argument 1970 if (test->test[i].data_size == 0 && in run_one() 1971 test->test[i].result == 0) in run_one() 1974 data = generate_test_data(test, i); in run_one() [all …]
|
D | Kconfig | 109 bool "CRC32 perform self test on init" 114 self test on initialization. The self test computes crc32_le 206 bool "PRNG perform self test on init" 210 self test on initialization. 426 bool "glob self-test on init" 430 This option enables a simple self-test of the glob_match
|
D | Kconfig.kgdb | 32 bool "KGDB: internal test suite" 35 This is a kgdb I/O module specifically designed to test 56 This is the command string to send the kgdb test suite on
|
D | Kconfig.debug | 523 tristate "Simple test for the kernel memory leak detector" 947 will test all possible w/w mutex interface abuse with the 1062 Say Y here if you want the kernel to run a short self-test during 1063 bootup. The self-test checks whether common types of locking bugs 1360 specified notifier chain callbacks. It is useful to test the error 1369 This option provides a kernel module that can be used to test 1474 useful to test the error handling in the mmc block device 1475 and to test how the mmc host driver handles retries from 1520 The copy_from_user() etc checks are there to help test if there 1547 bool "Linked list sorting test" [all …]
|
/linux-4.1.27/crypto/ |
D | testmgr.c | 119 int (*test)(const struct alg_test_desc *desc, const char *driver, member 1724 static int drbg_cavs_test(struct drbg_testvec *test, int pr, in drbg_cavs_test() argument 1731 unsigned char *buf = kzalloc(test->expectedlen, GFP_KERNEL); in drbg_cavs_test() 1745 drbg_string_fill(&testentropy, test->entropy, test->entropylen); in drbg_cavs_test() 1746 drbg_string_fill(&pers, test->pers, test->perslen); in drbg_cavs_test() 1753 drbg_string_fill(&addtl, test->addtla, test->addtllen); in drbg_cavs_test() 1755 drbg_string_fill(&testentropy, test->entpra, test->entprlen); in drbg_cavs_test() 1757 buf, test->expectedlen, &addtl, &test_data); in drbg_cavs_test() 1760 buf, test->expectedlen, &addtl); in drbg_cavs_test() 1768 drbg_string_fill(&addtl, test->addtlb, test->addtllen); in drbg_cavs_test() [all …]
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-test.txt | 1 perf-test(1) 6 perf-test - Runs sanity tests. 11 'perf test [<options>] [{list <test-name-fragment>|[<test-name-fragments>|<test-numbers>]}]' 18 To get a list of available tests use 'perf test list', specifying a test name 21 To run just specific tests, inform test name fragments or the numbers obtained 22 from 'perf test list'.
|
/linux-4.1.27/Documentation/dmaengine/ |
D | dmatest.txt | 6 This small document introduces how to test DMA drivers using dmatest module. 8 Part 1 - How to build the test module 37 emitted. After that only test failure messages are reported until the test 40 Note that running a new test will not stop any in progress test. 42 The following command returns the state of the test. 45 To wait for test completion userpace can poll 'run' until it is false, or use 47 initialization to pause until a test run has completed, while reading 48 /sys/module/dmatest/parameters/wait waits for any running test to complete 64 for the first performed test. After user gets a control, the test could be 68 In both cases the module parameters are used as the actual values for the test [all …]
|
/linux-4.1.27/Documentation/devicetree/ |
D | of_unittest.txt | 8 This document explains how the test data required for executing OF unittest 17 OF Selftest has been designed to test the interface (include/linux/of.h) 26 the test data required for executing the unit tests automated in 53 2.1. Adding the test data 101 Before executing OF unittest, it is required to attach the test data to 106 __dtb_testcases_begin - address marking the start of test data blob 107 __dtb_testcases_end - address marking the end of test data blob 111 then it attaches the unflattened test data tree to the live tree, else it 115 live tree as explained below. To explain the same, the test data tree described 122 test-child0 -> test-sibling1 -> test-sibling2 -> test-sibling3 -> null [all …]
|
/linux-4.1.27/tools/perf/tests/ |
D | make | 107 # define test for each compile as 'test_NAME' variable 108 # with the test itself as a value 109 test_make_tags = test -f tags 110 test_make_cscope = test -f cscope.out 121 test_make_python_perf_so := test -f $(PERF)/python/perf.so 123 test_make_perf_o := test -f $(PERF)/perf.o 124 test_make_util_map_o := test -f $(PERF)/util/map.o 125 test_make_util_pmu_bison_o := test -f $(PERF)/util/pmu-bison.o 159 test_make_install_man := test -f $$TMP_DEST/share/man/man1/perf.1 178 test_make_python_perf_so_O := test -f $$TMP_O/python/perf.so [all …]
|
D | attr.py | 13 def __init__(self, test, msg): argument 15 self.test = test 17 return '\'%s\' - %s' % (self.test.path, self.msg) 20 def __init__(self, test): argument 21 self.test = test 23 return '\'%s\'' % self.test.path 263 for f in glob.glob(options.test_dir + '/' + options.test): 318 if not options.test: 319 options.test = 'test*'
|
D | builtin-test.c | 17 static struct test { struct 202 static int run_test(struct test *test) in run_test() argument 215 err = test->func(); in run_test()
|
D | kmod-path.c | 6 static int test(const char *path, bool alloc_name, bool alloc_ext, in test() function 38 TEST_ASSERT_VAL("failed", !test(path, an, ae, k, c, n, e))
|
/linux-4.1.27/drivers/scsi/aic7xxx/ |
D | aic79xx.seq | 52 test SEQINTCODE, 0xFF jz idle_loop; 65 test ERROR, 0xFF jz no_error_set; 70 test SCSISEQ0, ENSELO|ENARBO jnz idle_loop_checkbus; 71 test SEQ_FLAGS2, SELECTOUT_QFROZEN jz check_waiting_list; 82 test SSTAT0, SELDO|SELINGO jnz idle_loop_checkbus; 109 * ENSELO is cleared by a SELDO, so we must test for SELDO 112 test SSTAT0, SELDO jnz select_out; 115 test SSTAT0, SELDO jnz select_out; 117 test SSTAT0, SELDI jnz select_in; 118 test SCSIPHASE, ~DATA_PHASE_MASK jz idle_loop_check_nonpackreq; [all …]
|
D | aic7xxx.seq | 81 test SCSISEQ, ENSELO jnz poll_for_selection; 84 test SCSISEQ, ENSELO jnz poll_for_selection; 91 test SSTAT0, SELDO|SELDI jnz selection; 96 test QOFF_CTLSTA, SCB_AVAIL jz poll_for_work_loop; 159 test SSTAT0, SELDO|SELDI jz poll_for_selection; 176 test SSTAT0, SELDI|SELDO jz bus_free_sel; 177 test SSTAT0,SELDO jnz select_out; 181 test SSTAT0, TARGET jz initiator_reselect; 221 test SBLKCTL, SELBUSB jz . + 2; 236 test SCSISIGI, ATNI jz target_busfree; [all …]
|
/linux-4.1.27/arch/m68k/ifpsp060/ |
D | TEST.DOC | 75 is NOT INCLUDED in {i,f}test.sa (an example "Call-out" section is provided at 76 the end of this file). The purpose of this section is to allow the test 80 to a function required by the test packages (these functions and their 84 sit adjacent to the {i,f}test.sa image in memory. Since itest.sa and ftest.sa 88 to access the test routines. Since the {i,f}test.sa hex files contain 95 For example, to run the 060ISP test, write a program that includes the 101 section is 128 bytes long; and the 68060ISP test entry point is located 105 the entry code jumps to the appropriate test code within the code section. 117 The test packages call _print_string() and _print_number() 120 In "C"-like fashion, the test program calls: [all …]
|
D | README | 57 ftest.sa Simple test program to test that {p}fpsp.sa 59 ftest.s above test; source code 61 itest.sa Simple test program to test that isp.sa was 63 itest.s above test; source code 65 test.doc on-line documentation for {i,f}test.sa
|
/linux-4.1.27/drivers/staging/lustre/lnet/selftest/ |
D | console.c | 929 lstcon_test_t *test = NULL; in lstcon_batch_info() local 942 list_for_each_entry(test, &bat->bat_test_list, tes_link) { in lstcon_batch_info() 953 clilst = (test == NULL) ? &bat->bat_cli_list : in lstcon_batch_info() 954 &test->tes_src_grp->grp_ndl_list; in lstcon_batch_info() 955 srvlst = (test == NULL) ? &bat->bat_srv_list : in lstcon_batch_info() 956 &test->tes_dst_grp->grp_ndl_list; in lstcon_batch_info() 969 if (test == NULL) { in lstcon_batch_info() 975 entp->u.tbe_test.tse_type = test->tes_type; in lstcon_batch_info() 976 entp->u.tbe_test.tse_loop = test->tes_loop; in lstcon_batch_info() 977 entp->u.tbe_test.tse_concur = test->tes_concur; in lstcon_batch_info() [all …]
|
D | conrpc.c | 813 lstcon_test_t *test, lstcon_rpc_t **crpc) in lstcon_testrpc_prep() argument 815 lstcon_group_t *sgrp = test->tes_src_grp; in lstcon_testrpc_prep() 816 lstcon_group_t *dgrp = test->tes_dst_grp; in lstcon_testrpc_prep() 825 npg = sfw_id_pages(test->tes_span); in lstcon_testrpc_prep() 828 sizeof(lnet_process_id_packed_t) * test->tes_span; in lstcon_testrpc_prep() 838 int ndist = (sgrp->grp_nnode + test->tes_dist - 1) / test->tes_dist; in lstcon_testrpc_prep() 839 int nspan = (dgrp->grp_nnode + test->tes_span - 1) / test->tes_span; in lstcon_testrpc_prep() 843 trq->tsr_loop = nmax * test->tes_dist * test->tes_concur; in lstcon_testrpc_prep() 872 rc = lstcon_dstnodes_prep(test->tes_dst_grp, in lstcon_testrpc_prep() 873 test->tes_cliidx++, in lstcon_testrpc_prep() [all …]
|
D | conrpc.h | 120 struct lstcon_test *test, lstcon_rpc_t **crpc);
|
/linux-4.1.27/drivers/media/radio/ |
D | radio-cadet.c | 163 unsigned freq = 0, test, fifo = 0; in cadet_getfreq() local 176 test = 12500; in cadet_getfreq() 179 freq += test; in cadet_getfreq() 180 test = test << 1; in cadet_getfreq() 191 unsigned test; in cadet_settune() local 197 test = 0; in cadet_settune() 198 test = (fifo >> 23) & 0x02; /* Align data for SDO */ in cadet_settune() 199 test |= 0x1c; /* SDM=1, SWE=1, SEN=1, SCK=0 */ in cadet_settune() 201 outb(test, dev->io + 1); /* Initialize for write */ in cadet_settune() 203 test |= 0x01; /* Toggle SCK High */ in cadet_settune() [all …]
|
/linux-4.1.27/Documentation/power/ |
D | basic-pm-debugging.txt | 14 test at least a couple of times in a row for confidence. [This is necessary, 44 core run in a test mode. There are 5 test modes available: 47 - test the freezing of processes 50 - test the freezing of processes and suspending of devices 53 - test the freezing of processes, suspending of devices and platform 57 - test the freezing of processes, suspending of devices, platform 61 - test the freezing of processes, suspending of devices, platform global 69 /sys/power/pm_test (eg. "devices" to test the freezing of processes and 71 to use the "devices" test mode along with the "platform" mode of hibernation, 90 represents the normal functionality) in which the current test level is [all …]
|
D | drivers-testing.txt | 4 1. Preparing the test system 6 Unfortunately, to effectively test the support for the system-wide suspend and 14 Of course, for this purpose the test system has to be known to suspend and 16 resolve all suspend/resume-related problems in the test system before you start 22 Once you have resolved the suspend/resume-related problems with your test system 23 without the new driver, you are ready to test it: 25 a) Build the driver as a module, load it and try the test modes of hibernation 31 c) Compile the driver directly into the kernel and try the test modes of 37 e) Try the test modes of suspend (see: Documentation/power/basic-pm-debugging.txt,
|
D | interface.txt | 27 modes of the suspend-to-disk mechanism: 'testproc' or 'test'. If the 31 in the 'test' mode, writing 'disk' to /sys/power/state will cause the kernel 40 [shutdown] reboot test testproc 48 'test'
|
/linux-4.1.27/arch/frv/include/asm/ |
D | cmpxchg.h | 80 extern uint64_t __cmpxchg_64(uint64_t test, uint64_t new, volatile uint64_t *v); 84 #define cmpxchg(ptr, test, new) \ argument 88 __typeof__(*(ptr)) __xg_test = (test); \ 122 extern uint32_t __cmpxchg_32(uint32_t *v, uint32_t test, uint32_t new); 124 #define cmpxchg(ptr, test, new) \ argument 128 __typeof__(*(ptr)) __xg_test = (test); \
|
/linux-4.1.27/arch/x86/um/os-Linux/ |
D | task_size.c | 80 unsigned long test, original; in os_get_top_address() local 123 test = bottom + (top - bottom) / 2; in os_get_top_address() 124 if (page_ok(test)) in os_get_top_address() 125 bottom = test; in os_get_top_address() 127 top = test; in os_get_top_address()
|
/linux-4.1.27/drivers/net/wireless/ti/wl12xx/ |
D | cmd.h | 34 struct wl1271_cmd_test_header test; member 49 struct wl1271_cmd_test_header test; member 64 struct wl1271_cmd_test_header test; member 80 struct wl1271_cmd_test_header test; member 99 struct wl1271_cmd_test_header test; member
|
D | cmd.c | 43 ext_radio_parms->test.id = TEST_CMD_INI_FILE_RF_EXTENDED_PARAM; in wl1271_cmd_ext_radio_parms() 84 gen_parms->test.id = TEST_CMD_INI_FILE_GENERAL_PARAM; in wl1271_cmd_general_parms() 151 gen_parms->test.id = TEST_CMD_INI_FILE_GENERAL_PARAM; in wl128x_cmd_general_parms() 212 radio_parms->test.id = TEST_CMD_INI_FILE_RADIO_PARAM; in wl1271_cmd_radio_parms() 256 radio_parms->test.id = TEST_CMD_INI_FILE_RADIO_PARAM; in wl128x_cmd_radio_parms()
|
/linux-4.1.27/drivers/staging/speakup/ |
D | speakup_audptr.c | 147 unsigned char test = 0; in synth_version() local 151 synth_id[test] = spk_serial_in(); in synth_version() 152 if (synth_id[test] == 'A') { in synth_version() 155 synth_id[++test] = spk_serial_in(); in synth_version() 156 } while (synth_id[test] != '\n' && test < 32); in synth_version() 157 synth_id[++test] = 0x00; in synth_version()
|
/linux-4.1.27/Documentation/cgroups/ |
D | memcg_test.txt | 126 When you do test to do racy case, it's good test to set memcg's limit 127 to be very small rather than GB. Many races found in the test under 135 SwapCache. Test with shmem/tmpfs is always good test. 138 For NUMA, migration is an another special case. To do easy test, cpuset 172 memory hotplug test is one of good test. 176 This is an easy way to test page migration, too. 179 When using hierarchy, mkdir/rmdir test should be done. 198 Mounting with other subsystems is a good test because there is a 211 For example, test like following is good. 214 # mkdir /cgroup/test [all …]
|
/linux-4.1.27/Documentation/prctl/ |
D | .gitignore | 1 disable-tsc-ctxt-sw-stress-test 2 disable-tsc-on-off-stress-test 3 disable-tsc-test
|
/linux-4.1.27/tools/usb/ |
D | testusb.c | 135 int test; member 317 if (dev->test != -1 && dev->test != i) in handle_testdev() 384 int test = -1 /* all */; in main() local 435 test = atoi (optarg); in main() 436 if (test < 0) in main() 501 entry->test = test; in main() 523 dev.test = test; in main()
|
/linux-4.1.27/drivers/net/ethernet/intel/ixgbevf/ |
D | ethtool.c | 590 const struct ixgbevf_reg_test *test; in ixgbevf_reg_test() local 599 test = reg_test_vf; in ixgbevf_reg_test() 604 while (test->reg) { in ixgbevf_reg_test() 605 for (i = 0; i < test->array_len; i++) { in ixgbevf_reg_test() 608 switch (test->test_type) { in ixgbevf_reg_test() 611 test->reg + (i * 0x40), in ixgbevf_reg_test() 612 test->mask, in ixgbevf_reg_test() 613 test->write); in ixgbevf_reg_test() 617 test->reg + (i * 0x40), in ixgbevf_reg_test() 618 test->mask, in ixgbevf_reg_test() [all …]
|
/linux-4.1.27/crypto/async_tx/ |
D | raid6test.c | 155 static int test(int disks, int *tests) in test() function 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()
|
/linux-4.1.27/scripts/rt-tester/ |
D | rt-tester.py | 19 test = 0 variable 115 test = 1 variable 170 if test: 202 if test: 212 if not test:
|
D | t2-l1-signal.tst | 2 # RT-Mutex test
|
D | t2-l1-pi.tst | 2 # RT-Mutex test
|
D | t3-l1-pi-1rt.tst | 2 # rt-mutex test
|
D | t2-l2-2rt-deadlock.tst | 2 # RT-Mutex test
|
D | t3-l1-pi-3rt.tst | 2 # rt-mutex test
|
D | t3-l2-pi.tst | 2 # rt-mutex test
|
D | t2-l1-2rt-sameprio.tst | 2 # RT-Mutex test
|
D | t3-l1-pi-2rt.tst | 2 # rt-mutex test
|
D | t3-l1-pi-steal.tst | 2 # rt-mutex test
|
D | t3-l1-pi-signal.tst | 2 # rt-mutex test
|
/linux-4.1.27/fs/btrfs/ |
D | ordered-data.c | 82 struct rb_node *test; in __tree_search() local 102 test = rb_next(prev); in __tree_search() 103 if (!test) in __tree_search() 105 prev_entry = rb_entry(test, struct btrfs_ordered_extent, in __tree_search() 110 prev = test; in __tree_search() 116 test = rb_prev(prev); in __tree_search() 117 if (!test) in __tree_search() 119 prev_entry = rb_entry(test, struct btrfs_ordered_extent, in __tree_search() 121 prev = test; in __tree_search() 884 struct btrfs_ordered_extent *test; in btrfs_ordered_update_i_size() local [all …]
|
/linux-4.1.27/arch/x86/net/ |
D | bpf_jit.S | 29 test %esi,%esi 46 test %esi,%esi 63 test %esi,%esi 83 test %eax,%eax; \ 116 test %rax,%rax; \
|
/linux-4.1.27/drivers/vhost/ |
D | test.c | 168 static long vhost_test_run(struct vhost_test *n, int test) in vhost_test_run() argument 174 if (test < 0 || test > 1) in vhost_test_run() 193 priv = test ? n : NULL; in vhost_test_run() 266 int test; in vhost_test_ioctl() local 271 if (copy_from_user(&test, argp, sizeof test)) in vhost_test_ioctl() 273 return vhost_test_run(n, test); in vhost_test_ioctl()
|
/linux-4.1.27/Documentation/device-mapper/ |
D | log-writes.txt | 82 <run test> 99 Say you want to test fsync on your file system. You would do something like 107 mount /dev/mapper/log /mnt/btrfs-test 108 <some test that does fsync at the end> 110 md5sum /mnt/btrfs-test/foo 111 umount /mnt/btrfs-test 115 mount /dev/sdb /mnt/btrfs-test 116 md5sum /mnt/btrfs-test/foo 127 mount /dev/mapper/log /mnt/btrfs-test 129 btrfs filesystem balance /mnt/btrfs-test [all …]
|
D | dm-service-time.txt | 73 dmsetup create test 76 test: 0 10 multipath 0 0 1 1 service-time 0 2 2 8:0 128 1 8:16 128 4 79 test: 0 10 multipath 2 0 0 0 1 1 E 0 2 2 8:0 A 0 0 1 8:16 A 0 0 4 85 dmsetup create test 88 test: 0 10 multipath 0 0 1 1 service-time 0 2 2 8:0 128 2 8:16 128 8 91 test: 0 10 multipath 2 0 0 0 1 1 E 0 2 2 8:0 A 0 0 2 8:16 A 0 0 8
|
D | dm-queue-length.txt | 33 dmsetup create test 36 test: 0 10 multipath 0 0 1 1 queue-length 0 2 1 8:0 128 8:16 128 39 test: 0 10 multipath 2 0 0 0 1 1 E 0 2 1 8:0 A 0 0 8:16 A 0 0
|
/linux-4.1.27/security/apparmor/ |
D | procattr.c | 114 int aa_setprocattr_changehat(char *args, size_t size, int test) in aa_setprocattr_changehat() argument 148 return aa_change_hat(hats, count, token, test); in aa_setprocattr_changehat() 159 int aa_setprocattr_changeprofile(char *fqname, bool onexec, int test) in aa_setprocattr_changeprofile() argument 164 return aa_change_profile(ns_name, name, onexec, test); in aa_setprocattr_changeprofile()
|
/linux-4.1.27/Documentation/leds/ |
D | leds-blinkm.txt | 56 blue green red test 59 and a test sequence. 67 #Write into test to start test sequence!# 69 $ echo 1 > test
|
/linux-4.1.27/net/bluetooth/ |
D | Kconfig | 75 When the Bluetooth subsystem is built as module, then the test 77 subsystem is compiled into the kernel image, then the test cases 81 bool "ECDH test cases" 84 Run test cases for ECDH cryptographic functionality used by the 88 bool "SMP test cases" 91 Run test cases for SMP cryptographic functionality, including both
|
/linux-4.1.27/Documentation/ |
D | gcov.txt | 9 6. Separated build and test machines 35 * test improvement (how do I change my test to cover these lines?) 135 6. Separated build and test machines 145 The gcov tool version on the test machine must be compatible with the 147 copied from build to test machine: 158 exact same file system location on the test machine as on the build 164 The following files need to be copied after each test case from test 178 /tmp/coverage: location of the files copied from the test machine 225 echo "$DEST successfully created, copy to test system and unpack with:" 235 Sample script to gather coverage data files on the test machine
|
D | basic_profiling.txt | 6 <test> is the thing you're trying to measure. 25 <test> 49 <test>
|
D | kselftest.txt | 10 in safe mode with a limited scope. In limited mode, cpu-hotplug test is 12 hotplug test is run on 2% of hotplug capable memory instead of 10%. 33 single test to run, or a list of tests to run.
|
D | static-keys.txt | 147 simply fall back to a traditional, load, test, and jump sequence. 212 ffffffff810441fa: 85 c0 test %eax,%eax 230 Thus, the disable jump label case adds a 'mov', 'test' and 'jne' instruction 235 6 (mov) + 2 (test) + 2 (jne) = 10 - 5 (5 byte jump 0) = 5 addition bytes. 246 'pipe-test' (also known as 'perf bench sched pipe') can be used to show the 251 Performance counter stats for 'bash -c /tmp/pipe-test' (50 runs): 268 Performance counter stats for 'bash -c /tmp/pipe-test' (50 runs):
|
D | edac.txt | 550 /sys/devices/systm/edac/test-instance 565 test_bits which in the current test driver does nothing but 579 test-instance0 593 test-block0 606 test-block-bits-0 for every POLL cycle this counter 608 test-block-bits-1 every 10 cycles, this counter is bumped once, 609 and test-block-bits-0 is set to 0 610 test-block-bits-2 every 100 cycles, this counter is bumped once, 611 and test-block-bits-1 is set to 0 612 test-block-bits-3 every 1000 cycles, this counter is bumped once, [all …]
|
/linux-4.1.27/Documentation/RCU/ |
D | torture.txt | 8 be loaded to run a torture test. The test periodically outputs 10 command (perhaps grepping for "torture"). The test is started 53 gives best overall test coverage. 100 The number of seconds to keep the test threads affinitied 104 shutdown_secs The number of seconds to run the test before terminating 105 the test and powering off the system. The default is 106 zero, which disables test termination and system shutdown. 134 stutter The length of time to run the test before pausing for this 137 Specifying "stutter=0" causes the test to run continuously 140 test_boost Whether or not to test the ability of RCU to do priority [all …]
|
/linux-4.1.27/security/apparmor/include/ |
D | procattr.h | 22 int aa_setprocattr_changehat(char *args, size_t size, int test); 23 int aa_setprocattr_changeprofile(char *fqname, bool onexec, int test);
|
/linux-4.1.27/tools/testing/selftests/rcutorture/doc/ |
D | rcu-test-image.txt | 1 This document describes one way to created the rcu-test-image file 10 dd if=/dev/zero of=rcu-test-image bs=400M count=1 11 mkfs.ext3 ./rcu-test-image 12 sudo mount -o loop ./rcu-test-image /mnt
|
D | TINY_RCU.txt | 1 This document gives a brief rationale for the TINY_RCU test cases. 19 In common code tested by TREE_RCU test cases.
|
/linux-4.1.27/tools/power/cpupower/bench/ |
D | README-BENCH | 27 cpufreq-bench helps to test the condition of a given cpufreq governor. 49 Together you get following test: 58 Then the above test runs are processed using the performance governor 59 and the governor to test. The time the calculation really needed 66 This shows expected results of the first two test run rounds from 96 You can easily test all kind of load/sleep times and check whether your 115 -g, --governor=<governor> cpufreq governor to test
|
/linux-4.1.27/Documentation/fault-injection/ |
D | notifier-error-inject.txt | 5 specified notifier chain callbacks. It is useful to test the error handling of 7 modules that can be used to test the following notifiers. 16 This feature can be used to test the error handling of the CPU notifiers by 95 * tools/testing/selftests/cpu-hotplug/on-off-test.sh 96 * tools/testing/selftests/memory-hotplug/on-off-test.sh
|
/linux-4.1.27/Documentation/zh_CN/ |
D | basic_profiling.txt | 25 <test> 用于表示要测量的目标 42 <test> 64 <test>
|
/linux-4.1.27/arch/xtensa/ |
D | Kconfig.debug | 27 bool "Perform S32C1I instruction self-test at boot" 30 Enable this option to test S32C1I instruction behavior at boot. 33 It is easy to make wrong hardware configuration, this test should catch it early.
|
/linux-4.1.27/Documentation/locking/ |
D | locktorture.txt | 10 grepping for "torture"). The test is started when the module is loaded, 14 This torture test consists of creating a number of kernel threads which 65 shutdown_secs The number of seconds to run the test before terminating 66 the test and powering off the system. The default is 67 zero, which disables test termination and system shutdown. 91 stutter The length of time to run the test before pausing for this 94 Specifying "stutter=0" causes the test to run continuously 97 shuffle_interval The number of seconds to keep the test threads affinitied
|
/linux-4.1.27/arch/m68k/fpsp040/ |
D | gen_except.S | 58 cmpib #IDLE_SIZE-4,1(%a7) |test for idle frame 60 cmpib #UNIMP_40_SIZE-4,1(%a7) |test for orig unimp frame 62 cmpib #UNIMP_41_SIZE-4,1(%a7) |test for rev unimp frame 102 cmpib #UNIMP_40_SIZE-4,1(%a7) |test for orig unimp frame 107 cmpib #UNIMP_41_SIZE-4,1(%a7) |test for rev unimp frame 143 btstb #5,CMDREG1B(%a6) |test for fmove out 155 bfffo %d0{#24:#8},%d1 |test for first set bit 179 tstb UFLG_TMP(%a6) |test flag for unsup/unimp state 225 tstb UFLG_TMP(%a6) |test flag for unsupp/unimp state 257 tstb UFLG_TMP(%a6) |test flag for unsupp/unimp state [all …]
|
D | skeleton.S | 105 cmpib #VER_40,(%sp) |test version number 108 btstb #E1,E_BYTE(%a6) |test for E1 set 110 btstb #snan_bit,2(%sp) |test for snan 117 btstb #ovfl_bit,2(%sp) |test for ovfl 124 btstb #unfl_bit,2(%sp) |test for unfl 145 bclrb #E3,E_BYTE(%a6) |clear and test E3 flag 154 bsrl b1238_fix |test for bug1238 case 182 bclrb #E3,E_BYTE(%a6) |clear and test E3 flag 208 bclrb #E3,E_BYTE(%a6) |clear and test E3 flag
|
D | get_op.S | 497 cmpiw #0x0fff,%d1 |test for inf or NaN 509 btstb #signan_bit,ETEMP_HI(%a6) |test for snan 522 tstl ETEMP(%a6) |test sign of the zero 549 cmpiw #0x0fff,%d1 |test for inf or NaN 568 btstb #signan_bit,ETEMP_HI(%a6) |test for snan 571 btstb #snan_bit,FPCR_ENABLE(%a6) |test for snan enabled 589 tstl ETEMP(%a6) |test sign of the zero
|
D | bindec.S | 88 | A6. This test occurs only on the first pass. If the 173 | the input and test for denormalized result. 317 cmpl #17,%d4 |test if LEN > 17 378 tstl %d7 |test sign of k 380 cmpl %d6,%d7 |test k - ILOG 390 tstl %d0 |test sign of ISCALE 393 cmpl #0xffffecd4,%d0 |test iscale <= -4908 405 tstl L_SCR2(%a6) |test sign of original x 609 | A6. This test occurs only on the first pass. If the 640 bne not_zr |if non-zero, go to second test [all …]
|
D | do_func.S | 65 | unimplemented instructions. The test is on the upper 6 bits; 190 cmpiw #0x3fff,LOCAL_EX(%a0) |test for 1.0 input 212 cmpiw #0x3fff,LOCAL_EX(%a0) |test for 1.0 input 234 cmpiw #0x3fff,LOCAL_EX(%a0) |test for 1.0 input 305 btstl #7,%d1 |test for sign 309 btstl #7,%d0 |test if + or - 317 btstl #7,%d1 |test for sign 459 btstb #sign_bit,FPTEMP_EX(%a6) |test if + or - 463 btstb #sign_bit,FPTEMP_EX(%a6) |test if + or -
|
D | round.S | 151 movel LOCAL_HI(%a0),%d2 |get word 2 for s-bit test 154 tstl LOCAL_LO(%a0) |test lower mantissa 156 tstl %d0 |test original g,r,s 163 movel LOCAL_LO(%a0),%d2 |get lower mantissa for s-bit test 166 tstl %d0 |test word original g,r,s 200 tstl %d0 |test for rs = 0 213 bccs xcc_clr |test for carry out 222 tstl %d0 |test rs = 0 241 tstl %d0 |test for rs = 0 504 btstb #E3,E_BYTE(%a6) |test for type E3 exception [all …]
|
D | x_unimp.S | 49 moveb (%a7),%d0 |test for valid version num 50 andib #0xf0,%d0 |test for $4x
|
D | kernel_ex.S | 69 btstb #dz_bit,FPCR_ENABLE(%a6) |test FPCR for dz exc enabled 74 btstb #dz_bit,FPCR_ENABLE(%a6) |test FPCR for dz exc enabled 118 btstb #operr_bit,FPCR_ENABLE(%a6) |test FPCR for operr enabled 286 btstb #sign_bit,FPTEMP_EX(%a6) |test sign of nan
|
D | scale.S | 59 cmpiw #0x400c,%d0 |test for too large 102 cmpil #0x7fff,%d1 |test for overflow 193 tstb L_SCR1(%a6) |test for sign 210 btstb #5,FPCR_MODE(%a6) |test if rm or rp
|
D | x_operr.S | 157 moveb STAG(%a6),%d0 |test stag for nan 161 cmpil #0xffff8000,FPTEMP_LO(%a6) |test if ls lword is special 184 moveb STAG(%a6),%d0 |test stag for nan 188 cmpil #0xffffff80,FPTEMP_LO(%a6) |test if ls lword is special
|
D | x_fline.S | 68 cmpib #VER_40,(%a7) |test for orig unimp frame 76 cmpib #VER_41,(%a7) |test for rev unimp frame
|
D | x_unfl.S | 69 bsrl b1238_fix |test for bug1238 case 103 bsrl b1238_fix |test for bug1238 case 124 bsrl b1238_fix |test for bug1238 case
|
D | x_snan.S | 90 cmpib #VER_40,(%a7) |test for orig unimp frame 118 cmpib #VER_40,(%a7) |test for orig unimp frame 268 btstl #15,%d0 |test for sign of snan
|
/linux-4.1.27/Documentation/networking/ |
D | cs89x0.txt | 379 the CS8900/20 Setup Utility can be used to test the functionality of the 381 test the functionality of the adapter with the hardware configuration you have 382 assigned. You can use the diagnostics 'Network Test' to test the ability of the 400 * Select 'Self-Test' to test the adapter's basic functionality. 401 * Select 'Network Test' to test the network connection and cabling. 406 The diagnostic self-test checks the adapter's basic functionality as well as 411 The IO Register Read/Write test insures that the CS8900/20 can be 415 The Shared Memory test insures the CS8900/20 can be accessed in memory 420 The Interrupt test insures there are no conflicts with the assigned IRQ 424 The EEPROM test insures the EEPROM can be read. [all …]
|
D | iphase.txt | 119 For the PVC setup, the test machines can either be connected back-to-back or 123 a. For UBR test: 124 At the test machine intended to receive data, type: 126 At the other test machine, type: 129 b. For ABR test: 135 c. For CBR test:
|
/linux-4.1.27/arch/alpha/lib/ |
D | strrchr.S | 21 zapnot a1, 1, a1 # e0 : zero extend our test character 23 sll a1, 8, t5 # e0 : replicate our test character 38 andnot t1, t4, t1 # .. e1 : clear garbage from null test 39 andnot t3, t4, t3 # e0 : clear garbage from char test
|
D | ev67-strrchr.S | 60 andnot t1, t4, t1 # E : clear garbage from null test 61 andnot t3, t4, t3 # E : clear garbage from char test
|
D | stxncpy.S | 164 or t0, t6, t6 # e1 : mask original data for zero test 216 cmpbge zero, t2, t8 # e1 : test new word for eos (stall) 319 or t8, t10, t5 # .. e1 : test for end-of-count too
|
/linux-4.1.27/tools/testing/ktest/examples/ |
D | README | 12 it easy to compile test different archs. You can download the arch 16 test.conf - A generic example of a config. This is based on an actual config 19 kvm.conf - A example of a config that is used to test a virtual guest running
|
/linux-4.1.27/scripts/coccinelle/misc/ |
D | ifaddr.cocci | 28 cocci.print_main("test of a variable/field address",p) 34 msg = "ERROR: test of a variable/field address"
|
D | simple_return.cocci | 100 cocci.print_secs("use with questionable test",p) 115 cocci.print_main("use with questionable test",p) 121 cocci.print_main("test",p) 127 cocci.print_main("questionable test",p)
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/ |
D | gk208.fuc5 | 43 #include "test.fuc" 54 #include "test.fuc" 67 #include "test.fuc"
|
D | gf110.fuc4 | 43 #include "test.fuc" 54 #include "test.fuc" 67 #include "test.fuc"
|
D | gt215.fuc3 | 43 #include "test.fuc" 54 #include "test.fuc" 67 #include "test.fuc"
|
D | gf100.fuc3 | 43 #include "test.fuc" 54 #include "test.fuc" 67 #include "test.fuc"
|
D | test.fuc | 41 // $r15 - current (test) 58 // $r15 - current (test)
|
/linux-4.1.27/arch/parisc/kernel/ |
D | perf.c | 308 uint32_t test; in perf_write() local 328 test = (image_type & 0xffff); in perf_write() 343 (test >= MAX_CUDA_IMAGES)) || in perf_write() 345 (test >= MAX_ONYX_IMAGES))) in perf_write() 350 return perf_config(cuda_images[test]); in perf_write() 352 return perf_config(onyx_images[test]); in perf_write()
|
D | pdc_chassis.c | 283 unsigned long test; in pdc_chassis_create_procfs() local 286 ret = pdc_chassis_warn(&test); in pdc_chassis_create_procfs()
|
/linux-4.1.27/drivers/media/platform/vivid/ |
D | Kconfig | 18 Error injection is supported to test rare errors that are hard 21 Say Y here if you want to test video apps or debug V4L devices.
|
/linux-4.1.27/fs/jffs2/ |
D | TODO | 16 - test, test, test
|
/linux-4.1.27/drivers/of/ |
D | Kconfig | 15 This option builds in test cases for the device tree infrastructure 41 can enable it manually to improve device tree unit test coverage. 98 enable it manually to improve device tree unit test coverage.
|
/linux-4.1.27/Documentation/networking/mac80211_hwsim/ |
D | README | 13 test most of the mac80211 functionality and user space tools (e.g., 20 to test their code and work with new features to mac80211, hostapd, 22 of real hardware, so it is easy to generate an arbitrary test setup 66 More test cases are available in hostap.git:
|
/linux-4.1.27/drivers/i2c/busses/ |
D | i2c-iop3xx.c | 161 typedef int (* compare_func)(unsigned test, unsigned mask); 198 all_bits_clear(unsigned test, unsigned mask) in all_bits_clear() argument 200 return (test & mask) == 0; in all_bits_clear() 204 any_bits_set(unsigned test, unsigned mask) in any_bits_set() argument 206 return (test & mask) != 0; in any_bits_set()
|
/linux-4.1.27/arch/x86/math-emu/ |
D | wm_shrx.S | 138 test $0x7fffffff,%eax /* and 31 bits here */ 157 test $0x7fffffff,%eax /* only need to look at eax here */ 180 test $0x7fffffff,%eax /* only need to look at eax here */
|
/linux-4.1.27/drivers/mtd/maps/ |
D | bfin-async-flash.c | 74 map_word test; in bfin_flash_read() local 82 test.x[0] = word; in bfin_flash_read() 83 return test; in bfin_flash_read()
|
D | gpio-addr-flash.c | 86 map_word test; in gf_read() local 91 test.x[0] = word; in gf_read() 92 return test; in gf_read()
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmfmac/ |
D | debug.h | 96 #define brcmf_dbg_hex_dump(test, data, len, fmt, ...) \ argument 99 if (test) \
|
/linux-4.1.27/arch/um/os-Linux/ |
D | irq.c | 79 void os_free_irq_by_cb(int (*test)(struct irq_fd *, void *), void *arg, in os_free_irq_by_cb() 87 if ((*test)(*prev, arg)) { in os_free_irq_by_cb()
|
/linux-4.1.27/tools/virtio/ |
D | virtio_test.c | 159 int r, test = 1; in run_test() local 162 r = ioctl(dev->control, VHOST_TEST_RUN, &test); in run_test() 202 test = 0; in run_test() 203 r = ioctl(dev->control, VHOST_TEST_RUN, &test); in run_test()
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | imx27-eukrea-cpuimx27.dtsi | 125 no-loopback-test; 138 no-loopback-test; 151 no-loopback-test; 164 no-loopback-test;
|
D | nspire-classic.dtsi | 28 no-loopback-test;
|
/linux-4.1.27/drivers/net/ethernet/intel/igb/ |
D | igb_ethtool.c | 1252 struct igb_reg_test *test; in igb_reg_test() local 1259 test = reg_test_i350; in igb_reg_test() 1264 test = reg_test_i210; in igb_reg_test() 1268 test = reg_test_82580; in igb_reg_test() 1272 test = reg_test_82576; in igb_reg_test() 1276 test = reg_test_82575; in igb_reg_test() 1303 while (test->reg) { in igb_reg_test() 1304 for (i = 0; i < test->array_len; i++) { in igb_reg_test() 1305 switch (test->test_type) { in igb_reg_test() 1307 REG_PATTERN_TEST(test->reg + in igb_reg_test() [all …]
|
/linux-4.1.27/tools/testing/selftests/efivarfs/ |
D | efivarfs.sh | 26 echo "running $test" 29 if [ "$(type -t $test)" = 'function' ]; then
|
/linux-4.1.27/Documentation/arm/VFP/ |
D | release-notes.txt | 12 John R. Hauser using the TestFloat-2a test suite. Details of this 13 library and test suite can be found at:
|
/linux-4.1.27/kernel/trace/ |
D | trace_events_trigger.c | 527 struct event_trigger_data *test; in register_trigger() local 530 list_for_each_entry_rcu(test, &file->triggers, list) { in register_trigger() 531 if (test->cmd_ops->trigger_type == data->cmd_ops->trigger_type) { in register_trigger() 568 struct event_trigger_data *test, in unregister_trigger() argument 575 if (data->cmd_ops->trigger_type == test->cmd_ops->trigger_type) { in unregister_trigger() 1301 struct event_trigger_data *test; in event_enable_register_trigger() local 1304 list_for_each_entry_rcu(test, &file->triggers, list) { in event_enable_register_trigger() 1305 test_enable_data = test->private_data; in event_enable_register_trigger() 1333 struct event_trigger_data *test, in event_enable_unregister_trigger() argument 1336 struct enable_trigger_data *test_enable_data = test->private_data; in event_enable_unregister_trigger()
|
D | trace_events_filter_test.h | 2 #define TRACE_SYSTEM test
|
D | Kconfig | 281 into the C conditionals to test which path a branch takes. 497 bool "Perform a startup test on ftrace" 515 TBD - enable a way to actually call the syscalls as we test their 575 This option creates a test to stress the ring buffer and benchmark it. 588 bool "Ring buffer startup self test" 591 Run a simple self test on the ring buffer on boot up. Late in the 592 kernel boot sequence, the test will start that kicks off 596 to the ring buffer, to test/stress the nesting ability. 600 The test runs for 10 seconds. This will slow your boot time 603 At the end of the test, statics and more checks are done.
|
/linux-4.1.27/arch/x86/kernel/cpu/ |
D | cyrix.c | 393 unsigned int test; in test_cyrix_52div() local 399 : "=a" (test) in test_cyrix_52div() 404 return (unsigned char) (test >> 8) == 0x02; in test_cyrix_52div()
|
/linux-4.1.27/drivers/usb/serial/ |
D | whiteheat.h | 196 __u8 test; /* see WHITEHEAT_TEST_* above*/ member 295 __u8 test; /* indicates which test this is a response for, member
|
/linux-4.1.27/Documentation/ia64/ |
D | .gitignore | 1 aliasing-test
|
/linux-4.1.27/tools/testing/selftests/mount/ |
D | .gitignore | 1 unprivileged-remount-test
|
/linux-4.1.27/Documentation/watchdog/src/ |
D | .gitignore | 2 watchdog-test
|
/linux-4.1.27/tools/testing/selftests/kcmp/ |
D | .gitignore | 2 kcmp-test-file
|
/linux-4.1.27/Documentation/security/ |
D | keys-ecryptfs.txt | 51 'ecryptfs' and save it using a previously loaded user key "test": 53 $ keyctl add encrypted 1000100010001000 "new ecryptfs user:test 64" @u 57 ecryptfs user:test 64 490045d4bfe48c99f0d465fbbbb79e7500da954178e2de0697
|
/linux-4.1.27/Documentation/filesystems/cifs/ |
D | AUTHORS | 7 improvements. Thanks to IBM for allowing me time and test resources to pursue 56 And thanks to the IBM LTC and Power test teams and SuSE testers for 57 finding multiple bugs during excellent stress test runs.
|
/linux-4.1.27/tools/testing/selftests/memfd/ |
D | .gitignore | 4 memfd-test-file
|
/linux-4.1.27/tools/testing/selftests/rcutorture/ |
D | .gitignore | 4 rcu-test-image
|
/linux-4.1.27/drivers/net/ethernet/emulex/benet/ |
D | be_ethtool.c | 850 static void be_self_test(struct net_device *netdev, struct ethtool_test *test, in be_self_test() argument 859 test->flags |= ETH_TEST_FL_FAILED; in be_self_test() 865 if (test->flags & ETH_TEST_FL_OFFLINE) { in be_self_test() 867 test->flags |= ETH_TEST_FL_FAILED; in be_self_test() 870 test->flags |= ETH_TEST_FL_FAILED; in be_self_test() 872 if (test->flags & ETH_TEST_FL_EXTERNAL_LB) { in be_self_test() 875 test->flags |= ETH_TEST_FL_FAILED; in be_self_test() 876 test->flags |= ETH_TEST_FL_EXTERNAL_LB_DONE; in be_self_test() 882 test->flags |= ETH_TEST_FL_FAILED; in be_self_test() 887 test->flags |= ETH_TEST_FL_FAILED; in be_self_test() [all …]
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/ |
D | iwl-trans.h | 505 void (*d3_suspend)(struct iwl_trans *trans, bool test); 507 bool test); 728 static inline void iwl_trans_d3_suspend(struct iwl_trans *trans, bool test) in iwl_trans_d3_suspend() argument 731 trans->ops->d3_suspend(trans, test); in iwl_trans_d3_suspend() 736 bool test) in iwl_trans_d3_resume() argument 739 return trans->ops->d3_resume(trans, status, test); in iwl_trans_d3_resume()
|
/linux-4.1.27/scripts/ |
D | analyze_suspend.py | 1222 for test in testrun: 1225 for name in test.ttemp: 1226 for event in test.ttemp[name]: 1230 if(begin < test.data.start): 1231 test.data.setStart(begin) 1233 if(end > test.data.end): 1234 test.data.setEnd(end) 1235 test.data.newActionGlobal(name, begin, end) 1238 for pid in test.ftemp: 1239 for cg in test.ftemp[pid]: [all …]
|
/linux-4.1.27/arch/mips/lantiq/falcon/ |
D | sysctrl.c | 83 unsigned int test, unsigned int reg) in sysctl_wait() argument 88 & clk->bits) != test)); in sysctl_wait() 91 clk->module, clk->bits, test, in sysctl_wait()
|
/linux-4.1.27/include/linux/platform_data/ |
D | pn544.h | 38 int (*test) (void); member
|
/linux-4.1.27/Documentation/vm/ |
D | hwpoison.txt | 112 some early filtering to avoid corrupted unintended pages in test suites. 159 x86 has mce-inject, mce-test 161 Some portable hwpoison test programs in mce-test, see blow. 170 git://git.kernel.org/pub/scm/utils/cpu/mce/mce-test.git
|
/linux-4.1.27/drivers/staging/skein/ |
D | TODO | 4 - add / pass test vectors
|
/linux-4.1.27/Documentation/isdn/ |
D | README.x25 | 5 This is alpha/beta test code. Use it completely at your own risk. 129 corresponding isdn connection is set up by you. At least one test 135 How to set up a test installation? 138 To test X.25 on top of isdn, you need to get 174 alpha-test implementation ("eftp4linux") of the EUROfile transfer 177 The scripts distributed with the eftp4linux test releases might also
|
/linux-4.1.27/fs/ |
D | inode.c | 760 int (*test)(struct inode *, void *), in find_inode() 769 if (!test(inode, data)) in find_inode() 992 int (*test)(struct inode *, void *), in iget5_locked() 999 inode = find_inode(sb, head, test, data); in iget5_locked() 1013 old = find_inode(sb, head, test, data); in iget5_locked() 1209 int (*test)(struct inode *, void *), void *data) in ilookup5_nowait() 1215 inode = find_inode(sb, head, test, data); in ilookup5_nowait() 1240 int (*test)(struct inode *, void *), void *data) in ilookup5() 1242 struct inode *inode = ilookup5_nowait(sb, hashval, test, data); in ilookup5() 1366 int (*test)(struct inode *, void *), void *data) in insert_inode_locked4() [all …]
|
/linux-4.1.27/drivers/video/fbdev/ |
D | pxa168fb.h | 233 #define CFG_GRA_TSTMODE(test) ((test) << 13) argument 250 #define CFG_DMA_TSTMODE(test) ((test) << 5) argument
|
/linux-4.1.27/drivers/pci/hotplug/ |
D | pci_hotplug_core.c | 226 u32 test; in test_write_file() local 230 test = (u32)(ltest & 0xffffffff); in test_write_file() 231 dbg("test = %d\n", test); in test_write_file() 238 retval = slot->ops->hardware_test(slot, test); in test_write_file()
|
/linux-4.1.27/Documentation/video4linux/ |
D | vivid.txt | 16 allows you to use this driver as a test input for application development, since 17 you can test the various features without requiring special hardware. 22 - A large list of test patterns and variations thereof 28 - Error injection to test what happens if errors occur 247 the driver behavior and test your application with all sorts of permutations. 334 you to test the various combinations by just switching channels.. 421 alternate between "Hello world!" and "Closed captions test" every second. 543 This allows you to test controls that can change their range. 545 The 'Gain, Automatic' and Gain controls can be used to test volatile controls: 580 Test Pattern: selects which test pattern to use. Use the CSC Colorbar for [all …]
|
/linux-4.1.27/drivers/net/ethernet/intel/ixgbe/ |
D | ixgbe_ethtool.c | 1397 const struct ixgbe_reg_test *test; in ixgbe_reg_test() local 1409 test = reg_test_82598; in ixgbe_reg_test() 1416 test = reg_test_82599; in ixgbe_reg_test() 1446 while (test->reg) { in ixgbe_reg_test() 1447 for (i = 0; i < test->array_len; i++) { in ixgbe_reg_test() 1450 switch (test->test_type) { in ixgbe_reg_test() 1453 test->reg + (i * 0x40), in ixgbe_reg_test() 1454 test->mask, in ixgbe_reg_test() 1455 test->write); in ixgbe_reg_test() 1459 test->reg + (i * 0x40), in ixgbe_reg_test() [all …]
|
/linux-4.1.27/Documentation/scsi/ |
D | qlogicfas.txt | 59 The best way to test if your cables, termination, etc. are good is to 64 tests, otherwise you will test your RAM and not the files). Then do 68 I noticed my system which seems to work 100% would fail this test if
|
D | osst.txt | 119 well.) For the USB support, you need the latest 2.4.0-test kernels and the 195 test -z "$1" || nrs=$1 196 test -z "$2" || dir=$2 199 test -d $dir || mkdir -p $dir 200 while test $nr -lt $nrs; do
|
D | aha152x.txt | 14 least on my ancient test box; a i486/33Mhz/20MB). 35 Don't test for BIOS signature (AHA-1510 or disabled BIOS) 55 When you do this, the BIOS test is skipped. Entered values have to be
|
/linux-4.1.27/arch/m68k/math-emu/ |
D | fp_decode.h | 142 btst #15,%d2 | test for data/addr register 188 | get the extension word and test for brief or full extension type 196 | test if %pc is the base register for the indirect addr mode 202 | test if %pc is the base register for one of the extended modes
|
/linux-4.1.27/Documentation/usb/ |
D | CREDITS | 45 in technical questions and with test equipment. I'd never 49 Evaluation Kits. It allows us to test the Linux-USB driver 62 PCI-to-USB Controller Board to test the OHCI implementation. 73 - Genius Germany donated a USB mouse to test the mouse boot 84 USB Floppy Disk Drive, so we could test the bulk transfer
|
/linux-4.1.27/Documentation/devicetree/bindings/serial/ |
D | 8250.txt | 40 - no-loopback-test: set to indicate that the port does not implements loopback 41 test mode
|
/linux-4.1.27/tools/usb/usbip/ |
D | configure.ac | 59 [if test "$withval" = "yes"; then 99 [if test "$withval" = "yes"; then
|
/linux-4.1.27/arch/arm/mach-ixp4xx/include/mach/ |
D | ixp46x_ts.h | 43 u32 test; /* 0x10 Time Sync Test Register */ member
|
/linux-4.1.27/Documentation/sound/oss/ |
D | WaveArtist | 26 05 | 0 | 1 1 0 1 | right aux2 mixer gain | left 2 right mic gain |test | 34 09 | 1 | 0 1 0 1 |loopb|left linout|loop|ADCch|TxFch|OffCD|test |loopb|loopb|osamp|
|
/linux-4.1.27/Documentation/watchdog/ |
D | pcwd-watchdog.txt | 27 driver, simply use of modify the watchdog test program: 28 Documentation/watchdog/src/watchdog-test.c
|
/linux-4.1.27/drivers/firmware/ |
D | edd.c | 66 int (*test) (struct edd_device * edev); member 79 .test = _test, \ 706 if (!attr->test || in edd_populate_dir() 707 (attr->test && attr->test(edev))) in edd_populate_dir()
|
/linux-4.1.27/Documentation/timers/ |
D | 00-INDEX | 8 - sample hpet timer test program
|
/linux-4.1.27/drivers/staging/gdm724x/ |
D | TODO | 3 - Remove test for host endian
|
/linux-4.1.27/tools/testing/ktest/ |
D | ktest.pl | 1214 foreach my $test (keys %repeat_tests) { 1215 if ($i >= $test && 1216 $i < $test + $repeat_tests{$test}) { 1219 $parent = $test; 2939 my $test; 2942 $test = run_git_bisect "git bisect $result"; 2944 } while ($test); 4155 foreach my $test (keys %repeat_tests) { 4156 if ($i >= $test && 4157 $i < $test + $repeat_tests{$test}) { [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/power/ |
D | power-controller.txt | 8 marks the device as able to control the system power. In order to test if this
|
/linux-4.1.27/tools/perf/ |
D | command-list.txt | 25 perf-test mainporcelain common
|
/linux-4.1.27/scripts/basic/ |
D | fixdep.c | 437 static char test[] __attribute__((aligned(sizeof(int)))) = "CONF"; in traps() local 438 int *p = (int *)test; in traps()
|
/linux-4.1.27/arch/powerpc/platforms/cell/ |
D | Kconfig | 22 select IBM_EMAC_ZMII #test only 23 select IBM_EMAC_TAH #test only
|
/linux-4.1.27/Documentation/powerpc/ |
D | cpu_features.txt | 19 C code may test 'cur_cpu_spec[smp_processor_id()]->cpu_features' for a 48 and END_FTR_SECTION_IFCLR. These simply test if a flag is set (in
|
/linux-4.1.27/drivers/net/ethernet/sfc/ |
D | ethtool.c | 216 int *test, const char *unit_format, int unit_id, in efx_fill_test() argument 223 data[test_index] = *test; in efx_fill_test() 505 struct ethtool_test *test, u64 *data) in efx_ethtool_self_test() argument 522 (test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on"); in efx_ethtool_self_test() 535 rc = efx_selftest(efx, efx_tests, test->flags); in efx_ethtool_self_test() 542 (test->flags & ETH_TEST_FL_OFFLINE) ? "off" : "on"); in efx_ethtool_self_test() 549 test->flags |= ETH_TEST_FL_FAILED; in efx_ethtool_self_test()
|
/linux-4.1.27/Documentation/hwmon/ |
D | submitting-patches | 23 * Please test your patch thoroughly. We are not your test group. 25 hardware. In such cases, you should test-build the code on at least one
|
/linux-4.1.27/arch/parisc/math-emu/ |
D | README | 9 warranties about this code nor any promises to maintain or test it
|
/linux-4.1.27/tools/perf/util/ |
D | trace-event-read.c | 349 char test[] = { 23, 8, 68 }; in trace_report() local 367 if (memcmp(buf, test, 3) != 0) { in trace_report()
|
/linux-4.1.27/sound/sparc/ |
D | cs4231.c | 1679 u32 test, csr; in sbus_dma_request() local 1688 test = APC_CDMA_READY; in sbus_dma_request() 1690 test = APC_PDMA_READY; in sbus_dma_request() 1691 if (!(csr & test)) in sbus_dma_request() 1694 test = APC_XINT_CNVA; in sbus_dma_request() 1696 test = APC_XINT_PNVA; in sbus_dma_request() 1697 if (!(csr & test)) in sbus_dma_request() 1710 u32 csr, test; in sbus_dma_prepare() local 1715 test = APC_GENL_INT | APC_PLAY_INT | APC_XINT_ENA | in sbus_dma_prepare() 1719 test = APC_GENL_INT | APC_CAPT_INT | APC_XINT_ENA | in sbus_dma_prepare() [all …]
|
/linux-4.1.27/drivers/usb/misc/ |
D | Kconfig | 200 including sample test device firmware and "how to use it". 205 Say Y here if you want to support the special test fixture device 208 When the test fixture is connected, it can enumerate as one of several 209 VID/PID pairs. This driver then initiates a corresponding test mode on 210 the downstream port to which the test fixture is attached.
|
/linux-4.1.27/arch/x86/ |
D | Kconfig.debug | 172 bool "Enable IOMMU stress-test mode" 281 bool "CPA self-test code" 296 is there to test gcc for this. 313 bool "Isolated Memory Region self test" 321 test your changes.
|
/linux-4.1.27/drivers/input/touchscreen/ |
D | cyttsp4_core.c | 275 p = krealloc(si->si_ptrs.test, si->si_ofs.test_size, GFP_KERNEL); in cyttsp4_si_get_test_data() 280 si->si_ptrs.test = p; in cyttsp4_si_get_test_data() 283 si->si_ptrs.test); in cyttsp4_si_get_test_data() 291 (u8 *)si->si_ptrs.test, si->si_ofs.test_size, in cyttsp4_si_get_test_data() 293 if (si->si_ptrs.test->post_codel & in cyttsp4_si_get_test_data() 297 si->si_ptrs.test->post_codel); in cyttsp4_si_get_test_data() 299 if (!(si->si_ptrs.test->post_codel & in cyttsp4_si_get_test_data() 303 si->si_ptrs.test->post_codel); in cyttsp4_si_get_test_data() 305 if (!(si->si_ptrs.test->post_codel & in cyttsp4_si_get_test_data() 309 si->si_ptrs.test->post_codel); in cyttsp4_si_get_test_data() [all …]
|
D | goodix.c | 259 u8 test; in goodix_i2c_test() local 263 &test, 1); in goodix_i2c_test()
|
/linux-4.1.27/arch/arm/mach-u300/ |
D | Kconfig | 40 to test reference designs. If you're not testing SPI,
|
/linux-4.1.27/Documentation/cma/ |
D | debugfs.txt | 2 different CMA areas and to test allocation/release in each of the areas.
|
/linux-4.1.27/arch/x86/crypto/ |
D | blowfish-x86_64-asm_64.S | 148 test %cl, %cl; 330 test %bpl, %bpl;
|
/linux-4.1.27/Documentation/filesystems/ |
D | autofs4-mount-control.txt | 42 /test /etc/auto.indirect 58 For the above indirect map an autofs file system is mounted on /test and 60 operation. So we see a mount of shark:/autofs/export1 on /test/g1, for 75 / shark:/autofs/export5/testing/test \ 76 /s1 shark:/autofs/export/testing/test/s1 \ 77 /s2 shark:/autofs/export5/testing/test/s2 \ 84 / shark:/autofs/export5/testing/test \ 85 /s1 shark:/autofs/export/testing/test/s1 \ 86 /s2 shark:/autofs/export5/testing/test/s2 \
|
/linux-4.1.27/drivers/scsi/ |
D | mac53c94.h | 35 unsigned char test; member
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/ |
D | vexpress-scc.txt | 6 for the test chip.
|
/linux-4.1.27/drivers/staging/android/ion/ |
D | Kconfig | 17 Choose this option to create a device that can be used to test the
|
/linux-4.1.27/arch/um/kernel/ |
D | irq.c | 153 static void free_irq_by_cb(int (*test)(struct irq_fd *, void *), void *arg) in free_irq_by_cb() 158 os_free_irq_by_cb(test, arg, active_fds, &last_irq_ptr); in free_irq_by_cb()
|
/linux-4.1.27/arch/arc/boot/dts/ |
D | nsimosci.dts | 52 no-loopback-test = <1>;
|
/linux-4.1.27/net/core/ |
D | ethtool.c | 1225 struct ethtool_test test; in ethtool_self_test() local 1238 if (copy_from_user(&test, useraddr, sizeof(test))) in ethtool_self_test() 1241 test.len = test_len; in ethtool_self_test() 1246 ops->self_test(dev, &test, data); in ethtool_self_test() 1249 if (copy_to_user(useraddr, &test, sizeof(test))) in ethtool_self_test() 1251 useraddr += sizeof(test); in ethtool_self_test() 1252 if (copy_to_user(useraddr, data, test.len * sizeof(u64))) in ethtool_self_test()
|
/linux-4.1.27/tools/iio/ |
D | iio_utils.c | 493 int test; in _write_sysfs_int() local 514 fscanf(sysfsfp, "%d", &test); in _write_sysfs_int() 516 if (test != val) { in _write_sysfs_int()
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | nfs-rdma.txt | 29 the full Connectathon test suite and operates over both Infiniband and iWARP 160 Before configuring the NFS/RDMA software, it is a good idea to test 187 To further test the InfiniBand software stack, use IPoIB (this 202 test their functionality over standard Ethernet using TCP/IP or UDP/IP.
|
/linux-4.1.27/drivers/staging/slicoss/ |
D | TODO | 36 <charrer@alacritech.com> as well as they are also able to test out any
|
/linux-4.1.27/arch/x86/platform/efi/ |
D | efi_thunk_64.S | 107 test %rax, %rax
|
/linux-4.1.27/arch/arm/nwfpe/ |
D | entry.S | 101 and r2, r6, #0x0F000000 @ test for FP insns
|
/linux-4.1.27/tools/testing/selftests/mqueue/ |
D | mq_perf_tests.c | 368 struct test { struct 395 struct test test2[] = { 428 struct test *cur_test; in perf_test_thread()
|
/linux-4.1.27/arch/m68k/include/asm/ |
D | bvme6000hw.h | 81 pad_F[3], test; member
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | review-checklist.txt | 21 kvm/test directory.
|