Home
last modified time | relevance | path

Searched refs:split (Results 1 – 200 of 231) sorted by relevance

12

/linux-4.4.14/drivers/media/dvb-core/
Ddvb_ringbuffer.c114 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.4.14/lib/
Dsg_split.c83 struct sg_splitter *split; in sg_split_phys() local
85 for (i = 0, split = splitters; i < nb_splits; i++, split++) { in sg_split_phys()
86 in_sg = split->in_sg0; in sg_split_phys()
87 out_sg = split->out_sg; in sg_split_phys()
88 for (j = 0; j < split->nents; j++, out_sg++) { in sg_split_phys()
91 out_sg->offset += split->skip_sg0; in sg_split_phys()
92 out_sg->length -= split->skip_sg0; in sg_split_phys()
100 out_sg[-1].length = split->length_last_sg; in sg_split_phys()
109 struct sg_splitter *split; in sg_split_mapped() local
111 for (i = 0, split = splitters; i < nb_splits; i++, split++) { in sg_split_mapped()
[all …]
Ddynamic_debug.c468 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()
DKconfig517 Provides a heler to split scatterlists into chunks, each chunk being a
519 whishes to split a scatterlist amongst multiple DMA channel.
/linux-4.4.14/arch/x86/kernel/cpu/
Dintel_cacheinfo.c132 } 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 …]
Dperf_event_intel.c3158 if (ebx.split.no_branch_misses_retired) { in intel_nehalem_quirk()
3166 ebx.split.no_branch_misses_retired = 0; in intel_nehalem_quirk()
3255 if (eax.split.mask_length < ARCH_PERFMON_EVENTS_COUNT) in intel_pmu_init()
3258 version = eax.split.version_id; in intel_pmu_init()
3265 x86_pmu.num_counters = eax.split.num_counters; in intel_pmu_init()
3266 x86_pmu.cntval_bits = eax.split.bit_width; in intel_pmu_init()
3267 x86_pmu.cntval_mask = (1ULL << eax.split.bit_width) - 1; in intel_pmu_init()
3270 x86_pmu.events_mask_len = eax.split.mask_length; in intel_pmu_init()
3279 x86_pmu.num_counters_fixed = max((int)edx.split.num_counters_fixed, 3); in intel_pmu_init()
/linux-4.4.14/security/apparmor/
Dlib.c44 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()
Dpolicy.c110 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.4.14/fs/jfs/
Djfs_xtree.c109 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 …]
Djfs_dtree.c153 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.4.14/Documentation/vm/
Dsplit_page_table_lock7 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 …]
Dtranshuge.txt224 thp_split is incremented every time a huge page is split into base
289 follow_page, so that it will split the hugepages before returning
324 but you can't handle it natively in your code, you can split it by
380 on any tail page, would mean having to split all hugepages upfront in
384 hugetlbfs pages cannot be split so there wouldn't be requirement of
390 split during its lifetime. That requires changing not just
Dhighmem.txt40 The traditional split for architectures using this approach is 3:1, 3GiB for
Dunevictable-lru.txt318 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.4.14/drivers/md/
Dlinear.c221 struct bio *split; in linear_make_request() local
244 split = bio_split(bio, end_sector - in linear_make_request()
247 bio_chain(split, bio); in linear_make_request()
249 split = bio; in linear_make_request()
252 split->bi_iter.bi_sector = split->bi_iter.bi_sector - in linear_make_request()
255 if (unlikely((split->bi_rw & REQ_DISCARD) && in linear_make_request()
256 !blk_queue_discard(bdev_get_queue(split->bi_bdev)))) { in linear_make_request()
258 bio_endio(split); in linear_make_request()
260 generic_make_request(split); in linear_make_request()
261 } while (split != bio); in linear_make_request()
Draid0.c459 struct bio *split; in raid0_make_request() local
479 split = bio_split(bio, sectors, GFP_NOIO, fs_bio_set); in raid0_make_request()
480 bio_chain(split, bio); in raid0_make_request()
482 split = bio; in raid0_make_request()
487 split->bi_bdev = tmp_dev->bdev; in raid0_make_request()
488 split->bi_iter.bi_sector = sector + zone->dev_start + in raid0_make_request()
491 if (unlikely((split->bi_rw & REQ_DISCARD) && in raid0_make_request()
492 !blk_queue_discard(bdev_get_queue(split->bi_bdev)))) { in raid0_make_request()
494 bio_endio(split); in raid0_make_request()
496 generic_make_request(split); in raid0_make_request()
[all …]
Draid10.c1451 struct bio *split; in make_request() local
1471 split = bio_split(bio, chunk_sects - in make_request()
1475 bio_chain(split, bio); in make_request()
1477 split = bio; in make_request()
1480 __make_request(mddev, split); in make_request()
1481 } while (split != bio); in make_request()
Draid5.c4868 struct bio *split; in chunk_aligned_read() local
4876 split = bio_split(raid_bio, sectors, GFP_NOIO, fs_bio_set); in chunk_aligned_read()
4877 bio_chain(split, raid_bio); in chunk_aligned_read()
4879 split = raid_bio; in chunk_aligned_read()
4881 if (!raid5_read_one_chunk(mddev, split)) { in chunk_aligned_read()
4882 if (split != raid_bio) in chunk_aligned_read()
4884 return split; in chunk_aligned_read()
4886 } while (split != raid_bio); in chunk_aligned_read()
/linux-4.4.14/arch/x86/oprofile/
Dop_model_ppro.c86 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.4.14/fs/btrfs/
Dfile.c535 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 …]
Dctree.c3453 struct extent_buffer *split; in split_node() local
3489 split = btrfs_alloc_tree_block(trans, root, 0, root->root_key.objectid, in split_node()
3491 if (IS_ERR(split)) in split_node()
3492 return PTR_ERR(split); in split_node()
3496 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header)); in split_node()
3497 btrfs_set_header_level(split, btrfs_header_level(c)); in split_node()
3498 btrfs_set_header_bytenr(split, split->start); in split_node()
3499 btrfs_set_header_generation(split, trans->transid); in split_node()
3500 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV); in split_node()
3501 btrfs_set_header_owner(split, root->root_key.objectid); in split_node()
[all …]
Dextent_io.h93 struct extent_state *orig, u64 split);
Dextent_io.c475 u64 split) in split_cb() argument
478 tree->ops->split_extent_hook(tree->mapping->host, orig, split); in split_cb()
496 struct extent_state *prealloc, u64 split) in split_state() argument
500 split_cb(tree, orig, split); in split_state()
503 prealloc->end = split - 1; in split_state()
505 orig->start = split; in split_state()
/linux-4.4.14/block/
Dblk-merge.c102 goto split; in blk_bio_segment_split()
115 goto split; in blk_bio_segment_split()
138 goto split; in blk_bio_segment_split()
151 split: in blk_bio_segment_split()
170 struct bio *split, *res; in blk_queue_split() local
174 split = blk_bio_discard_split(q, *bio, bs, &nsegs); in blk_queue_split()
176 split = blk_bio_write_same_split(q, *bio, bs, &nsegs); in blk_queue_split()
178 split = blk_bio_segment_split(q, *bio, q->bio_split, &nsegs); in blk_queue_split()
181 res = split ? split : *bio; in blk_queue_split()
185 if (split) { in blk_queue_split()
[all …]
Dbio.c1788 struct bio *split = NULL; in bio_split() local
1798 split = bio_clone_bioset(bio, gfp, bs); in bio_split()
1800 split = bio_clone_fast(bio, gfp, bs); in bio_split()
1802 if (!split) in bio_split()
1805 split->bi_iter.bi_size = sectors << 9; in bio_split()
1807 if (bio_integrity(split)) in bio_split()
1808 bio_integrity_trim(split, 0, sectors); in bio_split()
1810 bio_advance(bio, split->bi_iter.bi_size); in bio_split()
1812 return split; in bio_split()
/linux-4.4.14/net/sched/
Dsch_cbq.c107 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.4.14/tools/hv/
Dlsvmbus68 key = lambda c : int(c.split(':')[0]))
71 (c.split(':')[0], c.split(':')[1])
/linux-4.4.14/sound/usb/line6/
Dmidibuf.h18 int split; member
28 extern int line6_midibuf_init(struct midi_buffer *mb, int size, int split);
Dmidibuf.c57 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.4.14/arch/x86/kvm/
Dpmu_intel.c277 pmu->version = eax.split.version_id; in intel_pmu_refresh()
281 pmu->nr_arch_gp_counters = min_t(int, eax.split.num_counters, in intel_pmu_refresh()
283 pmu->counter_bitmask[KVM_PMC_GP] = ((u64)1 << eax.split.bit_width) - 1; in intel_pmu_refresh()
285 ((1ull << eax.split.mask_length) - 1); in intel_pmu_refresh()
291 min_t(int, edx.split.num_counters_fixed, in intel_pmu_refresh()
294 ((u64)1 << edx.split.bit_width_fixed) - 1; in intel_pmu_refresh()
Dcpuid.c457 eax.split.version_id = min(cap.version, 2); in __do_cpuid_ent()
458 eax.split.num_counters = cap.num_counters_gp; in __do_cpuid_ent()
459 eax.split.bit_width = cap.bit_width_gp; in __do_cpuid_ent()
460 eax.split.mask_length = cap.events_mask_len; in __do_cpuid_ent()
462 edx.split.num_counters_fixed = cap.num_counters_fixed; in __do_cpuid_ent()
463 edx.split.bit_width_fixed = cap.bit_width_fixed; in __do_cpuid_ent()
464 edx.split.reserved = 0; in __do_cpuid_ent()
/linux-4.4.14/fs/nfs/blocklayout/
Dextent_tree.c286 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.4.14/drivers/firewire/
Dnosy.c173 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.4.14/arch/x86/include/asm/
Dperf_event.h91 } split; member
104 } split; member
113 } split; member
/linux-4.4.14/scripts/
Dcheckkconfigsymbols.py122 split = opts.diff.split("..")
123 commit_a = split[0]
124 commit_b = split[1]
299 line = line.split("#")[0] # ignore comments
Dld-version.sh5 split($1,a, ".");
Dshow_delta49 (time_str, rest) = string.split(line[1:],']',1)
Dbloat-o-meter19 size, type, name = l[:-1].split()
Ddiffconfig44 name, val = line[7:].split("=", 1)
Danalyze_suspend.py136 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)
Dspelling.txt924 splitted||split
/linux-4.4.14/tools/perf/scripts/python/
Dnet_dropmonitor.py25 loc = int(line.split()[0], 16)
26 name = line.split()[2]
Dcall-graph-from-postgresql.py301 opts = dbname.split()
304 opt = opt.split('=')
/linux-4.4.14/arch/tile/
DKconfig301 prompt "Memory split" if EXPERT
304 Select the desired split between kernel and user memory.
312 tighter. Selecting anything other than the default 3G/1G split
320 bool "3.75G/0.25G user/kernel split (no kernel networking)"
322 bool "3.5G/0.5G user/kernel split"
324 bool "3G/1G user/kernel split"
326 bool "2.75G/1.25G user/kernel split (for full 1G low memory)"
328 bool "2.5G/1.5G user/kernel split"
330 bool "2.25G/1.75G user/kernel split"
332 bool "2G/2G user/kernel split"
[all …]
/linux-4.4.14/Documentation/trace/
Dfunction-graph-fold.vim29 let s = split(getline(v:foldstart), '|', 1)
33 let e = split(getline(v:foldend), '|', 1)
Dftrace-design.txt294 easier to have two separate definitions split up by #ifdefs. Same goes for
/linux-4.4.14/drivers/media/pci/ivtv/
Divtv-udma.c75 …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()
Divtv-udma.h27 …v_udma_fill_sg_array(struct ivtv_user_dma *dma, u32 buffer_offset, u32 buffer_offset_2, u32 split);
/linux-4.4.14/sound/usb/usx2y/
Dusb_stream.c561 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.4.14/Documentation/misc-devices/mei/
DTODO2 - Cleanup and split the timer function
/linux-4.4.14/arch/x86/tools/
Dchkobjdump.awk22 split(verstr, ver, ".");
Ddistill.awk24 if (split($0, field, "\t") < 3) {
Dgen-insn-attr-x86.awk291 count = split($(i++), opnds, ",")
/linux-4.4.14/scripts/gdb/linux/
Dsymbols.py111 module_addr = str(module['module_core']).split()[0]
156 self.module_paths = arg.split()
Ddmesg.py26 log_buf_addr = int(str(gdb.parse_and_eval("log_buf")).split()[0], 16)
Dmodules.py77 address=str(module['module_core']).split()[0],
Dutils.py47 return int(str(element[field].address).split()[0], 16)
/linux-4.4.14/drivers/media/dvb-frontends/
Ddib7000m.c638 …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()
Ddibx000_common.h113 } split; member
Ddib8000.c1239 …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.4.14/arch/mips/mm/
Dtlbex.c1355 u32 *split; in build_r4000_tlb_refill_handler() local
1362 split = labels[i].addr; in build_r4000_tlb_refill_handler()
1367 if (split > tlb_handler + MIPS64_REFILL_INSNS || in build_r4000_tlb_refill_handler()
1368 split < p - MIPS64_REFILL_INSNS) in build_r4000_tlb_refill_handler()
1377 split = tlb_handler + MIPS64_REFILL_INSNS - 2; in build_r4000_tlb_refill_handler()
1384 if (uasm_insn_has_bdelay(relocs, split - 1)) in build_r4000_tlb_refill_handler()
1385 split--; in build_r4000_tlb_refill_handler()
1388 uasm_copy_handler(relocs, labels, tlb_handler, split, f); in build_r4000_tlb_refill_handler()
1389 f += split - tlb_handler; in build_r4000_tlb_refill_handler()
1395 if (uasm_insn_has_bdelay(relocs, split)) in build_r4000_tlb_refill_handler()
[all …]
/linux-4.4.14/Documentation/ABI/obsolete/
Dsysfs-driver-hid-roccat-kovaplus66 press of a button. A profile is split in settings and buttons.
81 press of a button. A profile is split in settings and buttons.
93 press of a button. A profile is split in settings and buttons.
109 press of a button. A profile is split in settings and buttons.
Dsysfs-driver-hid-roccat-pyra52 press of a button. A profile is split in settings and buttons.
67 press of a button. A profile is split in settings and buttons.
79 press of a button. A profile is split in settings and buttons.
95 press of a button. A profile is split in settings and buttons.
Dsysfs-driver-hid-roccat-koneplus59 press of a button. A profile is split in settings and buttons.
74 press of a button. A profile is split in settings and buttons.
86 press of a button. A profile is split in settings and buttons.
102 press of a button. A profile is split in settings and buttons.
Dsysfs-driver-hid-roccat-savu5 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
Dsysfs-driver-hid-roccat-konepure44 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.
/linux-4.4.14/net/caif/
Dcfpkt_skbuff.c345 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.4.14/fs/ceph/
Dsnap.c837 u64 split; in ceph_handle_snap() local
854 split = le64_to_cpu(h->split); /* non-zero if we are splitting an in ceph_handle_snap()
862 ceph_snap_op_name(op), split, trace_len); in ceph_handle_snap()
890 realm = ceph_lookup_snap_realm(mdsc, split); in ceph_handle_snap()
892 realm = ceph_create_snap_realm(mdsc, split); in ceph_handle_snap()
/linux-4.4.14/drivers/staging/vt6656/
DTODO7 - split rf.c
/linux-4.4.14/drivers/staging/vt6655/
DTODO6 - split rf.c
/linux-4.4.14/tools/perf/util/
Dsetup.py21 cflags = getenv('CFLAGS', '').split()
/linux-4.4.14/Documentation/x86/x86_64/
Dfake-numa-for-cpusets17 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:
/linux-4.4.14/Documentation/networking/
Dudplite.txt161 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:
Dproc_net_tcp.txt9 TCP connections. A typical entry of /proc/net/tcp would look like this (split
Dnetconsole.txt157 the message is split into multiple fragments by netconsole. These
163 chunk, the 2nd chunk." may be split as follows.
Ds2io.txt102 max-split-transactions(MOST) and MMRBC (use setpci command).
Dtcp.txt100 zero window we split this.
Dcxgb.txt212 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
Doperstates.txt17 split into two parts: Two flags that can be set by the driver only, and
Dnetdev-features.txt113 NETIF_F_TSO_ECN means that hardware can properly split packets with CWR bit
Dphonet.txt39 The device ID is split: the 6 higher-order bits constitute the device
Dbaycom.txt5 !!NEW!! (04/98) The drivers for the baycom modems have been split into
Dl2tp.txt34 To support L2TPv3, the original pppol2tp driver was split up to
Dvortex.txt377 8K byte-wide RAM 5:3 Rx:Tx split, autoselect/Autonegotiate interface.
Dswitchdev.txt103 external configuration. For example, if a physical 40G port is split logically
Dixgb.txt384 adapters or with packet split disabled. This can be reduced or eliminated
Dtimestamping.txt197 may be split across segments, any segments may be merged (possibly
/linux-4.4.14/Documentation/scheduler/
Dsched-nice-design.txt74 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
Dsched-design-CFS.txt41 value (i.e., the task which executed least so far). CFS always tries to split
/linux-4.4.14/Documentation/DocBook/
Dtracepoint.xml.db24 API-trace-block-split
Dfilesystems.xml.db130 API-bio-split
Dnetworking.xml.db129 API-skb-split
/linux-4.4.14/arch/sh/cchips/
DKconfig27 # These will also be split into the Kconfig's below
/linux-4.4.14/net/wireless/
Dgenregdb.awk90 split(flagstr, flagarray, ",")
Dnl80211.c1256 bool split; member
1341 if (state->split) in nl80211_send_wiphy()
1386 if (state->split) in nl80211_send_wiphy()
1393 if (state->split) in nl80211_send_wiphy()
1418 if (state->split) in nl80211_send_wiphy()
1438 state->split)) in nl80211_send_wiphy()
1442 if (state->split) in nl80211_send_wiphy()
1454 if (state->split) { in nl80211_send_wiphy()
1471 if (state->split) in nl80211_send_wiphy()
1540 if (state->split) { in nl80211_send_wiphy()
[all …]
/linux-4.4.14/mm/
Dmremap.c247 int split = 0; in move_vma() local
307 split = 1; in move_vma()
332 if (split) in move_vma()
/linux-4.4.14/Documentation/arm/Samsung/
Dclksrc-change-registers.awk24 r = split(l, tp)
/linux-4.4.14/arch/cris/boot/compressed/
DREADME6 The kernel object built by the arch/etrax100/Makefile, vmlinux, is split
/linux-4.4.14/tools/perf/tests/
Dattr.py80 a_list = a.split('|')
81 b_list = b.split('|')
/linux-4.4.14/Documentation/block/
Dbiovecs.txt74 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
113 * The current interface allows the block layer to split bios as needed, so we
Ddata-integrity.txt52 The controller will interleave the buffers on write and split them on
/linux-4.4.14/drivers/staging/media/bcm2048/
DTODO20 Finally this driver should probably be split up into two parts: one
/linux-4.4.14/Documentation/spi/
Dspi-sc18is60231 similar large accesses have to be split into multiple chunks of no more than
/linux-4.4.14/drivers/net/ethernet/apm/xgene/
Dxgene_enet_main.c301 bool split = false; in xgene_enet_setup_tx_desc() local
344 for (i = 0, fidx = 0; split || (fidx < nr_frags); i++) { in xgene_enet_setup_tx_desc()
345 if (!split) { in xgene_enet_setup_tx_desc()
359 split = true; in xgene_enet_setup_tx_desc()
367 split = false; in xgene_enet_setup_tx_desc()
380 if (split || (fidx != nr_frags)) { in xgene_enet_setup_tx_desc()
398 if (split) in xgene_enet_setup_tx_desc()
/linux-4.4.14/Documentation/devicetree/bindings/sound/
Dti,tas5086.txt16 split-capacitor charge period. The hardware chip
/linux-4.4.14/drivers/net/wan/
Dsdla.c764 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.4.14/drivers/crypto/
Dmxs-dcp.c271 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.4.14/Documentation/usb/
Ddwc3.txt21 - the interrupt handler is split into the following pieces:
Dehci.txt20 high speed "split transactions" that don't waste transfer bandwidth.
60 is not yet available. Note that split transaction support for ISO
Dusbmon.txt170 not machine words, but really just a byte stream split into words to make
/linux-4.4.14/Documentation/dvb/
Dreadme.txt16 We plan to split this into separate packages, but it's not
/linux-4.4.14/tools/perf/Documentation/
DMakefile288 $(QUIET_MAKEINFO)$(MAKEINFO) --no-split -o $@ $(OUTPUT)user-manual.texi
311 $(QUIET_MAKEINFO)$(MAKEINFO) --no-split --no-validate $*.texi
/linux-4.4.14/scripts/kconfig/
Dqconf.cc1266 split = new QSplitter(this); in ConfigSearchWindow()
1267 split->setOrientation(Qt::Vertical); in ConfigSearchWindow()
1268 list = new ConfigView(split, name); in ConfigSearchWindow()
1270 info = new ConfigInfoView(split, name); in ConfigSearchWindow()
1276 layout1->addWidget(split); in ConfigSearchWindow()
1293 split->setSizes(sizes); in ConfigSearchWindow()
1307 configSettings->writeSizes("/split", split->sizes()); in saveSettings()
Dqconf.h284 QSplitter* split; variable
/linux-4.4.14/fs/ext4/
Dextents.c108 ext4_lblk_t split,
3161 ext4_lblk_t split, in ext4_split_extent_at() argument
3177 "block %llu\n", inode->i_ino, (unsigned long long)split); in ext4_split_extent_at()
3185 newblock = split - ee_block + ext4_ext_pblock(ex); in ext4_split_extent_at()
3187 BUG_ON(split < ee_block || split >= (ee_block + ee_len)); in ext4_split_extent_at()
3197 if (split == ee_block) { in ext4_split_extent_at()
3217 ex->ee_len = cpu_to_le16(split - ee_block); in ext4_split_extent_at()
3230 ex2->ee_block = cpu_to_le32(split); in ext4_split_extent_at()
3231 ex2->ee_len = cpu_to_le16(ee_len - (split - ee_block)); in ext4_split_extent_at()
5809 int split = 0; in ext4_swap_extents() local
[all …]
Dnamei.c1693 unsigned split, move, size; in do_split() local
1738 split = count - move; in do_split()
1739 hash2 = map[split].hash; in do_split()
1740 continued = hash2 == map[split - 1].hash; in do_split()
1743 hash2, split, count-split)); in do_split()
1746 de2 = dx_move_dirents(data1, data2, map + split, count - split, in do_split()
/linux-4.4.14/drivers/xen/xenbus/
Dxenbus_xs.c367 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.4.14/Documentation/devicetree/bindings/dma/
Dfsl-edma.txt4 registers. channels are split into two groups, called DMAMUX0 and DMAMUX1,
/linux-4.4.14/drivers/media/pci/saa7134/
Dsaa7134-core.c394 u32 split, task=0, ctrl=0, irq=0; in saa7134_set_dmabits() local
457 split = 0; in saa7134_set_dmabits()
471 split = 1; in saa7134_set_dmabits()
487 task, ctrl, irq, split ? "no" : "yes"); in saa7134_set_dmabits()
/linux-4.4.14/Documentation/
Ddontdiff220 split-include
Dkernel-doc-nano-HOWTO.txt169 $ 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:
Dbcache.txt187 cause the btree node to be split, and you need almost no write traffic for
358 will split, increasing the tree depth.
Dclk.txt9 Part 1 - introduction and interface split
Dparport.txt12 The parport code is split into two parts: generic (which deals with
Dassoc_array.txt499 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
Dadding-syscalls.txt282 at a 64-bit kernel from a 32-bit application will be split into two 32-bit
362 arch/x86/entry/syscalls/syscall_64.tbl is split so that x32 programs hit the
Dunshare.txt231 function. The first component was split into its own function.
Doops-tracing.txt97 i386, split into multiple lines for readability:
Dvme_api.txt96 For slave windows these attributes are split into the VME address spaces that
DCodingStyle369 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:".
Dcachetlb.txt80 split-tlb type setups).
DSubmittingPatches95 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.
/linux-4.4.14/Documentation/fb/
Dapi.txt68 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.4.14/Documentation/powerpc/
Dcpu_features.txt10 split instruction and data caches, and if the CPU supports the DOZE and NAP
Dpci_iov_resource_on_powernv.txt178 - 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
Dqe_firmware.txt70 needs split I-RAM. Split I-RAM is only meaningful for SOCs that have
Deeh-pci-error-recovery.txt51 connectivity due to a poorly seated card), and PCI-X split-completion
/linux-4.4.14/Documentation/filesystems/
Dqnx6.txt26 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.
Dnilfs2.txt242 To stride over segment boundaries, this sequence of files may be split
Dlogfs.txt31 The space in the device is split up into equal-sized segments.
Dntfs.txt87 their data attribute split across multiple extents, is included. Another
95 i.e. ones which have their data attribute split across multiple extents, is
Dsquashfs.txt173 is split into slots, caching up to eight 224 GiB files (128 KiB blocks).
/linux-4.4.14/Documentation/kbuild/
Dkconfig.txt98 KCONFIG_PROBABILITY y:n split y:m:n split
Dmodules.txt217 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.4.14/arch/powerpc/kvm/
Dbook3s_hv.c2281 int split, subcore_size, active; in kvmppc_run_core() local
2335 split = core_info.n_subcores; in kvmppc_run_core()
2337 if (split > 1) { in kvmppc_run_core()
2339 if (split == 2 && (dynamic_mt_modes & 2)) { in kvmppc_run_core()
2343 split = 4; in kvmppc_run_core()
2347 subcore_size = MAX_SMT_THREADS / split; in kvmppc_run_core()
2421 if (split > 1) in kvmppc_run_core()
2451 if (split > 1) { in kvmppc_run_core()
/linux-4.4.14/tools/perf/util/intel-pt-decoder/
Dgen-insn-attr-x86.awk291 count = split($(i++), opnds, ",")
/linux-4.4.14/arch/arm64/
DKconfig.debug81 the kernel. This prevents sections from being split into pages and
/linux-4.4.14/arch/powerpc/boot/dts/fsl/
Dbsc9132si-post.dtsi39 /* FIXME: Test whether interrupts are split */
/linux-4.4.14/drivers/staging/media/davinci_vpfe/
Ddavinci-vpfe-mc.txt30 The Davinci VPFE is split into V4L2 subdevs, each of the blocks inside the VPFE
/linux-4.4.14/Documentation/mn10300/
DABI.txt24 If 64-bit arguments are being passed, then they are never split between
/linux-4.4.14/Documentation/mmc/
Dmmc-async-req.txt60 the performance loss. A way to optimize for this is to split the current
/linux-4.4.14/Documentation/devicetree/bindings/mmc/
Dexynos-dw-mshc.txt69 The MSHC controller node can be split into two portions, SoC specific and
Dsynopsys-dw-mshc.txt91 The MSHC controller node can be split into two portions, SoC specific and
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/
Dmpc5200.txt15 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
Dfman.txt121 FMan internal memory is split into the following parts:
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-driver-wacom71 1024 byte binary is split up into 16x 64 byte chunks. Each 64
/linux-4.4.14/Documentation/mtd/nand/
Dpxa3xx-nand.txt84 Given the ECC BCH requires to layout the device's pages in a split
/linux-4.4.14/drivers/block/
Dpktcdvd.c2448 struct bio *split; in pkt_make_request() local
2491 split = bio_split(bio, last_zone - in pkt_make_request()
2494 bio_chain(split, bio); in pkt_make_request()
2496 split = bio; in pkt_make_request()
2499 pkt_make_request_write(q, split); in pkt_make_request()
2500 } while (split != bio); in pkt_make_request()
/linux-4.4.14/Documentation/arm/
Dcluster-pm-race-avoidance.txt82 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
DREADME74 continue supporting these differences, it has become necessary to split
/linux-4.4.14/drivers/mtd/ubi/
DKconfig50 flash chip admits maximum 40 bad eraseblocks, and it is split on two
/linux-4.4.14/Documentation/RCU/
Drcu.txt4 The basic idea behind RCU (read-copy update) is to split destructive
/linux-4.4.14/drivers/md/bcache/
Dbtree.c1964 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()
Drequest.c216 struct bio_set *split = op->c->bio_split; in bch_data_insert_start() local
236 n = bio_next_split(bio, KEY_SIZE(k), GFP_NOIO, split); in bch_data_insert_start()
/linux-4.4.14/Documentation/scsi/
Dhpsa.txt10 "split-brained" design of the cciss driver is a source of excess
/linux-4.4.14/include/uapi/linux/
Dpkt_sched.h463 __u32 split; member
/linux-4.4.14/arch/powerpc/sysdev/qe_lib/
Dqe.c483 if (!firmware->split) in qe_upload_firmware()
/linux-4.4.14/arch/powerpc/include/asm/
Dqe.h209 u8 split; /* 0 = shared I-RAM, 1 = split I-RAM */ member
/linux-4.4.14/Documentation/networking/caif/
DLinux-CAIF.txt112 - CFSERL CAIF Serial layer. Handles concatenation/split of frames
/linux-4.4.14/fs/xfs/
Dxfs_log.c1766 int split = 0; /* split write into two regions */ in xlog_sync() local
1814 split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp))); in xlog_sync()
1826 for (i = 0; i < split; i += BBSIZE) { in xlog_sync()
1884 if (split) { in xlog_sync()
1888 (char *)&iclog->ic_header + count, split); in xlog_sync()
/linux-4.4.14/Documentation/hwmon/
Dsubmitting-patches41 * If the added functionality requires some cleanup or structural changes, split
Dpmbus-core34 split into core, generic, and device specific code. The core code (in
Dw83781d371 PWM registers seem to be split in two parts: bit 7 is a mode selector,
/linux-4.4.14/Documentation/power/regulator/
Doverview.txt132 relevant to non SoC devices and is split into the following four interfaces:-
/linux-4.4.14/arch/x86/
DKconfig1207 split: 3GB are mapped so that each process sees a 3GB virtual memory
1247 prompt "Memory split" if EXPERT
1251 Select the desired split between kernel and user memory.
1259 tighter. Selecting anything other than the default 3G/1G split
1267 bool "3G/1G user/kernel split"
1270 bool "3G/1G user/kernel split (for full 1G low memory)"
1272 bool "2G/2G user/kernel split"
1275 bool "2G/2G user/kernel split (for full 2G low memory)"
1277 bool "1G/3G user/kernel split"
1373 Enable NUMA emulation. A flat machine will be split
[all …]
/linux-4.4.14/include/linux/ceph/
Dceph_fs.h742 __le64 split; /* ino to split off, if any */ member
/linux-4.4.14/Documentation/devicetree/bindings/memory-controllers/
Dmvebu-devbus.txt165 * We split the 16 MiB in two partitions,
/linux-4.4.14/drivers/mtd/maps/
DKconfig132 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.4.14/drivers/net/ethernet/qlogic/qede/
Dqede_main.c230 struct eth_tx_bd *split = (struct eth_tx_bd *) in qede_free_tx_pkt() local
232 split_bd_len = BD_UNMAP_LEN(split); in qede_free_tx_pkt()
277 struct eth_tx_bd *split = (struct eth_tx_bd *) in qede_free_failed_tx_pkt() local
279 split_bd_len = BD_UNMAP_LEN(split); in qede_free_failed_tx_pkt()
/linux-4.4.14/Documentation/x86/
Dkernel-stacks24 the split thread and interrupt stacks on i386, this gives more room
/linux-4.4.14/Documentation/w1/
Dw1.netlink94 exceeds this, it will be split into several messages.
/linux-4.4.14/arch/metag/
DKconfig88 Depending on the selected kernel/user memory split, minimum
/linux-4.4.14/arch/arm/
DKconfig1442 prompt "Memory split"
1446 Select the desired split between kernel and user memory.
1452 bool "3G/1G user/kernel split"
1454 bool "3G/1G user/kernel split (for full 1G low memory)"
1456 bool "2G/2G user/kernel split"
1458 bool "1G/3G user/kernel split"
1673 Depending on the selected kernel/user memory split, minimum
/linux-4.4.14/arch/frv/kernel/
Dhead.S549 # split a tile off of the region defined by GR8-GR9
/linux-4.4.14/Documentation/locking/
Dspinlocks.txt28 sequences that you _know_ need to be split up: avoid it at all cost if you
/linux-4.4.14/net/ipv6/
DKconfig102 encapsulation. The basic concept of ILA is that we split an
/linux-4.4.14/sound/isa/
Des18xx.c790 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.4.14/fs/ocfs2/
Dalloc.c2350 enum ocfs2_split_type split, in ocfs2_rotate_tree_right() argument
2427 if (split == SPLIT_NONE && in ocfs2_rotate_tree_right()
2470 if (split != SPLIT_NONE && in ocfs2_rotate_tree_right()
3803 enum ocfs2_split_type split, in ocfs2_subtract_from_rec() argument
3812 if (split == SPLIT_LEFT) { in ocfs2_subtract_from_rec()
4053 enum ocfs2_split_type split) in ocfs2_split_record() argument
4083 if (split == SPLIT_LEFT) { in ocfs2_split_record()
4123 split, rec, split_rec); in ocfs2_split_record()
Drefcounttree.c2198 struct ocfs2_refcount_rec split = *rec; in ocfs2_decrease_refcount_rec() local
2199 split.r_cpos = cpu_to_le64(cpos); in ocfs2_decrease_refcount_rec()
2200 split.r_clusters = cpu_to_le32(len); in ocfs2_decrease_refcount_rec()
2202 le32_add_cpu(&split.r_refcount, -1); in ocfs2_decrease_refcount_rec()
2206 &split, index, 1, in ocfs2_decrease_refcount_rec()
/linux-4.4.14/Documentation/metag/
Dkernel-ABI.txt246 split into separate GETL instructions:
/linux-4.4.14/Documentation/filesystems/caching/
Dcachefiles.txt409 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.4.14/arch/cris/arch-v10/
DREADME.mm155 The paging mechanism uses virtual addresses to split a process memory-space into
/linux-4.4.14/Documentation/video4linux/
Domap3isp.txt33 The OMAP 3 ISP is split into V4L2 subdevs, each of the blocks inside the ISP
/linux-4.4.14/sound/pci/
Des1938.c1696 int split = snd_es1938_mixer_read(chip, 0x64) & 0x80; in snd_es1938_interrupt() local
1700 if (!split) { in snd_es1938_interrupt()
/linux-4.4.14/Documentation/hid/
Duhid.txt38 payloads are sent. You must not split a single event across multiple read()'s or
/linux-4.4.14/arch/arc/
DKconfig453 With ARC 2G:2G address split, only upper 2G is directly addressable by
/linux-4.4.14/Documentation/virtual/uml/
DUserModeLinux-HOWTO.txt289 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.4.14/Documentation/devicetree/bindings/arm/
Didle-states.txt143 The graph is split in two parts delimited by time 1ms on the X-axis.
/linux-4.4.14/Documentation/development-process/
D5.Posting82 split apart in ways which make sense. The developers are interested in
/linux-4.4.14/arch/s390/
DKconfig436 Numa emulation mode will split the available system memory into

12