Home
last modified time | relevance | path

Searched refs:expected (Results 1 – 200 of 309) sorted by relevance

12

/linux-4.1.27/tools/testing/selftests/powerpc/pmu/ebb/
Dreg_access_test.c19 uint64_t val, expected; in reg_access() local
21 expected = 0x8000000100000000ull; in reg_access()
22 mtspr(SPRN_BESCR, expected); in reg_access()
25 FAIL_IF(val != expected); in reg_access()
27 expected = 0x0000000001000000ull; in reg_access()
28 mtspr(SPRN_EBBHR, expected); in reg_access()
31 FAIL_IF(val != expected); in reg_access()
Dcycles_with_mmcr2_test.c25 uint64_t val, expected[2], actual; in cycles_with_mmcr2() local
47 expected[0] = MMCR2_EXPECTED_1; in cycles_with_mmcr2()
48 expected[1] = MMCR2_EXPECTED_2; in cycles_with_mmcr2()
56 mtspr(SPRN_MMCR2, expected[i % 2]); in cycles_with_mmcr2()
61 if (val != expected[i % 2]) { in cycles_with_mmcr2()
Dinstruction_count_test.c28 int64_t difference, expected; in do_count_loop() local
46 expected = instructions + overhead; in do_count_loop()
47 difference = event->result.value - expected; in do_count_loop()
52 printf("Expected %lu\n", expected); in do_count_loop()
/linux-4.1.27/tools/perf/tests/
Dhists_cumulate.c174 static int do_test(struct hists *hists, struct result *expected, size_t nr_expected, in do_test() argument
207 TEST_ASSERT_VAL(buf, he->stat.period == expected[i].self && in do_test()
208 !strcmp(COMM(he), expected[i].comm) && in do_test()
209 !strcmp(DSO(he), expected[i].dso) && in do_test()
210 !strcmp(SYM(he), expected[i].sym)); in do_test()
213 TEST_ASSERT_VAL(buf, he->stat_acc->period == expected[i].children); in do_test()
264 struct result expected[] = { in test1() local
286 err = do_test(hists, expected, ARRAY_SIZE(expected), NULL, 0); in test1()
361 struct result expected[] = { in test2() local
432 err = do_test(hists, expected, ARRAY_SIZE(expected), in test2()
[all …]
Dopen-syscall-all-cpus.c88 unsigned int expected; in test__open_syscall_event_on_all_cpus() local
99 expected = nr_open_calls + cpu; in test__open_syscall_event_on_all_cpus()
100 if (evsel->counts->cpu[cpu].val != expected) { in test__open_syscall_event_on_all_cpus()
102 expected, cpus->map[cpu], evsel->counts->cpu[cpu].val); in test__open_syscall_event_on_all_cpus()
/linux-4.1.27/lib/
Dpercpu_test.c4 #define CHECK(native, pcp, expected) \ argument
6 WARN((native) != (expected), \
9 (long long)(expected), (long long)(expected)); \
10 WARN(__this_cpu_read(pcp) != (expected), \
13 (long long)(expected), (long long)(expected)); \
Dglob.c137 bool expected; member
140 static bool __pure __init test(char const *pat, char const *str, bool expected) in test() argument
143 bool success = match == expected; in test()
265 bool expected = *p++ & 1; in glob_init() local
269 successes += test(pat, p, expected); in glob_init()
Dtest_rhashtable.c56 bool expected = !(i % 2); in test_rht_lookup() local
61 if (expected && !obj) { in test_rht_lookup()
64 } else if (!expected && obj) { in test_rht_lookup()
68 } else if (expected && obj) { in test_rht_lookup()
Dlocking-selftest.c970 static void dotest(void (*testcase_fn)(void), int expected, int lockclass_mask) in dotest() argument
981 if (expected == FAILURE && debug_locks) { in dotest()
987 if (debug_locks != expected) { in dotest()
1000 lockclass_mask, debug_locks, expected); in dotest()
/linux-4.1.27/tools/testing/selftests/powerpc/vphn/
Dtest-vphn.c23 u32 expected[VPHN_ASSOC_BUFSIZE]; member
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()
/linux-4.1.27/drivers/gpu/drm/i915/
Di915_cmd_parser.c132 .expected = 0,
139 .expected = 0,
162 .expected = 0,
169 .expected = 0,
175 .expected = 0,
181 .expected = 0,
189 .expected = 0,
198 .expected = 0,
204 .expected = 0,
239 .expected = 0,
[all …]
Di915_gem_gtt.c877 u32 expected; in gen6_dump_ppgtt() local
881 expected = (GEN6_PDE_ADDR_ENCODE(pt_addr) | GEN6_PDE_VALID); in gen6_dump_ppgtt()
883 if (pd_entry != expected) in gen6_dump_ppgtt()
887 expected); in gen6_dump_ppgtt()
/linux-4.1.27/arch/arc/include/asm/
Dcmpxchg.h20 __cmpxchg(volatile void *ptr, unsigned long expected, unsigned long new) in __cmpxchg() argument
38 "ir"(expected), in __cmpxchg()
50 __cmpxchg(volatile void *ptr, unsigned long expected, unsigned long new) in __cmpxchg() argument
61 if (prev == expected) in __cmpxchg()
/linux-4.1.27/arch/blackfin/kernel/
Dpseudodbg.c108 int expected = ((opcode >> PseudoDbg_Assert_expected_bits) & PseudoDbg_Assert_expected_mask); in execute_pseudodbg_assert() local
123 if (expected != (value & 0xFFFF)) { in execute_pseudodbg_assert()
126 expected, (unsigned int)(value & 0xFFFF)); in execute_pseudodbg_assert()
133 if (expected != ((value >> 16) & 0xFFFF)) { in execute_pseudodbg_assert()
136 expected, (unsigned int)((value >> 16) & 0xFFFF)); in execute_pseudodbg_assert()
/linux-4.1.27/arch/um/drivers/
Dnet_user.c52 int remain, ret, expected; in read_output() local
67 expected = sizeof(remain); in read_output()
73 expected = (remain < len) ? remain : len; in read_output()
74 ret = read(fd, output, expected); in read_output()
75 if (ret != expected) { in read_output()
92 "%d of %d bytes\n", str, ret, expected); in read_output()
/linux-4.1.27/tools/testing/selftests/powerpc/pmu/
Dcount_instructions.c32 s64 difference, expected; in do_count_loop() local
45 expected = instructions + overhead; in do_count_loop()
46 difference = events[0].result.value - expected; in do_count_loop()
54 printf("Expected %llu\n", expected); in do_count_loop()
/linux-4.1.27/fs/nfsd/
Dblocklayoutxdr.c96 u32 nr_iomaps, expected, i; in nfsd4_block_decode_layoutupdate() local
104 expected = sizeof(__be32) + nr_iomaps * NFS4_BLOCK_EXTENT_SIZE; in nfsd4_block_decode_layoutupdate()
105 if (len != expected) { in nfsd4_block_decode_layoutupdate()
107 __func__, len, expected); in nfsd4_block_decode_layoutupdate()
Dnfs4callback.c226 static int decode_cb_op_status(struct xdr_stream *xdr, enum nfs_opnum4 expected, in decode_cb_op_status() argument
236 if (unlikely(op != expected)) in decode_cb_op_status()
245 "we issued a request for %d\n", op, expected); in decode_cb_op_status()
/linux-4.1.27/drivers/media/pci/cx18/
Dcx18-av-firmware.c43 u32 expected, dl_control; in cx18_av_verifyfw() local
62 expected = 0x0f000000 | ((u32)data[addr] << 16) | addr; in cx18_av_verifyfw()
63 if (expected != dl_control) { in cx18_av_verifyfw()
66 FWFILE, expected, dl_control); in cx18_av_verifyfw()
/linux-4.1.27/arch/alpha/kernel/
Dirq_alpha.c128 const char *machine, int expected) in process_mcheck_info() argument
141 expected ? "expected." : "NOT expected!!!"); in process_mcheck_info()
145 if (expected) { in process_mcheck_info()
Dproto.h211 unsigned char expected __attribute__((aligned(8))); member
216 #define mcheck_expected(cpu) (*((void)(cpu), &__mcheck_info.expected))
222 const char *machine, int expected);
Dcore_mcpcia.c577 int expected; in mcpcia_machine_check() local
580 expected = mcheck_expected(cpu); in mcpcia_machine_check()
586 switch (expected) { in mcpcia_machine_check()
608 process_mcheck_info(vector, la_ptr, "MCPCIA", expected != 0); in mcpcia_machine_check()
609 if (!expected && vector != 0x620 && vector != 0x630) { in mcpcia_machine_check()
Dcore_cia.c1198 int expected; in cia_machine_check() local
1208 expected = mcheck_expected(0); in cia_machine_check()
1209 if (!expected && vector == 0x660) in cia_machine_check()
1210 expected = cia_decode_mchk(la_ptr); in cia_machine_check()
1211 process_mcheck_info(vector, la_ptr, "CIA", expected); in cia_machine_check()
/linux-4.1.27/drivers/char/tpm/
Dtpm_crb.c109 unsigned int expected; in crb_recv() local
119 expected = be32_to_cpup((__be32 *) &buf[2]); in crb_recv()
121 if (expected > count) in crb_recv()
124 memcpy_fromio(&buf[6], &priv->rsp[6], expected - 6); in crb_recv()
126 return expected; in crb_recv()
Dtpm_i2c_infineon.c439 int expected, status; in tpm_tis_i2c_recv() local
453 expected = be32_to_cpu(*(__be32 *)(buf + 2)); in tpm_tis_i2c_recv()
454 if ((size_t) expected > count) { in tpm_tis_i2c_recv()
460 expected - TPM_HEADER_SIZE); in tpm_tis_i2c_recv()
461 if (size < expected) { in tpm_tis_i2c_recv()
Dtpm_i2c_nuvoton.c270 int expected, status, burst_count, retries, size = 0; in i2c_nuvoton_recv() local
311 expected = be32_to_cpu(*(__be32 *) (buf + 2)); in i2c_nuvoton_recv()
312 if (expected > count) { in i2c_nuvoton_recv()
318 expected - size); in i2c_nuvoton_recv()
320 if (rc < 0 || size < expected) { in i2c_nuvoton_recv()
Dtpm_tis.c286 int expected, status; in tpm_tis_recv() local
300 expected = be32_to_cpu(*(__be32 *) (buf + 2)); in tpm_tis_recv()
301 if (expected > count) { in tpm_tis_recv()
308 expected - TPM_HEADER_SIZE)) < expected) { in tpm_tis_recv()
/linux-4.1.27/arch/x86/mm/
Dpageattr-test.c48 long i, expected, missed = 0; in print_split() local
98 expected = (s->gpg*GPS + s->lpg*LPS)/PAGE_SIZE + s->spg + missed; in print_split()
99 if (expected != i) { in print_split()
101 max_pfn_mapped, expected); in print_split()
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-class-rc41 Sets the scancode filter expected value.
43 expected value of the bits set in the filter mask.
56 of the scancode which should be compared against the expected
88 Sets the scancode wakeup filter expected value.
90 set the expected value of the bits set in the wakeup filter mask
106 expected value to trigger a system wake event.
Dsysfs-bus-coresight-devices-tmc8 driver are expected to be added as it matures.
Ddebugfs-olpc11 CC is the (hex) command, N is the count of expected reply bytes, and A A A A
Dsysfs-devices-soc55 expected under most buses. /sys/bus/soc/devices is of particular
Dsysfs-class-cxl115 record. The format is expected to match the either the standard
/linux-4.1.27/drivers/usb/misc/
Dusbtest.c359 u8 expected; in simple_check_buf() local
372 expected = 0; in simple_check_buf()
380 expected = (i % maxpacket) % 63; in simple_check_buf()
384 expected = !*buf; in simple_check_buf()
387 if (*buf == expected) in simple_check_buf()
389 ERROR(tdev, "buf[%d] = %d (not %d)\n", i, *buf, expected); in simple_check_buf()
415 int expected, in simple_io() argument
463 if (expected != retval) in simple_io()
466 label, iterations, retval, expected); in simple_io()
816 int expected = udev->actconfig->desc.bConfigurationValue; in ch9_postconfig() local
[all …]
Dftdi-elan.c192 int expected; member
360 ftdi->expected = 4; in ftdi_elan_abandon_targets()
418 ftdi->expected = 4; in ftdi_elan_flush_targets()
454 ftdi->expected = 4; in ftdi_elan_cancel_targets()
873 ftdi->expected = 4; in have_ed_set_response()
877 ftdi->expected = 4 + payload; in have_ed_set_response()
889 ftdi->expected = 4; in have_ed_set_response()
893 ftdi->expected = 4 + payload; in have_ed_set_response()
904 ftdi->expected = 4; in have_ed_set_response()
913 ftdi->expected = 4; in have_ed_set_response()
[all …]
/linux-4.1.27/arch/s390/kernel/
Djump_label.c39 static void jump_label_bug(struct jump_entry *entry, struct insn *expected, in jump_label_bug() argument
43 unsigned char *ipe = (unsigned char *)expected; in jump_label_bug()
/linux-4.1.27/tools/testing/selftests/ftrace/
DREADME52 * PASS: The test succeeded as expected. The test which exits with 0 is
55 * FAIL: The test failed, but was expected to succeed. The test which exits
70 * XFAIL: The test failed, and was expected to fail.
/linux-4.1.27/arch/x86/kernel/
Dnmi_selftest.c112 static void __init dotest(void (*testcase_fn)(void), int expected) in dotest() argument
118 if (nmi_fail != expected) { in dotest()
/linux-4.1.27/arch/powerpc/sysdev/
Dmsi_bitmap.c220 DECLARE_BITMAP(expected, size); in test_of_node()
250 WARN_ON(bitmap_parselist(expected_str, expected, size)); in test_of_node()
251 WARN_ON(!bitmap_equal(expected, bmp.bitmap, size)); in test_of_node()
/linux-4.1.27/tools/power/cpupower/bench/
DREADME-BENCH11 as expected
64 Example of expected results with ondemand governor:
66 This shows expected results of the first two test run rounds from
97 governor in average behaves as expected.
/linux-4.1.27/drivers/char/tpm/st33zp24/
Dst33zp24.c488 int expected; in st33zp24_recv() local
504 expected = be32_to_cpu(*(__be32 *)(buf + 2)); in st33zp24_recv()
505 if (expected > count) { in st33zp24_recv()
511 expected - TPM_HEADER_SIZE); in st33zp24_recv()
512 if (size < expected) { in st33zp24_recv()
/linux-4.1.27/Documentation/trace/postprocess/
Dtrace-pagealloc-postprocess.pl116 my $expected = shift;
117 if ($key ne $expected) {
118 print("WARNING: Format not as expected '$key' != '$expected'");
Dtrace-vmscan-postprocess.pl170 my $expected = shift;
171 if ($key ne $expected) {
172 print("WARNING: Format not as expected for event $event '$key' != '$expected'\n");
/linux-4.1.27/arch/powerpc/platforms/pseries/
Dmsi.c344 int expected; in check_msix_entries() local
350 expected = 0; in check_msix_entries()
352 if (entry->msi_attrib.entry_nr != expected) { in check_msix_entries()
356 expected++; in check_msix_entries()
/linux-4.1.27/crypto/
Dtestmgr.h106 unsigned char *expected; member
20827 .expected = (unsigned char *)
20861 .expected = (unsigned char *)
20901 .expected = (unsigned char *)
20938 .expected = (unsigned char *)
20985 .expected = (unsigned char *)
21019 .expected = (unsigned char *)
21059 .expected = (unsigned char *)
21096 .expected = (unsigned char *)
21139 .expected = (unsigned char *)
[all …]
/linux-4.1.27/drivers/dma/
Ddmatest.c268 u8 expected = pattern | (~counter & PATTERN_COUNT_MASK); in dmatest_mismatch() local
273 thread_name, index, expected, actual); in dmatest_mismatch()
277 thread_name, index, expected, actual); in dmatest_mismatch()
280 thread_name, index, expected, actual); in dmatest_mismatch()
283 thread_name, index, expected, actual); in dmatest_mismatch()
293 u8 expected; in dmatest_verify() local
301 expected = pattern | (~counter & PATTERN_COUNT_MASK); in dmatest_verify()
302 if (actual != expected) { in dmatest_verify()
/linux-4.1.27/Documentation/devicetree/bindings/gpio/
Dgpio-mvebu.txt13 entry is expected, except for the "marvell,armadaxp-gpio" variant
14 for which two entries are expected: one for the general registers,
Dgpio-restart.txt36 expected to be available, and/or if restart functionality is
/linux-4.1.27/arch/um/os-Linux/skas/
Dmem.c111 unsigned long *args, long expected, void **addr, in run_syscall_stub() argument
126 *stack++ = expected; in run_syscall_stub()
/linux-4.1.27/include/uapi/linux/
Datm_zatm.h40 struct timeval expected; /* expected real time */ member
Dbtrfs.h226 __u64 expected; /* estimated # of chunks that will be member
/linux-4.1.27/drivers/infiniband/hw/ipath/
Dipath_intr.c533 int expected; in handle_sdma_errors() local
555 expected = test_bit(IPATH_SDMA_ABORTING, &dd->ipath_sdma_status); in handle_sdma_errors()
557 if (!expected) in handle_sdma_errors()
564 int expected; in handle_sdma_intr() local
571 expected = test_bit(IPATH_SDMA_ABORTING, in handle_sdma_intr()
574 expected ? "expected" : "unexpected"); in handle_sdma_intr()
578 if (!expected) in handle_sdma_intr()
Dipath_driver.c895 int expected; in decode_sdma_errs() local
899 expected = (errs[i].err != INFINIPATH_E_SDMADISABLED) ? 0 : in decode_sdma_errs()
901 if ((err & errs[i].err) && !expected) in decode_sdma_errs()
/linux-4.1.27/Documentation/devicetree/bindings/usb/
Ddwc3.txt12 in the array is expected to be a handle to the USB2/HS PHY and
13 the second element is expected to be a handle to the USB3/SS PHY
/linux-4.1.27/Documentation/fmc/
Dfmc-write-eeprom.txt9 expected to only happen during manufacturing. For this reason, the
54 Rabbit environment. For this reason the TLV format is not expected to
55 be used much and is not expected to be developed further.
Dmezzanine.txt5 gateware. As such, it is expected to be independent of the carrier
20 fail gracefully. Most driver, however, are not expected to access the
32 expected to be performed by the driver. If you depend on specific
55 class is not yet implemented. Each device is expected to be uniquely
Dcarrier.txt154 carrier offers. They are not expected to fail, and most of the time
207 Read or write the EEPROM. The functions are expected to be only
209 with `ENODEV' after reprogramming. The offset is expected to be
245 expected to return the number of pins successfully configured, ignoring
307 expected to ever by in hot paths, and GPIO access so fare has only been
309 reading inputs is not expected to be common. If your device has GPIO
Didentifiers.txt165 As expected, the output file is both a proper sdbfs object and an IPMI
/linux-4.1.27/arch/powerpc/oprofile/cell/
Dvma_map.c98 static const unsigned char expected[EI_PAD] = { in create_vma_map() local
135 if (memcmp(ehdr.e_ident, expected, EI_PAD) != 0) { in create_vma_map()
/linux-4.1.27/drivers/misc/mei/
Dhw-txe.c224 static int mei_txe_aliveness_poll(struct mei_device *dev, u32 expected) in mei_txe_aliveness_poll() argument
233 if (hw->aliveness == expected) { in mei_txe_aliveness_poll()
257 static int mei_txe_aliveness_wait(struct mei_device *dev, u32 expected) in mei_txe_aliveness_wait() argument
266 if (hw->aliveness == expected) in mei_txe_aliveness_wait()
275 ret = hw->aliveness == expected ? 0 : -ETIME; in mei_txe_aliveness_wait()
/linux-4.1.27/Documentation/devicetree/bindings/thermal/
Darmada-thermal.txt12 Two entries are expected, see the examples below.
/linux-4.1.27/Documentation/arm/
DInterrupts56 * If this is a level-based IRQ, then it is expected to mask the IRQ
83 IRQs that use this 'irqchip'. Generally expected to re-trigger
115 2. New functions to manipulate the irqdesc array. The first 4 are expected
148 5. A handler is expected to perform any necessary acknowledgement of the
DBooting10 program that runs before the main kernel. The boot loader is expected
31 The boot loader is expected to find and initialise all RAM that the
211 - The boot loader is expected to call the kernel image by jumping
DPorting118 It is expected that the debugging region will be re-initialised
Dkernel_user_helpers.txt23 User space is expected to bypass those helpers and implement those things
/linux-4.1.27/tools/usb/
Dffs-test.c481 __u8 expected; in empty_out_buf() local
489 expected = 0; in empty_out_buf()
498 expected = len % 63; in empty_out_buf()
511 len, expected, *p); in empty_out_buf()
/linux-4.1.27/drivers/gpu/drm/savage/
Dsavage_drv.h537 uint32_t *expected = (uint32_t *)dev_priv->cmd_dma->handle + \
540 if (dma_ptr != expected) { \
542 "%p != %p\n", expected, dma_ptr); \
/linux-4.1.27/Documentation/RCU/
Drculist_nulls.txt26 if (obj->key != key) { // not the object we expected
135 if (obj->key != key) { // not the object we expected
143 * not the expected one, we must restart lookup.
Dstallwarn.txt195 if the looping in the kernel is really expected and desirable
202 ran and how often it should be expected to run.
/linux-4.1.27/drivers/net/
DLICENSE.SRC15 expected. Although updates may occur, no commitment exists.
/linux-4.1.27/include/linux/mfd/
Dsi476x-reports.h158 __u16 expected; member
/linux-4.1.27/Documentation/networking/
Dmpls-sysctl.txt9 is possible and expected aas the platform labels are locally
Dregulatory.txt24 expected regulatory domains will be respected by the kernel.
130 are expected to do this during initialization.
Digb.txt89 interrupt. The moderation value should be at least as large as the expected
Dtcp.txt61 if needed and you will get the expected protocol. If you ask for an
Dtimestamping.txt345 that is expected to do hardware time stamping. The parameter is defined in
357 rx_filter are hints to the driver what it is expected to do. If
433 is set no-zero. If yes, then the driver is expected to do hardware time
Dnetdev-FAQ.txt43 are expected. After roughly a week of collecting fixes to the rc1
202 Q: What level of testing is expected before I submit my change?
Dieee802154.txt133 expected in applications such as wireless Sensor Networks. [RFC4944] defines
De100.txt156 (non-partitioned switch) behave as expected. All Ethernet interfaces
Dbatman-adv.txt181 as expected. To overcome these problems batctl was created. At
/linux-4.1.27/Documentation/devicetree/bindings/regulator/
Dfixed-regulator.txt17 However a fixed voltage regulator is expected to have the
/linux-4.1.27/Documentation/devicetree/bindings/arm/
Dfw-cfg.txt42 data registers) is expected to be versioned, and/or described by feature bits.
48 The guest kernel is not expected to use these registers (although it is
Didle-states.txt91 An idle CPU requires the expected min-residency time to select the most
92 appropriate idle state based on the expected expiry time of the next IRQ
151 min-residency is defined for a given idle state as the minimum expected
/linux-4.1.27/Documentation/devicetree/bindings/net/wireless/
Dbrcm,bcm43xx-fmac.txt4 node is expected to be specified as a child node to the SDIO controller that
Dti,wlcore.txt4 node is expected to be specified as a child node to the SDIO controller that
/linux-4.1.27/net/netfilter/ipvs/
DKconfig218 tristate "shortest expected delay scheduling"
220 The shortest expected delay scheduling algorithm assigns network
221 connections to the server with the shortest expected delay. The
222 expected delay that the job will experience is (Ci + 1) / Ui if
237 that minimize its expected delay (The Shortest Expected Delay
/linux-4.1.27/Documentation/devicetree/bindings/clock/
Dexynos5410-clock.txt22 is expected that it is defined using standard clock bindings
Dsamsung,s3c2412-clock.txt24 There are several clocks that are generated outside the SoC. It is expected
Dsamsung,s3c2410-clock.txt28 expected that is are defined using standard clock bindings with a
Drockchip,rk3288-cru.txt28 There are several clocks that are generated outside the SoC. It is expected
Dsamsung,s3c2443-clock.txt27 There are several clocks that are generated outside the SoC. It is expected
Drockchip,rk3188-cru.txt29 There are several clocks that are generated outside the SoC. It is expected
Dsamsung,s5pv210-clock.txt25 There are several clocks that are generated outside the SoC. It is expected
Dsamsung,s3c64xx-clock.txt28 There are several clocks that are generated outside the SoC. It is expected
Dexynos7-clock.txt17 is expected that they are defined using standard clock bindings
Dexynos5260-clock.txt17 is expected that they are defined using standard clock bindings
/linux-4.1.27/Documentation/ABI/
DREADME17 (like syscalls) are expected to never change and always be
38 why it is obsolete and when it can be expected to be removed.
/linux-4.1.27/drivers/xen/xenbus/
Dxenbus_probe_frontend.c351 static void xenbus_reset_wait_for_backend(char *be, int expected) in xenbus_reset_wait_for_backend() argument
355 backend_state == expected, 5 * HZ); in xenbus_reset_wait_for_backend()
/linux-4.1.27/Documentation/virtual/kvm/
Dcpuid.txt58 || || per-cpu warps are expected in
Dmsr.txt19 in guest RAM. This memory is expected to hold a copy of the following
53 guest RAM, plus an enable bit in bit 0. This memory is expected to hold
204 in guest RAM, plus an enable bit in bit 0. This memory is expected to
/linux-4.1.27/drivers/mtd/ubi/
DKconfig31 int "Maximum expected bad eraseblock count per 1024 eraseblocks"
42 expected bad eraseblocks per 1024 eraseblocks then can be calculated
/linux-4.1.27/Documentation/video4linux/
Dsi476x.txt74 0x00 | expected | Number of expected RDS blocks
/linux-4.1.27/Documentation/filesystems/caching/
Dobject.txt32 are expected to embed them in their own representations. These are referred to
105 representations are hierarchical, and it is expected that an object must
165 the cache, it is expected that it will not be possible to look an object
262 cookie. In the first state, the cached data is expected to persist, and
Doperations.txt29 This facility is available to and expected to be be used by the cache backends,
/linux-4.1.27/drivers/pnp/pnpbios/
DKconfig21 Note: ACPI is expected to supersede PNPBIOS some day, currently it
/linux-4.1.27/drivers/net/ethernet/sis/
DKconfig44 a SiS 191 PCI Gigabit Ethernet adapter. Both are expected to
/linux-4.1.27/Documentation/x86/x86_64/
Duefi.txt22 If EFI runtime services are expected, the following configuration should
/linux-4.1.27/Documentation/devicetree/bindings/interrupt-controller/
Dbrcm,bcm7038-l1-intc.txt20 - No FIFO or priority encoder logic; software is expected to read all
/linux-4.1.27/Documentation/hwmon/
Dk8temp36 1 degree C. It is expected that future CPU will have better resolution. The
Dg76257 ('pwm1_enable' set to 2), the expected rotation speed in RPM can be passed to
Dina20978 register is programmed correctly before they are used. Normally this is expected
Dhwmon-kernel-api.txt44 monitoring sysfs attributes are expected to have been created and attached to
Dw83792d120 Works as expected. You just need to specify desired PWM/DC value (fan speed)
Df71805f67 pin expected
Dnct6775145 the defined range. If set to 0, the fan is expected to
/linux-4.1.27/net/openvswitch/
DKconfig14 expected in a traditional hardware switch, it enables fine-grained
/linux-4.1.27/Documentation/sound/oss/
DPSS36 This fil holds a general MIDI emulation. The file expected is called
Dbtaudio31 should'nt crash your box. It might not work as expected, have bugs,
DPSS-updates62 continue to work as expected. The default value of this parameter is 1 to
DREADME.modules64 args are expected.
/linux-4.1.27/arch/sh/kernel/
Dtraps_32.c304 struct mem_access *ma, int expected, in handle_unaligned_access() argument
326 if (!expected) { in handle_unaligned_access()
/linux-4.1.27/drivers/media/v4l2-core/
Dvideobuf2-dma-contig.c73 dma_addr_t expected = sg_dma_address(sgt->sgl); in vb2_dc_get_contiguous_size() local
78 if (sg_dma_address(s) != expected) in vb2_dc_get_contiguous_size()
80 expected = sg_dma_address(s) + sg_dma_len(s); in vb2_dc_get_contiguous_size()
/linux-4.1.27/Documentation/fb/
Dmetronomefb.txt21 interface to the metronome controller. The waveform information is expected to
Dviafb.txt234 with the listed ones. If you remove devices they are expected to turn
/linux-4.1.27/Documentation/devicetree/bindings/phy/
Dphy-miphy365x.txt35 be expected
/linux-4.1.27/Documentation/device-mapper/
Dverity.txt89 When a dm-verity device is configured, it is expected that the caller
132 It is expected that a user-space tool will verify the integrity of the
/linux-4.1.27/Documentation/arm64/
Dbooting.txt35 The boot loader is expected to find and initialise all RAM that the
183 The boot loader is expected to enter the kernel on each CPU in the
191 It is expected that the bootloader will generate these device tree
/linux-4.1.27/Documentation/trace/
Dcoresight.txt126 expected to be added as the solution matures.
188 expected to be accessed and controlled using those entries.
190 Last but not least, "struct module *owner" is expected to be set to reflect
/linux-4.1.27/drivers/infiniband/hw/mlx5/
Dcq.c381 item->expected = be32_to_cpu(cqe->expected_trans_sig) >> 16; in get_sig_err_item()
386 item->expected = be32_to_cpu(cqe->expected_reftag); in get_sig_err_item()
391 item->expected = be32_to_cpu(cqe->expected_trans_sig) & 0xffff; in get_sig_err_item()
536 mr->sig->err_item.expected, in mlx5_poll_one()
/linux-4.1.27/drivers/atm/
Dnicstarmac.copyright19 * PHY component is expected to be 155 Mbps S/UNI-Lite or IDT 77155;
/linux-4.1.27/drivers/staging/iio/
DTODO7 Major changes not expected except in response to comments
/linux-4.1.27/Documentation/dmaengine/
Dclient.txt42 channel which has a capability in 'mask'. 'filter_fn' is expected to
100 The peripheral driver is expected to have mapped the scatterlist for
/linux-4.1.27/Documentation/devicetree/bindings/bus/
Dmvebu-mbus.txt51 Two or three entries are expected (see the examples below):
198 The mbus-node ranges property defines a set of mbus windows that are expected
/linux-4.1.27/Documentation/
Dworkqueue.txt124 not expected to hog a CPU and consume many cycles. That means
180 expected and using bound wq may end up creating large number
215 work items which are expected to hog CPU cycles so that their
347 * Unless work items are expected to consume a huge amount of CPU
Ddcdbas.txt11 is expected to make use of this driver, and it may include the use of this
DIntel-IOMMU.txt32 devices that need to access these regions. OS is expected to setup
Dsysfs-rules.txt41 kernel implementation details which should not be expected by
161 the device that matches the expected subsystem. Depending on a specific
Dunshare.txt278 other works as expected.
283 of flags. Verify that unsharing is performed as expected and
Dremoteproc.txt179 it is quite expected that other platforms/devices which we'd want to
245 is expected, where the firmware requests a resource, and once allocated,
Drbtree.txt52 users are expected to write their own tree search and insert functions
208 you are not expected to rely on; please stick to the documented APIs
Dvolatile-considered-harmful.txt76 ensures that the access happens as expected by the programmer.
Dcpu-hotplug.txt261 "It is expected that each service cleans up when the CPU_DOWN_PREPARE
262 notifier is called, when CPU_DEAD is called its expected there is nothing
Dvfio.txt159 no capabilities on its own and is therefore expected to be set to
448 assignment that are beyond the scope of VFIO. It's expected that
/linux-4.1.27/fs/btrfs/
DKconfig19 expected to change unless there are strong reasons to do so. If there
/linux-4.1.27/arch/um/include/shared/
Dos.h250 int syscall, unsigned long *args, long expected,
/linux-4.1.27/Documentation/devicetree/
Doverlay-notes.txt85 is loaded the device will be created as expected.
/linux-4.1.27/Documentation/misc-devices/
Dbh1770glc.txt42 so that measurement produces about the expected lux value.
/linux-4.1.27/Documentation/power/
Dopp.txt56 list is expected to be an optimally small number typically around 5 per device.
101 device. It is expected that the SoC framework will register the OPP entries
137 found, else returns error. These errors are expected to be handled by standard
Dpm_qos_interface.txt205 latency tolerance requirements for the device is empty, the callback is expected
209 expected to use it. That allows software to prevent the hardware from
Dsuspend-and-interrupts.txt44 expected during the suspend-resume cycle, but does not guarantee that the
Dpower_supply_class.txt24 typically expected feedback of battery charging/fully charged status and
Dpci.txt383 It is expected that the device driver's pm->runtime_suspend() callback will
412 cases it is expected to suspend the device if that makes sense. Usually,
485 generally not expected to prepare devices for signaling wakeup or to put them
697 defined, though, they are expected to behave as described in the following
723 This callback is expected to quiesce the device and prepare it to be put into a
926 The device is expected to be able to process I/O in the usual way after
/linux-4.1.27/drivers/mtd/chips/
DKconfig51 are expected to be wired to the CPU in 'host-endian' form.
221 preserves the expected registration order of MTD device nodes on
/linux-4.1.27/Documentation/filesystems/
Dxfs-self-describing-metadata.txt61 location. This allows us to identify the expected contents of the block and
162 For read verification, the caller needs to specify the expected type of metadata
164 object matches what was expected. If the verification process fails, then it
334 there are magic numbers in all the expected spots. All further CRC and
Ddebugfs.txt91 As might be expected, this function will create a debugfs file to represent
/linux-4.1.27/Documentation/devicetree/bindings/video/
Dsimple-framebuffer.txt51 are expected to already be configured correctly. The OS must
/linux-4.1.27/Documentation/frv/
Dconfiguring.txt30 that are expected to be available.
/linux-4.1.27/Documentation/mmc/
Dmmc-async-req.txt23 more significant the prepare request time becomes. Roughly the expected
/linux-4.1.27/Documentation/watchdog/
Dhpwdt.txt40 enables the users of NMIs for non critical events to be work as expected.
/linux-4.1.27/Documentation/devicetree/bindings/drm/imx/
Dldb.txt22 The following clocks are expected on i.MX53:
/linux-4.1.27/Documentation/usb/
Dpersist.txt73 not in the expected state during resume (i.e., if the controller was
86 The same thing happens if the host controller is in the expected state
/linux-4.1.27/sound/isa/
Des18xx.c335 int old, expected, new; in snd_es18xx_mixer_writable() local
340 expected = old ^ mask; in snd_es18xx_mixer_writable()
341 outb(expected, chip->port + 0x05); in snd_es18xx_mixer_writable()
346 reg, old, expected, new); in snd_es18xx_mixer_writable()
348 return expected == new; in snd_es18xx_mixer_writable()
/linux-4.1.27/Documentation/mtd/nand/
Dpxa3xx-nand.txt52 and expected to be located (when reading/programming) right after the spare
/linux-4.1.27/Documentation/virtual/kvm/devices/
Darm-vgic.txt103 -EINVAL: Value set is out of the expected range
/linux-4.1.27/sound/soc/codecs/
Dwm8962.c1872 int expected = (WM8962_DCS_STARTUP_DONE_HP1L | in hp_event() local
1907 } while (++timeout < 200 && (reg & expected) != expected); in hp_event()
1909 if ((reg & expected) != expected) in hp_event()
/linux-4.1.27/Documentation/scheduler/
Dsched-design-CFS.txt33 timestamp and measure the "expected CPU time" a task should have gotten.
102 interactivity and produce the expected behavior.
Dcompletion.txt212 The signaling will work as expected even if completions are signaled before
/linux-4.1.27/Documentation/filesystems/nfs/
Drpc-cache.txt116 revisited (->revisit). It is expected that this method will
141 expected that a message written will contain:
/linux-4.1.27/mm/
Dshmem.c254 pgoff_t index, void *expected, void *replacement) in shmem_radix_tree_replace() argument
259 VM_BUG_ON(!expected); in shmem_radix_tree_replace()
265 if (item != expected) in shmem_radix_tree_replace()
294 pgoff_t index, void *expected) in shmem_add_to_page_cache() argument
306 if (!expected) in shmem_add_to_page_cache()
309 error = shmem_radix_tree_replace(mapping, index, expected, in shmem_add_to_page_cache()
/linux-4.1.27/drivers/net/wireless/iwlwifi/
DKconfig96 expected throughput due to those APs not enabling aggregation
/linux-4.1.27/drivers/clocksource/
DKconfig124 on wfe to safeguard against any programming errors in case an expected
/linux-4.1.27/arch/sh/kernel/cpu/sh3/
Dentry.S486 * expected path for the NMI (and any other brilliantly implemented
/linux-4.1.27/scripts/package/
Dbuilddeb311 …jtree; cp $KCONFIG_CONFIG $destdir/.config) # copy .config manually to be where it's expected to be
/linux-4.1.27/Documentation/x86/
Dintel_mpx.txt48 expected to keep the bounds directory at that locationWe note it
220 But XSAVE is expected to be very expensive. In order to do performance
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/
Ddma.txt26 (on 83xx this is expected to be identical to
/linux-4.1.27/arch/m68k/fpsp040/
Dscale.S129 movew %d1,ETEMP(%a6) |input expected in ETEMP
/linux-4.1.27/Documentation/cgroups/
Dfreezer-subsystem.txt50 expected.
/linux-4.1.27/Documentation/scsi/
DChangeLog.sym53c8xx_2122 - Include <linux/module.h> unconditionnaly as expected by latest
Dlibsas.txt322 total_xfer_len -- total number of bytes expected to be transferred
380 If you receive different amount of data you expected to receive,
/linux-4.1.27/Documentation/ia64/
Dfsys.txt181 work as expected. The following discussion describes how each PSR bit
233 would be the normal & expected behavior, so no special treatment is
/linux-4.1.27/arch/m68k/q40/
DREADME128 behave exactly as expected.
/linux-4.1.27/Documentation/input/
Dgameport-programming.txt162 expected maximums for each axis. The calibrate() function should set the
Dntrig.txt87 the probability of multiple simultaneous ghosts is expected to drop off
/linux-4.1.27/net/netlink/
Daf_netlink.c498 unsigned long start, size, expected; in netlink_mmap() local
507 expected = 0; in netlink_mmap()
511 expected += ring->pg_vec_len * ring->pg_vec_pages * PAGE_SIZE; in netlink_mmap()
514 if (expected == 0) in netlink_mmap()
518 if (size != expected) in netlink_mmap()
/linux-4.1.27/scripts/genksyms/
Dparse.tab.c_shipped1266 "expected"). */
1276 is an error action. In that case, don't check for expected
1281 that there is no unexpected or expected token to report. In that
1287 - Of course, the expected token list depends on states to have
1291 (from LALR or IELR) and default reductions corrupt the expected
/linux-4.1.27/drivers/net/ethernet/sfc/
Dfarch.c957 unsigned expected, dropped; in efx_farch_handle_rx_bad_index() local
966 expected = rx_queue->removed_count & rx_queue->ptr_mask; in efx_farch_handle_rx_bad_index()
967 dropped = (index - expected) & rx_queue->ptr_mask; in efx_farch_handle_rx_bad_index()
970 dropped, index, expected); in efx_farch_handle_rx_bad_index()
/linux-4.1.27/Documentation/vm/
Dhwpoison.txt33 * for the mapping from a vma to a process. Since this case is expected
/linux-4.1.27/Documentation/serial/
Ddriver355 Locking: caller is expected to take port->lock
391 A driver is expected to call this function when the number of
/linux-4.1.27/arch/ia64/include/asm/
Dpal.h1279 ia64_pal_mc_expected (u64 expected, u64 *previous) in ia64_pal_mc_expected() argument
1282 PAL_CALL(iprv, PAL_MC_EXPECTED, expected, 0, 0); in ia64_pal_mc_expected()
/linux-4.1.27/scripts/kconfig/
Dzconf.tab.c_shipped1191 "expected"). */
1201 is an error action. In that case, don't check for expected
1206 that there is no unexpected or expected token to report. In that
1212 - Of course, the expected token list depends on states to have
1216 (from LALR or IELR) and default reductions corrupt the expected
/linux-4.1.27/scripts/dtc/
Ddtc-parser.tab.c_shipped1093 "expected"). */
1103 is an error action. In that case, don't check for expected
1108 that there is no unexpected or expected token to report. In that
1114 - Of course, the expected token list depends on states to have
1118 (from LALR or IELR) and default reductions corrupt the expected
/linux-4.1.27/Documentation/devicetree/bindings/pci/
Dnvidia,tegra20-pcie.txt34 - The first two entries are expected to translate the addresses for the root
/linux-4.1.27/Documentation/i2c/
Dslave-interface156 arises. However, cases should be extremely rare because the master is expected
/linux-4.1.27/fs/jffs2/
DREADME.Locking6 JFFS2. It is not expected to remain perfectly up to date, but ought to
/linux-4.1.27/drivers/hwmon/
Dw83795.c1918 int bank, vendor_id, device_id, expected, i2c_addr, config; in w83795_detect() local
1935 expected = bank & 0x80 ? 0x5c : 0xa3; in w83795_detect()
1936 if (vendor_id != expected) { in w83795_detect()
/linux-4.1.27/tools/perf/Documentation/
Dperf-script.txt42 succeed. [args] refers to the (mainly optional) args expected by
/linux-4.1.27/Documentation/cpu-freq/
Dpcc-cpufreq.txt206 expected to work with the PCC driver. Since the "cpufreq_stats" module
/linux-4.1.27/Documentation/crypto/
Dasync-tx-api.txt172 1/ Completion callbacks are expected to happen in tasklet context
/linux-4.1.27/Documentation/timers/
DNO_HZ.txt178 Although improvements are expected over time, adaptive ticks is quite
282 This is not expected to be a problem for computationally intensive
/linux-4.1.27/arch/cris/arch-v32/kernel/
Dentry.S373 ;; If we receive a watchdog interrupt while it is not expected, then set

12