/linux-4.1.27/drivers/media/dvb-core/ |
D | dvb_ringbuffer.c | 114 size_t split; in dvb_ringbuffer_read_user() local 116 split = (rbuf->pread + len > rbuf->size) ? rbuf->size - rbuf->pread : 0; in dvb_ringbuffer_read_user() 117 if (split > 0) { in dvb_ringbuffer_read_user() 118 if (copy_to_user(buf, rbuf->data+rbuf->pread, split)) in dvb_ringbuffer_read_user() 120 buf += split; in dvb_ringbuffer_read_user() 121 todo -= split; in dvb_ringbuffer_read_user() 135 size_t split; in dvb_ringbuffer_read() local 137 split = (rbuf->pread + len > rbuf->size) ? rbuf->size - rbuf->pread : 0; in dvb_ringbuffer_read() 138 if (split > 0) { in dvb_ringbuffer_read() 139 memcpy(buf, rbuf->data+rbuf->pread, split); in dvb_ringbuffer_read() [all …]
|
/linux-4.1.27/arch/x86/kernel/cpu/ |
D | intel_cacheinfo.c | 132 } split; member 141 } split; member 148 } split; member 278 eax->split.is_self_initializing = 1; in amd_cpuid4() 279 eax->split.type = types[leaf]; in amd_cpuid4() 280 eax->split.level = levels[leaf]; in amd_cpuid4() 281 eax->split.num_threads_sharing = 0; in amd_cpuid4() 282 eax->split.num_cores_on_die = __this_cpu_read(cpu_info.x86_max_cores) - 1; in amd_cpuid4() 286 eax->split.is_fully_associative = 1; in amd_cpuid4() 287 ebx->split.coherency_line_size = line_size - 1; in amd_cpuid4() [all …]
|
D | perf_event_intel.c | 2915 if (ebx.split.no_branch_misses_retired) { in intel_nehalem_quirk() 2923 ebx.split.no_branch_misses_retired = 0; in intel_nehalem_quirk() 3012 if (eax.split.mask_length < ARCH_PERFMON_EVENTS_COUNT) in intel_pmu_init() 3015 version = eax.split.version_id; in intel_pmu_init() 3022 x86_pmu.num_counters = eax.split.num_counters; in intel_pmu_init() 3023 x86_pmu.cntval_bits = eax.split.bit_width; in intel_pmu_init() 3024 x86_pmu.cntval_mask = (1ULL << eax.split.bit_width) - 1; in intel_pmu_init() 3027 x86_pmu.events_mask_len = eax.split.mask_length; in intel_pmu_init() 3036 x86_pmu.num_counters_fixed = max((int)edx.split.num_counters_fixed, 3); in intel_pmu_init()
|
/linux-4.1.27/security/apparmor/ |
D | lib.c | 44 char *split = strchr(&name[1], ':'); in aa_split_fqname() local 46 if (split) { in aa_split_fqname() 48 *split++ = 0; in aa_split_fqname() 49 if (strncmp(split, "//", 2) == 0) in aa_split_fqname() 50 split += 2; in aa_split_fqname() 51 name = skip_spaces(split); in aa_split_fqname()
|
D | policy.c | 110 char *split; in hname_tail() local 112 for (split = strstr(hname, "//"); split; split = strstr(hname, "//")) in hname_tail() 113 hname = split + 2; in hname_tail() 794 char *split; in __lookup_parent() local 798 for (split = strstr(hname, "//"); split;) { in __lookup_parent() 800 split - hname); in __lookup_parent() 804 hname = split + 2; in __lookup_parent() 805 split = strstr(hname, "//"); in __lookup_parent() 827 char *split; in __lookup_profile() local 829 for (split = strstr(hname, "//"); split;) { in __lookup_profile() [all …]
|
/linux-4.1.27/fs/jfs/ |
D | jfs_xtree.c | 109 uint split; member 122 struct xtsplit * split, struct btstack * btstack); 124 static int xtSplitPage(tid_t tid, struct inode *ip, struct xtsplit * split, 128 struct xtsplit * split, struct metapage ** rmpp); 548 struct xtsplit split; /* split information */ in xtInsert() local 610 split.mp = mp; in xtInsert() 611 split.index = index; in xtInsert() 612 split.flag = xflag; in xtInsert() 613 split.off = xoff; in xtInsert() 614 split.len = xlen; in xtInsert() [all …]
|
D | jfs_dtree.c | 153 struct dtsplit * split, struct btstack * btstack); 155 static int dtSplitPage(tid_t tid, struct inode *ip, struct dtsplit * split, 159 struct dtsplit * split, struct btstack * btstack); 162 struct dtsplit * split, struct metapage ** rmpp); 829 struct dtsplit split; /* split information */ in dtInsert() local 870 split.mp = mp; in dtInsert() 871 split.index = index; in dtInsert() 872 split.nslot = n; in dtInsert() 873 split.key = name; in dtInsert() 874 split.data = &data; in dtInsert() [all …]
|
/linux-4.1.27/Documentation/vm/ |
D | split_page_table_lock | 7 scalability, split page table lock was introduced. 9 With split page table lock we have separate per-table lock to serialize 10 access to the table. At the moment we use split lock for PTE and PMD 31 If split lock is disabled, all tables guaded by mm->page_table_lock. 36 Hugetlb and split page table lock 39 Hugetlb can support several page sizes. We use split lock only for PMD 44 takes pmd split lock for PMD_SIZE page, mm->page_table_lock 49 Support of split page table lock by an architecture 52 There's no need in special enabling of PTE split page table lock: 60 PMD split lock only makes sense if you have more than two page table [all …]
|
D | transhuge.txt | 214 thp_split is incremented every time a huge page is split into base 279 follow_page, so that it will split the hugepages before returning 314 but you can't handle it natively in your code, you can split it by 370 on any tail page, would mean having to split all hugepages upfront in 374 hugetlbfs pages cannot be split so there wouldn't be requirement of 380 split during its lifetime. That requires changing not just
|
D | highmem.txt | 40 The traditional split for architectures using this approach is 3:1, 3GiB for
|
D | unevictable-lru.txt | 318 below, mlock_fixup() will attempt to merge the VMA with its neighbors or split 320 VMA has been merged or split or neither, mlock_fixup() will call 394 If the VMA is VM_LOCKED, mlock_fixup() again attempts to merge or split off the
|
/linux-4.1.27/arch/x86/oprofile/ |
D | op_model_ppro.c | 86 if (!(eax.split.version_id == 0 && in ppro_setup_ctrs() 90 if (counter_width < eax.split.bit_width) in ppro_setup_ctrs() 91 counter_width = eax.split.bit_width; in ppro_setup_ctrs() 215 if (eax.split.version_id == 0 && __this_cpu_read(cpu_info.x86) == 6 && in arch_perfmon_setup_counters() 217 eax.split.version_id = 2; in arch_perfmon_setup_counters() 218 eax.split.num_counters = 2; in arch_perfmon_setup_counters() 219 eax.split.bit_width = 40; in arch_perfmon_setup_counters() 222 num_counters = min((int)eax.split.num_counters, OP_MAX_COUNTER); in arch_perfmon_setup_counters()
|
/linux-4.1.27/fs/btrfs/ |
D | file.c | 535 struct extent_map *split = NULL; in btrfs_drop_extent_cache() local 555 if (!split) in btrfs_drop_extent_cache() 556 split = alloc_extent_map(); in btrfs_drop_extent_cache() 559 if (!split || !split2) in btrfs_drop_extent_cache() 591 split->start = em->start; in btrfs_drop_extent_cache() 592 split->len = start - em->start; in btrfs_drop_extent_cache() 595 split->orig_start = em->orig_start; in btrfs_drop_extent_cache() 596 split->block_start = em->block_start; in btrfs_drop_extent_cache() 599 split->block_len = em->block_len; in btrfs_drop_extent_cache() 601 split->block_len = split->len; in btrfs_drop_extent_cache() [all …]
|
D | ctree.c | 3447 struct extent_buffer *split; in split_node() local 3483 split = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid, in split_node() 3485 if (IS_ERR(split)) in split_node() 3486 return PTR_ERR(split); in split_node() 3490 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header)); in split_node() 3491 btrfs_set_header_level(split, btrfs_header_level(c)); in split_node() 3492 btrfs_set_header_bytenr(split, split->start); in split_node() 3493 btrfs_set_header_generation(split, trans->transid); in split_node() 3494 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV); in split_node() 3495 btrfs_set_header_owner(split, root->root_key.objectid); in split_node() [all …]
|
D | extent_io.h | 91 struct extent_state *orig, u64 split);
|
D | extent_io.c | 455 u64 split) in split_cb() argument 458 tree->ops->split_extent_hook(tree->mapping->host, orig, split); in split_cb() 476 struct extent_state *prealloc, u64 split) in split_state() argument 480 split_cb(tree, orig, split); in split_state() 483 prealloc->end = split - 1; in split_state() 485 orig->start = split; in split_state()
|
/linux-4.1.27/drivers/md/ |
D | linear.c | 263 struct bio *split; in linear_make_request() local 286 split = bio_split(bio, end_sector - in linear_make_request() 289 bio_chain(split, bio); in linear_make_request() 291 split = bio; in linear_make_request() 294 split->bi_iter.bi_sector = split->bi_iter.bi_sector - in linear_make_request() 297 if (unlikely((split->bi_rw & REQ_DISCARD) && in linear_make_request() 298 !blk_queue_discard(bdev_get_queue(split->bi_bdev)))) { in linear_make_request() 300 bio_endio(split, 0); in linear_make_request() 302 generic_make_request(split); in linear_make_request() 303 } while (split != bio); in linear_make_request()
|
D | raid0.c | 514 struct bio *split; in raid0_make_request() local 534 split = bio_split(bio, sectors, GFP_NOIO, fs_bio_set); in raid0_make_request() 535 bio_chain(split, bio); in raid0_make_request() 537 split = bio; in raid0_make_request() 542 split->bi_bdev = tmp_dev->bdev; in raid0_make_request() 543 split->bi_iter.bi_sector = sector + zone->dev_start + in raid0_make_request() 546 if (unlikely((split->bi_rw & REQ_DISCARD) && in raid0_make_request() 547 !blk_queue_discard(bdev_get_queue(split->bi_bdev)))) { in raid0_make_request() 549 bio_endio(split, 0); in raid0_make_request() 551 generic_make_request(split); in raid0_make_request() [all …]
|
D | raid10.c | 1542 struct bio *split; in make_request() local 1562 split = bio_split(bio, chunk_sects - in make_request() 1566 bio_chain(split, bio); in make_request() 1568 split = bio; in make_request() 1571 __make_request(mddev, split); in make_request() 1572 } while (split != bio); in make_request()
|
/linux-4.1.27/net/sched/ |
D | sch_cbq.c | 107 struct cbq_class *split; /* Ptr to split node */ member 1058 struct cbq_class *split = cl->split; in cbq_sync_defmap() local 1062 if (split == NULL) in cbq_sync_defmap() 1066 if (split->defaults[i] == cl && !(cl->defmap & (1<<i))) in cbq_sync_defmap() 1067 split->defaults[i] = NULL; in cbq_sync_defmap() 1071 int level = split->level; in cbq_sync_defmap() 1073 if (split->defaults[i]) in cbq_sync_defmap() 1081 if (c->split == split && c->level < level && in cbq_sync_defmap() 1083 split->defaults[i] = c; in cbq_sync_defmap() 1093 struct cbq_class *split = NULL; in cbq_change_defmap() local [all …]
|
/linux-4.1.27/sound/usb/line6/ |
D | midibuf.h | 18 int split; member 28 extern int line6_midibuf_init(struct midi_buffer *mb, int size, int split);
|
D | midibuf.c | 57 int line6_midibuf_init(struct midi_buffer *this, int size, int split) in line6_midibuf_init() argument 65 this->split = split; in line6_midibuf_init() 208 if (!this->split) in line6_midibuf_read()
|
/linux-4.1.27/scripts/ |
D | checkkconfigsymbols.py | 100 split = opts.diff.split("..") 101 commit_a = split[0] 102 commit_b = split[1] 242 line = line.split("#")[0] # ignore comments
|
D | ld-version.sh | 5 split($1,a, ".");
|
D | show_delta | 49 (time_str, rest) = string.split(line[1:],']',1)
|
D | bloat-o-meter | 19 size, type, name = l[:-1].split()
|
D | diffconfig | 44 name, val = line[7:].split("=", 1)
|
D | analyze_suspend.py | 136 kver = string.split(v)[2] 140 kver = string.split(v)[2] 156 self.devicefilter = string.split(devnames) 2837 name = dirname.split('/')[-1] 2909 name = dirname.split('/')[-1] 2951 modes = string.split(fp.read()) 2956 modes = string.split(line)
|
D | spelling.txt | 900 splitted||split
|
/linux-4.1.27/fs/nfs/blocklayout/ |
D | extent_tree.c | 286 struct pnfs_block_extent *split; in ext_tree_insert() local 290 split = kmemdup(new, sizeof(*new), GFP_ATOMIC); in ext_tree_insert() 291 if (!split) { in ext_tree_insert() 296 split->be_length = be->be_f_offset - split->be_f_offset; in ext_tree_insert() 297 split->be_device = nfs4_get_deviceid(new->be_device); in ext_tree_insert() 298 __ext_tree_insert(root, split, true); in ext_tree_insert() 368 sector_t split) in ext_tree_split() argument 377 be->be_length = split - be->be_f_offset; in ext_tree_split() 379 new->be_f_offset = split; in ext_tree_split()
|
/linux-4.1.27/drivers/firewire/ |
D | nosy.c | 173 size_t split = end - buffer->head->data; in packet_buffer_get() local 175 if (copy_to_user(data, buffer->head->data, split)) in packet_buffer_get() 177 if (copy_to_user(data + split, buffer->data, length - split)) in packet_buffer_get() 179 buffer->head = (struct packet *) &buffer->data[length - split]; in packet_buffer_get() 212 size_t split = end - buffer->tail->data; in packet_buffer_put() local 214 memcpy(buffer->tail->data, data, split); in packet_buffer_put() 215 memcpy(buffer->data, data + split, length - split); in packet_buffer_put() 216 buffer->tail = (struct packet *) &buffer->data[length - split]; in packet_buffer_put()
|
/linux-4.1.27/arch/x86/include/asm/ |
D | perf_event.h | 91 } split; member 104 } split; member 113 } split; member
|
/linux-4.1.27/tools/perf/scripts/python/ |
D | net_dropmonitor.py | 25 loc = int(line.split()[0], 16) 26 name = line.split()[2]
|
/linux-4.1.27/arch/tile/ |
D | Kconfig | 278 prompt "Memory split" if EXPERT 281 Select the desired split between kernel and user memory. 289 tighter. Selecting anything other than the default 3G/1G split 297 bool "3.75G/0.25G user/kernel split (no kernel networking)" 299 bool "3.5G/0.5G user/kernel split" 301 bool "3G/1G user/kernel split" 303 bool "2.75G/1.25G user/kernel split (for full 1G low memory)" 305 bool "2.5G/1.5G user/kernel split" 307 bool "2.25G/1.75G user/kernel split" 309 bool "2G/2G user/kernel split" [all …]
|
/linux-4.1.27/Documentation/trace/ |
D | function-graph-fold.vim | 29 let s = split(getline(v:foldstart), '|', 1) 33 let e = split(getline(v:foldend), '|', 1)
|
D | ftrace-design.txt | 294 easier to have two separate definitions split up by #ifdefs. Same goes for
|
/linux-4.1.27/arch/x86/kvm/ |
D | pmu.c | 483 pmu->version = eax.split.version_id; in kvm_pmu_cpuid_update() 487 pmu->nr_arch_gp_counters = min_t(int, eax.split.num_counters, in kvm_pmu_cpuid_update() 489 pmu->counter_bitmask[KVM_PMC_GP] = ((u64)1 << eax.split.bit_width) - 1; in kvm_pmu_cpuid_update() 491 ((1ull << eax.split.mask_length) - 1); in kvm_pmu_cpuid_update() 497 min_t(int, edx.split.num_counters_fixed, in kvm_pmu_cpuid_update() 500 ((u64)1 << edx.split.bit_width_fixed) - 1; in kvm_pmu_cpuid_update()
|
D | cpuid.c | 449 eax.split.version_id = min(cap.version, 2); in __do_cpuid_ent() 450 eax.split.num_counters = cap.num_counters_gp; in __do_cpuid_ent() 451 eax.split.bit_width = cap.bit_width_gp; in __do_cpuid_ent() 452 eax.split.mask_length = cap.events_mask_len; in __do_cpuid_ent() 454 edx.split.num_counters_fixed = cap.num_counters_fixed; in __do_cpuid_ent() 455 edx.split.bit_width_fixed = cap.bit_width_fixed; in __do_cpuid_ent() 456 edx.split.reserved = 0; in __do_cpuid_ent()
|
/linux-4.1.27/drivers/media/pci/ivtv/ |
D | ivtv-udma.c | 75 …udma_fill_sg_array (struct ivtv_user_dma *dma, u32 buffer_offset, u32 buffer_offset_2, u32 split) { in ivtv_udma_fill_sg_array() argument 85 split -= sg_dma_len(sg); in ivtv_udma_fill_sg_array() 86 if (split == 0) in ivtv_udma_fill_sg_array()
|
D | ivtv-udma.h | 27 …v_udma_fill_sg_array(struct ivtv_user_dma *dma, u32 buffer_offset, u32 buffer_offset_2, u32 split);
|
/linux-4.1.27/sound/usb/usx2y/ |
D | usb_stream.c | 561 unsigned split = s->inpacket_head; in stream_start() local 563 while (l > s->inpacket[split].length) { in stream_start() 564 l -= s->inpacket[split].length; in stream_start() 565 if (split == 0) in stream_start() 566 split = s->inpackets - 1; in stream_start() 568 split--; in stream_start() 570 s->next_inpacket_split = split; in stream_start() 572 s->inpacket[split].length - l; in stream_start()
|
/linux-4.1.27/Documentation/misc-devices/mei/ |
D | TODO | 2 - Cleanup and split the timer function
|
/linux-4.1.27/scripts/rt-tester/ |
D | rt-tester.py | 141 parts = line.split(":") 179 stat = status.split(",")
|
/linux-4.1.27/arch/x86/tools/ |
D | chkobjdump.awk | 22 split(verstr, ver, ".");
|
D | distill.awk | 24 if (split($0, field, "\t") < 3) {
|
D | gen-insn-attr-x86.awk | 291 count = split($(i++), opnds, ",")
|
/linux-4.1.27/scripts/gdb/linux/ |
D | symbols.py | 112 module_addr = str(module['module_core']).split()[0] 157 self.module_paths = arg.split()
|
D | dmesg.py | 27 log_buf_addr = int(str(gdb.parse_and_eval("log_buf")).split()[0], 16)
|
D | modules.py | 77 address=str(module['module_core']).split()[0],
|
D | utils.py | 47 return int(str(element[field].address).split()[0], 16)
|
/linux-4.1.27/drivers/media/dvb-frontends/ |
D | dib7000m.c | 638 …if(!state->current_agc || !state->current_agc->perform_agc_softsplit || state->current_agc->split.… in dib7000m_agc_soft_split() 644 if (agc > state->current_agc->split.min_thres) in dib7000m_agc_soft_split() 645 split_offset = state->current_agc->split.min; in dib7000m_agc_soft_split() 646 else if (agc < state->current_agc->split.max_thres) in dib7000m_agc_soft_split() 647 split_offset = state->current_agc->split.max; in dib7000m_agc_soft_split() 649 split_offset = state->current_agc->split.max * in dib7000m_agc_soft_split() 650 (agc - state->current_agc->split.min_thres) / in dib7000m_agc_soft_split() 651 (state->current_agc->split.max_thres - state->current_agc->split.min_thres); in dib7000m_agc_soft_split()
|
D | dibx000_common.h | 113 } split; member
|
D | dib8000.c | 1239 …if (!state->current_agc || !state->current_agc->perform_agc_softsplit || state->current_agc->split… in dib8000_agc_soft_split() 1245 if (agc > state->current_agc->split.min_thres) in dib8000_agc_soft_split() 1246 split_offset = state->current_agc->split.min; in dib8000_agc_soft_split() 1247 else if (agc < state->current_agc->split.max_thres) in dib8000_agc_soft_split() 1248 split_offset = state->current_agc->split.max; in dib8000_agc_soft_split() 1250 split_offset = state->current_agc->split.max * in dib8000_agc_soft_split() 1251 (agc - state->current_agc->split.min_thres) / in dib8000_agc_soft_split() 1252 (state->current_agc->split.max_thres - state->current_agc->split.min_thres); in dib8000_agc_soft_split()
|
/linux-4.1.27/arch/mips/mm/ |
D | tlbex.c | 1370 u32 *split; in build_r4000_tlb_refill_handler() local 1377 split = labels[i].addr; in build_r4000_tlb_refill_handler() 1382 if (split > tlb_handler + MIPS64_REFILL_INSNS || in build_r4000_tlb_refill_handler() 1383 split < p - MIPS64_REFILL_INSNS) in build_r4000_tlb_refill_handler() 1392 split = tlb_handler + MIPS64_REFILL_INSNS - 2; in build_r4000_tlb_refill_handler() 1399 if (uasm_insn_has_bdelay(relocs, split - 1)) in build_r4000_tlb_refill_handler() 1400 split--; in build_r4000_tlb_refill_handler() 1403 uasm_copy_handler(relocs, labels, tlb_handler, split, f); in build_r4000_tlb_refill_handler() 1404 f += split - tlb_handler; in build_r4000_tlb_refill_handler() 1410 if (uasm_insn_has_bdelay(relocs, split)) in build_r4000_tlb_refill_handler() [all …]
|
/linux-4.1.27/net/caif/ |
D | cfpkt_skbuff.c | 345 u8 *split = skb->data + pos; in cfpkt_split() local 346 u16 len2nd = skb_tail_pointer(skb) - split; in cfpkt_split() 371 memcpy(skb2->data, split, len2nd); in cfpkt_split()
|
/linux-4.1.27/fs/ceph/ |
D | snap.c | 811 u64 split; in ceph_handle_snap() local 828 split = le64_to_cpu(h->split); /* non-zero if we are splitting an in ceph_handle_snap() 836 ceph_snap_op_name(op), split, trace_len); in ceph_handle_snap() 864 realm = ceph_lookup_snap_realm(mdsc, split); in ceph_handle_snap() 866 realm = ceph_create_snap_realm(mdsc, split); in ceph_handle_snap()
|
/linux-4.1.27/tools/perf/util/ |
D | setup.py | 21 cflags = getenv('CFLAGS', '').split()
|
/linux-4.1.27/drivers/staging/vt6656/ |
D | TODO | 7 - split rf.c
|
/linux-4.1.27/block/ |
D | bio.c | 1827 struct bio *split = NULL; in bio_split() local 1837 split = bio_clone_bioset(bio, gfp, bs); in bio_split() 1839 split = bio_clone_fast(bio, gfp, bs); in bio_split() 1841 if (!split) in bio_split() 1844 split->bi_iter.bi_size = sectors << 9; in bio_split() 1846 if (bio_integrity(split)) in bio_split() 1847 bio_integrity_trim(split, 0, sectors); in bio_split() 1849 bio_advance(bio, split->bi_iter.bi_size); in bio_split() 1851 return split; in bio_split()
|
/linux-4.1.27/drivers/staging/vt6655/ |
D | TODO | 6 - split rf.c
|
/linux-4.1.27/Documentation/ABI/obsolete/ |
D | sysfs-driver-hid-roccat-koneplus | 29 press of a button. A profile is split in settings and buttons. 41 press of a button. A profile is split in settings and buttons.
|
D | sysfs-driver-hid-roccat-kovaplus | 47 press of a button. A profile is split in settings and buttons. 59 press of a button. A profile is split in settings and buttons.
|
D | sysfs-driver-hid-roccat-pyra | 44 press of a button. A profile is split in settings and buttons. 56 press of a button. A profile is split in settings and buttons.
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-driver-hid-roccat-kovaplus | 24 press of a button. A profile is split in settings and buttons. 39 press of a button. A profile is split in settings and buttons.
|
D | sysfs-driver-hid-roccat-pyra | 13 press of a button. A profile is split in settings and buttons. 29 press of a button. A profile is split in settings and buttons.
|
D | sysfs-driver-sunxi-sid | 7 whereas the newer A20 SoC exposes 512 bytes split into sections.
|
D | sysfs-driver-hid-roccat-savu | 5 press of a button. A profile is split into general settings and 28 press of a button. A profile is split into general settings and
|
D | sysfs-driver-hid-roccat-koneplus | 35 press of a button. A profile is split in settings and buttons. 50 press of a button. A profile is split in settings and buttons.
|
D | sysfs-driver-hid-roccat-konepure | 44 press of a button. A profile is split in settings and buttons. 59 press of a button. A profile is split in settings and buttons.
|
D | sysfs-driver-wacom | 71 1024 byte binary is split up into 16x 64 byte chunks. Each 64
|
/linux-4.1.27/lib/ |
D | dynamic_debug.c | 468 char *split; in ddebug_exec_queries() local 471 for (i = 0; query; query = split) { in ddebug_exec_queries() 472 split = strpbrk(query, ";\n"); in ddebug_exec_queries() 473 if (split) in ddebug_exec_queries() 474 *split++ = '\0'; in ddebug_exec_queries()
|
/linux-4.1.27/Documentation/x86/x86_64/ |
D | fake-numa-for-cpusets | 17 emulation setup of "numa=fake=4*512,". This will split our system memory into 23 A machine may be split as follows with "numa=fake=4*512," as reported by dmesg:
|
D | kernel-stacks | 21 the split thread and interrupt stacks on i386, this gives more room
|
/linux-4.1.27/Documentation/networking/ |
D | udplite.txt | 161 split the payload into several individual packets, filling up the 166 UDP-Lite packet is split into several IP packets, of which only the 186 As an example of what happens when one UDP-Lite packet is split into 200 header). According to the interface MTU, these are split into 4 IP 211 of 3356 bytes will be split into the following fragments:
|
D | proc_net_tcp.txt | 9 TCP connections. A typical entry of /proc/net/tcp would look like this (split
|
D | s2io.txt | 102 max-split-transactions(MOST) and MMRBC (use setpci command).
|
D | tcp.txt | 100 zero window we split this.
|
D | cxgb.txt | 212 retransmits if the packet data were to be split across different CPUs 274 can provide stale data via split completion cycles to a PCI-X card that
|
D | operstates.txt | 17 split into two parts: Two flags that can be set by the driver only, and
|
D | netdev-features.txt | 113 NETIF_F_TSO_ECN means that hardware can properly split packets with CWR bit
|
D | phonet.txt | 39 The device ID is split: the 6 higher-order bits constitute the device
|
D | baycom.txt | 5 !!NEW!! (04/98) The drivers for the baycom modems have been split into
|
D | vortex.txt | 377 8K byte-wide RAM 5:3 Rx:Tx split, autoselect/Autonegotiate interface.
|
D | l2tp.txt | 34 To support L2TPv3, the original pppol2tp driver was split up to
|
D | ixgb.txt | 384 adapters or with packet split disabled. This can be reduced or eliminated
|
D | timestamping.txt | 197 may be split across segments, any segments may be merged (possibly
|
/linux-4.1.27/Documentation/scheduler/ |
D | sched-nice-design.txt | 74 and another task with +2, the CPU split between the two tasks would 76 CPU split was different than if it was at +5 or +10. 98 utilization "split" between them as running a nice -5 and a nice -4
|
D | sched-design-CFS.txt | 41 value (i.e., the task which executed least so far). CFS always tries to split
|
/linux-4.1.27/net/wireless/ |
D | genregdb.awk | 90 split(flagstr, flagarray, ",")
|
D | nl80211.c | 1249 bool split; member 1328 if (state->split) in nl80211_send_wiphy() 1373 if (state->split) in nl80211_send_wiphy() 1380 if (state->split) in nl80211_send_wiphy() 1405 if (state->split) in nl80211_send_wiphy() 1425 state->split)) in nl80211_send_wiphy() 1429 if (state->split) in nl80211_send_wiphy() 1441 if (state->split) { in nl80211_send_wiphy() 1458 if (state->split) in nl80211_send_wiphy() 1527 if (state->split) { in nl80211_send_wiphy() [all …]
|
/linux-4.1.27/arch/sh/cchips/ |
D | Kconfig | 27 # These will also be split into the Kconfig's below
|
/linux-4.1.27/mm/ |
D | mremap.c | 246 int split = 0; in move_vma() local 304 split = 1; in move_vma() 329 if (split) in move_vma()
|
D | Kconfig | 217 # space can be handled with less contention: split it at this NR_CPUS.
|
/linux-4.1.27/arch/cris/boot/compressed/ |
D | README | 6 The kernel object built by the arch/etrax100/Makefile, vmlinux, is split
|
/linux-4.1.27/Documentation/arm/Samsung/ |
D | clksrc-change-registers.awk | 24 r = split(l, tp)
|
/linux-4.1.27/tools/perf/tests/ |
D | attr.py | 80 a_list = a.split('|') 81 b_list = b.split('|')
|
/linux-4.1.27/drivers/staging/media/bcm2048/ |
D | TODO | 20 Finally this driver should probably be split up into two parts: one
|
/linux-4.1.27/Documentation/spi/ |
D | spi-sc18is602 | 31 similar large accesses have to be split into multiple chunks of no more than
|
/linux-4.1.27/Documentation/devicetree/bindings/sound/ |
D | ti,tas5086.txt | 16 split-capacitor charge period. The hardware chip
|
/linux-4.1.27/drivers/net/wan/ |
D | sdla.c | 764 short dlci, len, len2, split; in sdla_receive() local 854 split = addr + len > buf_top + 1 ? len - (buf_top - addr + 1) : 0; in sdla_receive() 855 len2 = len - split; in sdla_receive() 858 if (split) in sdla_receive() 859 __sdla_read(dev, buf_base, skb_put(skb, split), split); in sdla_receive()
|
/linux-4.1.27/drivers/crypto/ |
D | mxs-dcp.c | 271 int split = 0; in mxs_dcp_aes_block_crypt() local 316 if (!split) { in mxs_dcp_aes_block_crypt() 330 split = 0; in mxs_dcp_aes_block_crypt() 332 split = 1; in mxs_dcp_aes_block_crypt()
|
/linux-4.1.27/Documentation/dvb/ |
D | readme.txt | 16 We plan to split this into separate packages, but it's not
|
/linux-4.1.27/Documentation/usb/ |
D | dwc3.txt | 21 - the interrupt handler is split into the following pieces:
|
D | ehci.txt | 20 high speed "split transactions" that don't waste transfer bandwidth. 60 is not yet available. Note that split transaction support for ISO
|
D | usbmon.txt | 170 not machine words, but really just a byte stream split into words to make
|
/linux-4.1.27/tools/perf/Documentation/ |
D | Makefile | 288 $(QUIET_MAKEINFO)$(MAKEINFO) --no-split -o $@ $(OUTPUT)user-manual.texi 311 $(QUIET_MAKEINFO)$(MAKEINFO) --no-split --no-validate $*.texi
|
/linux-4.1.27/scripts/kconfig/ |
D | qconf.cc | 1205 split = new QSplitter(this); in ConfigSearchWindow() 1206 split->setOrientation(Qt::Vertical); in ConfigSearchWindow() 1207 list = new ConfigView(split, name); in ConfigSearchWindow() 1209 info = new ConfigInfoView(split, name); in ConfigSearchWindow() 1215 layout1->addWidget(split); in ConfigSearchWindow() 1232 split->setSizes(sizes); in ConfigSearchWindow() 1246 configSettings->writeSizes("/split", split->sizes()); in saveSettings()
|
D | qconf.h | 295 QSplitter* split; variable
|
/linux-4.1.27/fs/ext4/ |
D | extents.c | 107 ext4_lblk_t split, 3159 ext4_lblk_t split, in ext4_split_extent_at() argument 3175 "block %llu\n", inode->i_ino, (unsigned long long)split); in ext4_split_extent_at() 3183 newblock = split - ee_block + ext4_ext_pblock(ex); in ext4_split_extent_at() 3185 BUG_ON(split < ee_block || split >= (ee_block + ee_len)); in ext4_split_extent_at() 3195 if (split == ee_block) { in ext4_split_extent_at() 3215 ex->ee_len = cpu_to_le16(split - ee_block); in ext4_split_extent_at() 3228 ex2->ee_block = cpu_to_le32(split); in ext4_split_extent_at() 3229 ex2->ee_len = cpu_to_le16(ee_len - (split - ee_block)); in ext4_split_extent_at() 5575 int split = 0; in ext4_swap_extents() local [all …]
|
D | namei.c | 1697 unsigned split, move, size; in do_split() local 1742 split = count - move; in do_split() 1743 hash2 = map[split].hash; in do_split() 1744 continued = hash2 == map[split - 1].hash; in do_split() 1747 hash2, split, count-split)); in do_split() 1750 de2 = dx_move_dirents(data1, data2, map + split, count - split, in do_split()
|
/linux-4.1.27/drivers/xen/xenbus/ |
D | xenbus_xs.c | 367 static char **split(char *strings, unsigned int len, unsigned int *num) in split() function 405 return split(strings, len, num); in xenbus_directory() 898 msg->u.watch.vec = split(body, msg->hdr.len, in process_msg()
|
/linux-4.1.27/Documentation/block/ |
D | biovecs.txt | 74 bios with more than a single bvec! Now, we can efficiently split arbitrary 77 Care must be taken to ensure the biovec isn't freed while the split bio is
|
D | data-integrity.txt | 52 The controller will interleave the buffers on write and split them on
|
/linux-4.1.27/fs/ext3/ |
D | namei.c | 1149 unsigned split, move, size; in do_split() local 1189 split = count - move; in do_split() 1190 hash2 = map[split].hash; in do_split() 1191 continued = hash2 == map[split - 1].hash; in do_split() 1193 dx_get_block(frame->at), hash2, split, count-split)); in do_split() 1196 de2 = dx_move_dirents(data1, data2, map + split, count - split); in do_split()
|
/linux-4.1.27/Documentation/devicetree/bindings/dma/ |
D | fsl-edma.txt | 4 registers. channels are split into two groups, called DMAMUX0 and DMAMUX1,
|
/linux-4.1.27/drivers/media/pci/saa7134/ |
D | saa7134-core.c | 385 u32 split, task=0, ctrl=0, irq=0; in saa7134_set_dmabits() local 448 split = 0; in saa7134_set_dmabits() 462 split = 1; in saa7134_set_dmabits() 478 task, ctrl, irq, split ? "no" : "yes"); in saa7134_set_dmabits()
|
/linux-4.1.27/Documentation/ |
D | dontdiff | 221 split-include
|
D | kernel-doc-nano-HOWTO.txt | 169 $ scripts/kernel-doc -man $(find -name '*.c') | split-man.pl /tmp/man 170 $ scripts/kernel-doc -man $(find -name '*.h') | split-man.pl /tmp/man 172 Here is split-man.pl:
|
D | bcache.txt | 187 cause the btree node to be split, and you need almost no write traffic for 358 will split, increasing the tree depth.
|
D | parport.txt | 12 The parport code is split into two parts: generic (which deals with
|
D | assoc_array.txt | 499 node, that node will be split such that at least two leaves that have a common 547 We might, however, re-see some leaves that have been split out into a new
|
D | clk.txt | 9 Part 1 - introduction and interface split
|
D | unshare.txt | 231 function. The first component was split into its own function.
|
D | oops-tracing.txt | 97 i386, split into multiple lines for readability:
|
D | vme_api.txt | 96 For slave windows these attributes are split into the VME address spaces that
|
D | CodingStyle | 369 function, and split it into smaller pieces. A human brain can 441 fix for this is to split it up into two error labels "err_bar:" and "err_foo:".
|
D | cachetlb.txt | 80 split-tlb type setups).
|
D | SubmittingPatches | 95 If your changes produce a lot of deltas, you need to split them into 143 long, that's a sign that you probably need to split up your patch.
|
D | applying-patches.txt | 175 two lines that had been split.
|
D | memory-barriers.txt | 559 machines with split caches, so that, for example, one cache bank processes 2821 split cache that improves performance by making better use of the data bus. 2825 Other CPUs may also have split caches, but must coordinate between the various 2984 some versions of the Alpha CPU have a split data cache, permitting them to have
|
/linux-4.1.27/Documentation/fb/ |
D | api.txt | 68 Macropixels are split across multiple planes. The number of planes is equal to 76 Macropixels are split across multiple planes. The number of planes is equal to 267 Pixel values are bits_per_pixel wide and are split in non-overlapping red,
|
/linux-4.1.27/Documentation/powerpc/ |
D | cpu_features.txt | 10 split instruction and data caches, and if the CPU supports the DOZE and NAP
|
D | pci_iov_resource_on_powernv.txt | 178 - M32 window: There's one M32 window, and it is split into 256 197 - Multiple segmented M64 windows: As usual, each window is split into 256
|
D | qe_firmware.txt | 70 needs split I-RAM. Split I-RAM is only meaningful for SOCs that have
|
D | eeh-pci-error-recovery.txt | 51 connectivity due to a poorly seated card), and PCI-X split-completion
|
/linux-4.1.27/Documentation/kbuild/ |
D | kconfig.txt | 98 KCONFIG_PROBABILITY y:n split y:m:n split
|
D | modules.txt | 217 to split up the makefile from example 1 into two files: 234 The split in example 2 is questionable due to the simplicity of 267 split into separate files.
|
/linux-4.1.27/Documentation/filesystems/ |
D | qnx6.txt | 26 The space in the device or file is split up into blocks. These are a fixed 152 First the system area, that is split into two halves.
|
D | nilfs2.txt | 242 To stride over segment boundaries, this sequence of files may be split
|
D | logfs.txt | 31 The space in the device is split up into equal-sized segments.
|
D | ntfs.txt | 87 their data attribute split across multiple extents, is included. Another 95 i.e. ones which have their data attribute split across multiple extents, is
|
D | squashfs.txt | 173 is split into slots, caching up to eight 224 GiB files (128 KiB blocks).
|
D | ext2.txt | 79 The space in the device or file is split up into blocks. These are
|
D | relay.txt | 35 the next (if available). Messages are never split across sub-buffers.
|
D | xfs-delayed-logging-design.txt | 481 number of split log vector regions are going to be used. We can track the 487 transaction and region headers, headers for split regions, buffer tail padding,
|
/linux-4.1.27/arch/arm64/ |
D | Kconfig.debug | 85 the kernel. This prevents sections from being split into pages and
|
/linux-4.1.27/arch/powerpc/boot/dts/fsl/ |
D | bsc9132si-post.dtsi | 39 /* FIXME: Test whether interrupts are split */
|
/linux-4.1.27/Documentation/devicetree/bindings/mmc/ |
D | exynos-dw-mshc.txt | 69 The MSHC controller node can be split into two portions, SoC specific and
|
D | synopsys-dw-mshc.txt | 85 The MSHC controller node can be split into two portions, SoC specific and
|
/linux-4.1.27/Documentation/mn10300/ |
D | ABI.txt | 24 If 64-bit arguments are being passed, then they are never split between
|
/linux-4.1.27/drivers/staging/media/davinci_vpfe/ |
D | davinci-vpfe-mc.txt | 30 The Davinci VPFE is split into V4L2 subdevs, each of the blocks inside the VPFE
|
/linux-4.1.27/Documentation/mmc/ |
D | mmc-async-req.txt | 60 the performance loss. A way to optimize for this is to split the current
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/ |
D | mpc5200.txt | 15 The split between the MPC5200 and the MPC5200B leaves a bit of a 173 split reflects the layout of the PIC hardware itself, which groups
|
D | fman.txt | 121 FMan internal memory is split into the following parts:
|
/linux-4.1.27/Documentation/mtd/nand/ |
D | pxa3xx-nand.txt | 84 Given the ECC BCH requires to layout the device's pages in a split
|
/linux-4.1.27/drivers/block/ |
D | pktcdvd.c | 2447 struct bio *split; in pkt_make_request() local 2488 split = bio_split(bio, last_zone - in pkt_make_request() 2491 bio_chain(split, bio); in pkt_make_request() 2493 split = bio; in pkt_make_request() 2496 pkt_make_request_write(q, split); in pkt_make_request() 2497 } while (split != bio); in pkt_make_request()
|
/linux-4.1.27/Documentation/arm/ |
D | cluster-pm-race-avoidance.txt | 82 Each cluster is also assigned a state, but it is necessary to split the 212 reason, the cluster state is split into two parts: 450 The current ARM-based implementation is split between
|
D | README | 74 continue supporting these differences, it has become necessary to split
|
/linux-4.1.27/drivers/mtd/ubi/ |
D | Kconfig | 50 flash chip admits maximum 40 bad eraseblocks, and it is split on two
|
/linux-4.1.27/drivers/staging/i2o/ |
D | Kconfig | 6 drivers to be split into two parts: an operating system specific
|
/linux-4.1.27/Documentation/RCU/ |
D | rcu.txt | 4 The basic idea behind RCU (read-copy update) is to split destructive
|
D | trace.txt | 548 This is split into rcu_sched and rcu_bh sections. The field is as
|
/linux-4.1.27/drivers/md/bcache/ |
D | btree.c | 1964 bool split; in btree_split() local 1984 split = set_blocks(btree_bset_first(n1), in btree_split() 1987 if (split) { in btree_split() 2113 goto split; in bch_btree_insert_node() 2131 split: in bch_btree_insert_node()
|
D | request.c | 213 struct bio_set *split = op->c->bio_split; in bch_data_insert_start() local 231 n = bio_next_split(bio, KEY_SIZE(k), GFP_NOIO, split); in bch_data_insert_start()
|
/linux-4.1.27/arch/powerpc/sysdev/qe_lib/ |
D | qe.c | 483 if (!firmware->split) in qe_upload_firmware()
|
/linux-4.1.27/include/uapi/linux/ |
D | pkt_sched.h | 462 __u32 split; member
|
/linux-4.1.27/Documentation/hwmon/ |
D | submitting-patches | 41 * If the added functionality requires some cleanup or structural changes, split
|
D | pmbus-core | 34 split into core, generic, and device specific code. The core code (in
|
D | w83781d | 371 PWM registers seem to be split in two parts: bit 7 is a mode selector,
|
/linux-4.1.27/Documentation/scsi/ |
D | hpsa.txt | 10 "split-brained" design of the cciss driver is a source of excess
|
D | ChangeLog.lpfc | 11 * Merged patch from Christoph Hellwig <hch@lst.de>: split helpers 120 iocb on two lists. Also split the lpfc_sli_ringtxcmpl_get 491 * lpfc_sli_update_ring() is split in to two --
|
/linux-4.1.27/arch/powerpc/include/asm/ |
D | qe.h | 209 u8 split; /* 0 = shared I-RAM, 1 = split I-RAM */ member
|
/linux-4.1.27/Documentation/networking/caif/ |
D | Linux-CAIF.txt | 112 - CFSERL CAIF Serial layer. Handles concatenation/split of frames
|
/linux-4.1.27/fs/xfs/ |
D | xfs_log.c | 1744 int split = 0; /* split write into two regions */ in xlog_sync() local 1792 split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp))); in xlog_sync() 1804 for (i = 0; i < split; i += BBSIZE) { in xlog_sync() 1862 if (split) { in xlog_sync() 1866 (char *)&iclog->ic_header + count, split); in xlog_sync()
|
/linux-4.1.27/Documentation/power/regulator/ |
D | overview.txt | 132 relevant to non SoC devices and is split into the following four interfaces:-
|
/linux-4.1.27/arch/x86/ |
D | Kconfig | 1192 split: 3GB are mapped so that each process sees a 3GB virtual memory 1232 prompt "Memory split" if EXPERT 1236 Select the desired split between kernel and user memory. 1244 tighter. Selecting anything other than the default 3G/1G split 1252 bool "3G/1G user/kernel split" 1255 bool "3G/1G user/kernel split (for full 1G low memory)" 1257 bool "2G/2G user/kernel split" 1260 bool "2G/2G user/kernel split (for full 2G low memory)" 1262 bool "1G/3G user/kernel split" 1357 Enable NUMA emulation. A flat machine will be split [all …]
|
/linux-4.1.27/include/linux/ceph/ |
D | ceph_fs.h | 742 __le64 split; /* ino to split off, if any */ member
|
/linux-4.1.27/Documentation/devicetree/bindings/memory-controllers/ |
D | mvebu-devbus.txt | 165 * We split the 16 MiB in two partitions,
|
/linux-4.1.27/drivers/mtd/maps/ |
D | Kconfig | 132 System's TS-5500 board. The 2MB flash is split into 3 partitions 149 By default the flash is split into 3 partitions which are accessed
|
/linux-4.1.27/arch/metag/ |
D | Kconfig | 88 Depending on the selected kernel/user memory split, minimum
|
/linux-4.1.27/Documentation/w1/ |
D | w1.netlink | 94 exceeds this, it will be split into several messages.
|
/linux-4.1.27/arch/frv/kernel/ |
D | head.S | 549 # split a tile off of the region defined by GR8-GR9
|
/linux-4.1.27/Documentation/locking/ |
D | spinlocks.txt | 28 sequences that you _know_ need to be split up: avoid it at all cost if you
|
/linux-4.1.27/sound/isa/ |
D | es18xx.c | 790 int split = 0; in snd_es18xx_interrupt() local 792 split = snd_es18xx_mixer_read(chip, 0x64) & 0x80; in snd_es18xx_interrupt() 798 if (!split) { in snd_es18xx_interrupt()
|
/linux-4.1.27/fs/ocfs2/ |
D | alloc.c | 2360 enum ocfs2_split_type split, in ocfs2_rotate_tree_right() argument 2437 if (split == SPLIT_NONE && in ocfs2_rotate_tree_right() 2480 if (split != SPLIT_NONE && in ocfs2_rotate_tree_right() 3789 enum ocfs2_split_type split, in ocfs2_subtract_from_rec() argument 3798 if (split == SPLIT_LEFT) { in ocfs2_subtract_from_rec() 4039 enum ocfs2_split_type split) in ocfs2_split_record() argument 4069 if (split == SPLIT_LEFT) { in ocfs2_split_record() 4109 split, rec, split_rec); in ocfs2_split_record()
|
D | refcounttree.c | 2204 struct ocfs2_refcount_rec split = *rec; in ocfs2_decrease_refcount_rec() local 2205 split.r_cpos = cpu_to_le64(cpos); in ocfs2_decrease_refcount_rec() 2206 split.r_clusters = cpu_to_le32(len); in ocfs2_decrease_refcount_rec() 2208 le32_add_cpu(&split.r_refcount, -1); in ocfs2_decrease_refcount_rec() 2212 &split, index, 1, in ocfs2_decrease_refcount_rec()
|
/linux-4.1.27/Documentation/metag/ |
D | kernel-ABI.txt | 246 split into separate GETL instructions:
|
/linux-4.1.27/Documentation/filesystems/caching/ |
D | cachefiles.txt | 409 CacheFiles makes use of the split security in the task_struct. It allocates 431 So CacheFiles makes use of a logical split in the security between the
|
/linux-4.1.27/arch/arm/ |
D | Kconfig | 1429 prompt "Memory split" 1433 Select the desired split between kernel and user memory. 1439 bool "3G/1G user/kernel split" 1441 bool "2G/2G user/kernel split" 1443 bool "1G/3G user/kernel split" 1656 Depending on the selected kernel/user memory split, minimum
|
/linux-4.1.27/arch/cris/arch-v10/ |
D | README.mm | 155 The paging mechanism uses virtual addresses to split a process memory-space into
|
/linux-4.1.27/Documentation/video4linux/ |
D | omap3isp.txt | 33 The OMAP 3 ISP is split into V4L2 subdevs, each of the blocks inside the ISP
|
D | Zoran | 185 to split coma and luma instead of a Delay line.
|
/linux-4.1.27/sound/pci/ |
D | es1938.c | 1696 int split = snd_es1938_mixer_read(chip, 0x64) & 0x80; in snd_es1938_interrupt() local 1700 if (!split) { in snd_es1938_interrupt()
|
/linux-4.1.27/Documentation/hid/ |
D | uhid.txt | 38 payloads are sent. You must not split a single event across multiple read()'s or
|
/linux-4.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 289 Note: If the host is configured with a 2G/2G address space split 290 rather than the usual 3G/1G split, then the packaged UML binaries 450 Note: If the host is configured with a 2G/2G address space split 451 rather than the usual 3G/1G split, then the packaged UML binaries will 542 machine are configured with a 2G/2G split, with the kernel occupying 4024 If the host is configured with the 2G/2G address space split, that's
|
/linux-4.1.27/Documentation/development-process/ |
D | 5.Posting | 82 split apart in ways which make sense. The developers are interested in
|
D | 4.Coding | 53 style (a line which becomes far less readable if split to fit within the
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/ |
D | idle-states.txt | 143 The graph is split in two parts delimited by time 1ms on the X-axis.
|
/linux-4.1.27/Documentation/PCI/ |
D | pci-error-recovery.txt | 371 wild addresses or bogus split transactions due to programming
|
/linux-4.1.27/Documentation/arm64/ |
D | arm-acpi.txt | 68 kernel, but rather must be split between the platform and the kernel, in
|