/linux-4.1.27/scripts/ |
D | checkstack.pl | 37 my (@stack, $re, $dre, $x, $xs, $funcre); 50 $re = qr/^.*stp.*sp,\#-([0-9]{1,8})\]\!/o; 53 $re = qr/.*sub.*sp, sp, #(([0-9]{2}|[3-9])[0-9]{2})/o; 57 $re = qr/^.*sub.*sp.*,([0-9]{1,8})/o; 62 $re = qr/^.*[as][du][db] \$(0x$x{1,8}),\%(e|r)sp$/o; 66 $re = qr/.*adds.*r12=-(([0-9]{2}|[3-9])[0-9]{2}),r12/o; 70 $re = qr/.*(?:linkw %fp,|addaw )#-([0-9]{1,4})(?:,%sp)?$/o; 73 $re = qr/.*ADD.*A0StP,A0StP,\#(0x$x{1,8})/o; 77 $re = qr/.*daddiu.*sp,sp,-(([0-9]{2}|[3-9])[0-9]{2})/o; 80 $re = qr/.*addiu.*sp,sp,-(([0-9]{2}|[3-9])[0-9]{2})/o; [all …]
|
D | checkkconfigsymbols.py | 12 import re 27 REGEX_FILE_KCONFIG = re.compile(r".*Kconfig[\.\w+\-]*$") 28 REGEX_FEATURE = re.compile(r"(" + FEATURE + r")") 29 REGEX_SOURCE_FEATURE = re.compile(SOURCE_FEATURE) 30 REGEX_KCONFIG_DEF = re.compile(DEF) 31 REGEX_KCONFIG_EXPR = re.compile(EXPR) 32 REGEX_KCONFIG_STMT = re.compile(STMT) 33 REGEX_KCONFIG_HELP = re.compile(r"^\s+(help|---help---)\s*$") 34 REGEX_FILTER_FEATURES = re.compile(r"[A-Za-z0-9]$") 70 if opts.diff and not re.match(r"^[\w\-\.]+\.\.[\w\-\.]+$", opts.diff): [all …]
|
D | analyze_suspend.py | 51 import re 123 m = re.match('(?P<name>.*)_dmesg\.txt$', self.dmesgfile) 127 m = re.match('(?P<name>.*)_ftrace\.txt$', self.ftracefile) 161 mD = re.match('^(?P<y>[0-9]*)-(?P<m>[0-9]*)-(?P<d>[0-9]*)', outD) 162 mT = re.match('^(?P<h>[0-9]*):(?P<m>[0-9]*):(?P<s>[0-9]*)', outT) 583 if(re.match('[0-9]*-[0-9]*\.[0-9]*[\.0-9]*\:[\.0-9]*$', pdev)): 632 if(d == 'traceevent' or re.match('^ *\/\* *(?P<msg>.*) \*\/ *$', m)): 638 em = re.match('^ *\/\* *(?P<msg>.*) \*\/ *$', m) 641 emm = re.match('^(?P<call>.*?): (?P<msg>.*)', msg) 653 match = re.match('^(?P<d> *)(?P<o>.*)$', m) [all …]
|
D | bloat-o-meter | 10 import sys, os, re 27 name = re.sub(r'\.[0-9]+', '', name)
|
/linux-4.1.27/fs/btrfs/ |
D | reada.c | 116 struct reada_extent *re; in __readahead_hook() local 127 re = radix_tree_lookup(&fs_info->reada_tree, index); in __readahead_hook() 128 if (re) in __readahead_hook() 129 re->refcnt++; in __readahead_hook() 132 if (!re) in __readahead_hook() 135 spin_lock(&re->lock); in __readahead_hook() 140 list_replace_init(&re->extctl, &list); in __readahead_hook() 141 for_dev = re->scheduled_for; in __readahead_hook() 142 re->scheduled_for = NULL; in __readahead_hook() 143 spin_unlock(&re->lock); in __readahead_hook() [all …]
|
/linux-4.1.27/drivers/staging/lustre/lustre/libcfs/ |
D | libcfs_string.c | 263 struct cfs_range_expr *re; in cfs_range_expr_parse() local 266 LIBCFS_ALLOC(re, sizeof(*re)); in cfs_range_expr_parse() 267 if (re == NULL) in cfs_range_expr_parse() 271 re->re_lo = min; in cfs_range_expr_parse() 272 re->re_hi = max; in cfs_range_expr_parse() 273 re->re_stride = 1; in cfs_range_expr_parse() 278 &re->re_lo, min, max)) { in cfs_range_expr_parse() 280 re->re_hi = re->re_lo; in cfs_range_expr_parse() 281 re->re_stride = 1; in cfs_range_expr_parse() 289 &re->re_lo, min, max)) in cfs_range_expr_parse() [all …]
|
/linux-4.1.27/scripts/dtc/ |
D | flattree.c | 319 struct reserve_info *re; in flatten_reserve_list() local 324 for (re = reservelist; re; re = re->next) { in flatten_reserve_list() 325 d = data_append_re(d, &re->re); in flatten_reserve_list() 468 struct reserve_info *re; in dt_to_asm() local 533 for (re = bi->reservelist; re; re = re->next) { in dt_to_asm() 536 for_each_label(re->labels, l) { in dt_to_asm() 540 ASM_EMIT_BELONG(f, "0x%08x", (unsigned int)(re->re.address >> 32)); in dt_to_asm() 542 (unsigned int)(re->re.address & 0xffffffff)); in dt_to_asm() 543 ASM_EMIT_BELONG(f, "0x%08x", (unsigned int)(re->re.size >> 32)); in dt_to_asm() 544 ASM_EMIT_BELONG(f, "0x%08x", (unsigned int)(re->re.size & 0xffffffff)); in dt_to_asm() [all …]
|
D | treesource.c | 268 struct reserve_info *re; in dt_to_source() local 272 for (re = bi->reservelist; re; re = re->next) { in dt_to_source() 275 for_each_label(re->labels, l) in dt_to_source() 278 (unsigned long long)re->re.address, in dt_to_source() 279 (unsigned long long)re->re.size); in dt_to_source()
|
D | livetree.c | 305 new->re.address = address; in build_reserve_entry() 306 new->re.size = size; in build_reserve_entry() 581 if (a->re.address < b->re.address) in cmp_reserve_info() 583 else if (a->re.address > b->re.address) in cmp_reserve_info() 585 else if (a->re.size < b->re.size) in cmp_reserve_info() 587 else if (a->re.size > b->re.size) in cmp_reserve_info()
|
D | data.c | 200 struct data data_append_re(struct data d, const struct fdt_reserve_entry *re) in data_append_re() argument 204 bere.address = cpu_to_fdt64(re->address); in data_append_re() 205 bere.size = cpu_to_fdt64(re->size); in data_append_re()
|
D | dtc-parser.y | 57 struct reserve_info *re; member 79 %type <re> memreserve 80 %type <re> memreserves
|
D | dtc.h | 113 struct data data_append_re(struct data d, const struct fdt_reserve_entry *re); 224 struct fdt_reserve_entry re; member
|
D | dtc-parser.tab.c_shipped | 170 struct reserve_info *re; 1523 the_boot_info = build_boot_info((yyvsp[(3) - (4)].re), (yyvsp[(4) - (4)].node), 1532 (yyval.re) = NULL; 1540 (yyval.re) = chain_reserve_entry((yyvsp[(1) - (2)].re), (yyvsp[(2) - (2)].re)); 1548 (yyval.re) = build_reserve_entry((yyvsp[(2) - (4)].integer), (yyvsp[(3) - (4)].integer)); 1556 add_label(&(yyvsp[(2) - (2)].re)->labels, (yyvsp[(1) - (2)].labelref)); 1557 (yyval.re) = (yyvsp[(2) - (2)].re);
|
D | dtc-parser.tab.h_shipped | 97 struct reserve_info *re;
|
/linux-4.1.27/Documentation/target/ |
D | tcm_mod_builder.py | 12 import re 456 if process_fo == 0 and re.search('struct target_core_fabric_ops {', line): 464 if not re.search('\(\*', line): 472 if not re.search('\(\*', line): 537 if re.search('get_fabric_name', fo): 545 if re.search('get_fabric_proto_ident', fo): 574 if re.search('get_wwn', fo): 584 if re.search('get_tag', fo): 593 if re.search('get_default_depth', fo): 600 if re.search('get_pr_transport_id\)\(', fo): [all …]
|
/linux-4.1.27/drivers/mtd/ubi/ |
D | cdev.c | 686 struct ubi_rename_entry *re, *re1; in rename_volumes() local 732 re = kzalloc(sizeof(struct ubi_rename_entry), GFP_KERNEL); in rename_volumes() 733 if (!re) { in rename_volumes() 738 re->desc = ubi_open_volume(ubi->ubi_num, vol_id, UBI_METAONLY); in rename_volumes() 739 if (IS_ERR(re->desc)) { in rename_volumes() 740 err = PTR_ERR(re->desc); in rename_volumes() 743 kfree(re); in rename_volumes() 748 if (re->desc->vol->name_len == name_len && in rename_volumes() 749 !memcmp(re->desc->vol->name, name, name_len)) { in rename_volumes() 750 ubi_close_volume(re->desc); in rename_volumes() [all …]
|
D | vtbl.c | 125 struct ubi_rename_entry *re; in ubi_vtbl_rename_volumes() local 128 list_for_each_entry(re, rename_list, list) { in ubi_vtbl_rename_volumes() 130 struct ubi_volume *vol = re->desc->vol; in ubi_vtbl_rename_volumes() 133 if (re->remove) { in ubi_vtbl_rename_volumes() 139 vtbl_rec->name_len = cpu_to_be16(re->new_name_len); in ubi_vtbl_rename_volumes() 140 memcpy(vtbl_rec->name, re->new_name, re->new_name_len); in ubi_vtbl_rename_volumes() 141 memset(vtbl_rec->name + re->new_name_len, 0, in ubi_vtbl_rename_volumes() 142 UBI_VOL_NAME_MAX + 1 - re->new_name_len); in ubi_vtbl_rename_volumes()
|
D | vmt.c | 599 struct ubi_rename_entry *re; in ubi_rename_volumes() local 605 list_for_each_entry(re, rename_list, list) { in ubi_rename_volumes() 606 if (re->remove) { in ubi_rename_volumes() 607 err = ubi_remove_volume(re->desc, 1); in ubi_rename_volumes() 611 struct ubi_volume *vol = re->desc->vol; in ubi_rename_volumes() 614 vol->name_len = re->new_name_len; in ubi_rename_volumes() 615 memcpy(vol->name, re->new_name, re->new_name_len + 1); in ubi_rename_volumes()
|
/linux-4.1.27/arch/arm/crypto/ |
D | sha512-armv7-neon.S | 84 #define rounds2_0_63(ra, rb, rc, rd, re, rf, rg, rh, rw0, rw1, rw01q, rw2, \ argument 87 vshr.u64 RT2, re, #14; \ 88 vshl.u64 RT3, re, #64 - 14; \ 90 vshr.u64 RT4, re, #18; \ 91 vshl.u64 RT5, re, #64 - 18; \ 94 vshr.u64 RT4, re, #41; \ 95 vshl.u64 RT5, re, #64 - 41; \ 98 vmov.64 RT7, re; \ 135 vbsl.64 RT7, re, rf; \ 195 #define rounds2_64_79(ra, rb, rc, rd, re, rf, rg, rh, rw0, rw1, \ argument [all …]
|
/linux-4.1.27/scripts/dtc/libfdt/ |
D | fdt_sw.c | 112 struct fdt_reserve_entry *re; in fdt_add_reservemap_entry() local 121 if ((offset + sizeof(*re)) > fdt_totalsize(fdt)) in fdt_add_reservemap_entry() 124 re = (struct fdt_reserve_entry *)((char *)fdt + offset); in fdt_add_reservemap_entry() 125 re->address = cpu_to_fdt64(addr); in fdt_add_reservemap_entry() 126 re->size = cpu_to_fdt64(size); in fdt_add_reservemap_entry() 128 fdt_set_off_dt_struct(fdt, offset + sizeof(*re)); in fdt_add_reservemap_entry()
|
D | fdt_rw.c | 174 struct fdt_reserve_entry *re; in fdt_add_mem_rsv() local 179 re = _fdt_mem_rsv_w(fdt, fdt_num_mem_rsv(fdt)); in fdt_add_mem_rsv() 180 err = _fdt_splice_mem_rsv(fdt, re, 0, 1); in fdt_add_mem_rsv() 184 re->address = cpu_to_fdt64(address); in fdt_add_mem_rsv() 185 re->size = cpu_to_fdt64(size); in fdt_add_mem_rsv() 191 struct fdt_reserve_entry *re = _fdt_mem_rsv_w(fdt, n); in fdt_del_mem_rsv() local 199 err = _fdt_splice_mem_rsv(fdt, re, 1, 0); in fdt_del_mem_rsv()
|
/linux-4.1.27/arch/um/ |
D | Kconfig.debug | 15 If you're involved in UML kernel development and want to use gprof, 16 say Y. If you're unsure, say N. 28 If you're involved in UML kernel development and want to use gcov, 29 say Y. If you're unsure, say N.
|
D | Kconfig.net | 154 transports (possibly in addition to Multicast; they're not 181 known as SLiRP, a program that can re-socket IP packets back onto
|
D | Kconfig.um | 105 be 1 << order pages. The default is OK unless you're running Valgrind
|
/linux-4.1.27/arch/ia64/scripts/ |
D | unwcheck.py | 14 import re 23 start_pattern = re.compile("<([^>]*)>: \[0x([0-9a-f]+)-0x([0-9a-f]+)\]") 24 rlen_pattern = re.compile(".*rlen=([0-9]+)")
|
/linux-4.1.27/arch/mips/math-emu/ |
D | sp_div.c | 27 int re; in ieee754sp_div() local 128 re = xe - ye; in ieee754sp_div() 150 re--; in ieee754sp_div() 153 return ieee754sp_format(xs == ys ? 0 : 1, re, rm); in ieee754sp_div()
|
D | dp_div.c | 27 int re; in ieee754dp_div() local 128 re = xe - ye; in ieee754dp_div() 151 re--; in ieee754dp_div() 154 return ieee754dp_format(xs == ys ? 0 : 1, re, rm); in ieee754dp_div()
|
D | sp_mul.c | 26 int re; in ieee754sp_mul() local 120 re = xe + ye; in ieee754sp_mul() 158 re++; in ieee754sp_mul() 165 return ieee754sp_format(rs, re, rm); in ieee754sp_mul()
|
D | dp_mul.c | 26 int re; in ieee754dp_mul() local 120 re = xe + ye; in ieee754dp_mul() 166 re++; in ieee754dp_mul() 173 return ieee754dp_format(rs, re, rm); in ieee754dp_mul()
|
/linux-4.1.27/mm/ |
D | percpu.c | 251 int *rs, int *re, int end) in pcpu_next_unpop() argument 254 *re = find_next_bit(chunk->populated, end, *rs + 1); in pcpu_next_unpop() 258 int *rs, int *re, int end) in pcpu_next_pop() argument 261 *re = find_next_zero_bit(chunk->populated, end, *rs + 1); in pcpu_next_pop() 270 #define pcpu_for_each_unpop_region(chunk, rs, re, start, end) \ argument 271 for ((rs) = (start), pcpu_next_unpop((chunk), &(rs), &(re), (end)); \ 272 (rs) < (re); \ 273 (rs) = (re) + 1, pcpu_next_unpop((chunk), &(rs), &(re), (end))) 275 #define pcpu_for_each_pop_region(chunk, rs, re, start, end) \ argument 276 for ((rs) = (start), pcpu_next_pop((chunk), &(rs), &(re), (end)); \ [all …]
|
/linux-4.1.27/drivers/net/ethernet/octeon/ |
D | octeon_mgmt.c | 219 union mgmt_port_ring_entry re; in octeon_mgmt_rx_fill_ring() local 231 re.d64 = 0; in octeon_mgmt_rx_fill_ring() 232 re.s.len = size; in octeon_mgmt_rx_fill_ring() 233 re.s.addr = dma_map_single(p->dev, skb->data, in octeon_mgmt_rx_fill_ring() 238 p->rx_ring[p->rx_next_fill] = re.d64; in octeon_mgmt_rx_fill_ring() 253 union mgmt_port_ring_entry re; in octeon_mgmt_clean_tx_buffers() local 273 re.d64 = p->tx_ring[p->tx_next_clean]; in octeon_mgmt_clean_tx_buffers() 287 dma_unmap_single(p->dev, re.s.addr, re.s.len, in octeon_mgmt_clean_tx_buffers() 291 if (unlikely(re.s.tstamp)) { in octeon_mgmt_clean_tx_buffers() 369 union mgmt_port_ring_entry re; in octeon_mgmt_dequeue_rx_buffer() local [all …]
|
/linux-4.1.27/drivers/net/ethernet/marvell/ |
D | sky2.c | 1168 struct rx_ring_info *re; in sky2_get_rx_data_size() local 1175 BUG_ON(sky2->rx_nfrags > ARRAY_SIZE(re->frag_addr)); in sky2_get_rx_data_size() 1209 const struct rx_ring_info *re) in sky2_rx_submit() argument 1213 sky2_rx_add(sky2, OP_PACKET, re->data_addr, sky2->rx_data_size); in sky2_rx_submit() 1215 for (i = 0; i < skb_shinfo(re->skb)->nr_frags; i++) in sky2_rx_submit() 1216 sky2_rx_add(sky2, OP_BUFFER, re->frag_addr[i], PAGE_SIZE); in sky2_rx_submit() 1220 static int sky2_rx_map_skb(struct pci_dev *pdev, struct rx_ring_info *re, in sky2_rx_map_skb() argument 1223 struct sk_buff *skb = re->skb; in sky2_rx_map_skb() 1226 re->data_addr = pci_map_single(pdev, skb->data, size, PCI_DMA_FROMDEVICE); in sky2_rx_map_skb() 1227 if (pci_dma_mapping_error(pdev, re->data_addr)) in sky2_rx_map_skb() [all …]
|
/linux-4.1.27/arch/ia64/ |
D | Kconfig.debug | 31 (CONFIG_ITANIUM_ASTEP_SPECIFIC). If you're unsure, select Y. 39 can select this option to disable the VHPT for debugging. If you're 48 from step B3 or later don't have this problem. If you're unsure, 57 problems, but slow! If you're unsure, select N.
|
D | Kconfig | 319 If you're unsure, answer N. 394 bool "Force assumption that CPEI can be re-targeted" 398 Say Y if you need to force the assumption that CPEI can be re-targeted to 400 Tiger4 systems are capable of re-directing CPEI to any CPU other than BSP. 495 a good idea to turn this on. If you're unsure, say Y. 516 If you're unsure, do not select this option. 527 for test-purposes. If you're unsure, say N.
|
/linux-4.1.27/Documentation/ |
D | ManagementStyle | 17 budget of your group, you're almost certainly not a kernel manager. 39 to decide on this", you're in trouble as a manager. The people you 41 you for a technical decision, you're screwed. You're clearly not 45 you, you're also screwed, although for a totally different reason. 51 makes you look like you know what you're doing, so what a kernel manager 72 fairly easy to backtrack. Since you're not going to be able to waste 76 incompetent nincompoop, say you're sorry, and undo all the worthless 152 "you're a d*ckhead" in millions of different ways (*), sometimes without 178 knowledge that we're better than the average person (let's face it, 179 nobody ever believes that they're average or below-average), we should [all …]
|
D | crc32.txt | 12 - We're working in binary, so the digits are only 0 and 1, and 20 CRC is written in hex with the most significant bit omitted. (If you're 26 order they're actually sent. For example, standard RS-232 serial is 40 the polynomial from the remainder and we're back to where we started, 52 But also notice how the next_input_bit() bits we're shifting into
|
D | bcache.txt | 19 writes as completed until they're on stable storage). 94 If you're booting up and your cache device is gone and never coming back, you 100 /sys/block/bcache0, because bcache0 doesn't exist yet. If you're using a 133 be reasonable for typical desktop and server workloads, but they're not what you 189 nodes are huge and index large regions of the device). But when you're 190 benchmarking, if you're trying to warm the cache by reading a bunch of data 283 versions that decay over the past day, hour and 5 minutes; they're also
|
D | basic_profiling.txt | 6 <test> is the thing you're trying to measure.
|
D | kselftest.txt | 62 * Do as much as you can if you're not root;
|
D | intel_txt.txt | 157 vector. This is necessary because it must re-establish the 166 and once the measured environment has been re-established, tboot 167 will re-calculate the MAC and verify it against the sealed value.
|
D | assoc_array.txt | 157 (3) See if this is the object we're looking for. 541 (4) Insertion replacing nodes that we're actively processing. This isn't a 547 We might, however, re-see some leaves that have been split out into a new 550 (5) Insertion replacing nodes that we're processing a dependent branch of. 566 However, when we're changing a shortcut into a node this isn't a problem
|
D | initrd.txt | 108 you're building an install floppy), the root file system creation 284 The key role of initrd here is to re-use the configuration data during 286 kernel or re-compiling or re-linking the kernel.
|
D | SM501.txt | 26 The core re-uses the platform device system as the platform device
|
D | nommu-mmap.txt | 29 These behave very much like private mappings, except that they're 41 - If one exists, the kernel will re-use an existing mapping to the 242 instance if they're in programming or erase mode, you might see the
|
D | efi-stub.txt | 74 because the image we're executing is interpreted by the EFI shell,
|
/linux-4.1.27/arch/s390/net/ |
D | bpf_jit_comp.c | 287 static void save_regs(struct bpf_jit *jit, u32 rs, u32 re) in save_regs() argument 291 if (rs == re) in save_regs() 296 _EMIT6_DISP(0xeb00f000 | rs << 20 | re << 16, 0x0024, off); in save_regs() 302 static void restore_regs(struct bpf_jit *jit, u32 rs, u32 re) in restore_regs() argument 309 if (rs == re) in restore_regs() 314 _EMIT6_DISP(0xeb00f000 | rs << 20 | re << 16, 0x0004, off); in restore_regs() 354 int re = 6, rs; in save_restore_regs() local 357 rs = get_start(jit, re); in save_restore_regs() 360 re = get_end(jit, rs + 1); in save_restore_regs() 362 save_regs(jit, rs, re); in save_restore_regs() [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/gpio/ |
D | mrvl-gpio.txt | 10 There're three gpio interrupts in arch-pxa, and they're gpio0, 11 gpio1 and gpio_mux. There're only one gpio interrupt in arch-mmp,
|
/linux-4.1.27/Documentation/arm/SA1100/ |
D | GraphicsMaster | 43 utilized for either JFFS or if you're feeling crazy, running ext2 44 on top of it. If you're not using the ADS bootloader, you're
|
D | GraphicsClient | 30 as outlined below. In any case, if you're planning on deploying 87 utilized for either JFFS or if you're feeling crazy, running ext2 88 on top of it. If you're not using the ADS bootloader, you're
|
D | Itsy | 12 serial console (to see what you're doing). No other devices have been
|
/linux-4.1.27/scripts/tracing/ |
D | draw_functrace.py | 25 import sys, re 106 m = re.match("[^]]+?\\] +([0-9.]+): (\\w+) <-(\\w+)", line)
|
/linux-4.1.27/Documentation/usb/ |
D | dma.txt | 36 - If you're doing lots of small data transfers from the same buffer all 93 - When you're using scatterlists, you can map everything at once. On some 109 - Some drivers may prefer to work with the model that they're mapping large 110 buffers, synchronizing their safe re-use. (If there's no re-use, then let 113 each time an urb completes and then re-map it on during resubmission.
|
D | rio.txt | 60 re-written and Pete Ikusz along with the rest will re-design it. I would
|
D | URB.txt | 110 Take a look at the some existing drivers to see how they're used. 143 For isochronous endpoints, your completion handlers should (re)submit 242 keeps (re)submitting a later URB, you'll get smooth ISO streaming (if usb 246 of the current frame. You might want this model if you're synchronizing
|
D | persist.txt | 38 filesystem on the device, you're out of luck -- everything in that 78 port reset and then re-enumerates the device. (This is exactly the 80 re-enumeration shows that the device now attached to that port has the
|
/linux-4.1.27/arch/frv/mm/ |
D | tlb-miss.S | 68 # we've got to re-enable single-stepping 107 # we've got to re-enable single-stepping 302 # we're using DAMR1 as an extra TLB entry 429 # we're using IAMR1/DAMR1 as an extra TLB entry 549 # we're using DAMR1 as an extra TLB entry 596 # what we're looking for is covered by the insn-PGE-cache
|
/linux-4.1.27/drivers/staging/olpc_dcon/ |
D | Kconfig | 24 have an XO-1 (or if you're unsure what model you have), you should 34 have an XO-1.5 (or if you're unsure what model you have), you
|
/linux-4.1.27/arch/ia64/mm/ |
D | discontig.c | 625 unsigned long rs, re, end = start + len; in call_pernode_memory() local 645 re = min(end, node_memblk[i].start_paddr + in call_pernode_memory() 648 if (rs < re) in call_pernode_memory() 649 (*func)(rs, re - rs, node_memblk[i].nid); in call_pernode_memory() 651 if (re == end) in call_pernode_memory()
|
/linux-4.1.27/Documentation/arm/ |
D | Interrupts | 31 exclusive of each other - if you're processing one interrupt from the 82 rerun - optional. Not required if you're using do_level_IRQ for all 83 IRQs that use this 'irqchip'. Generally expected to re-trigger 151 acknowledge the SA1110 IRQ each time you re-read the SA1111 IRQ status. 158 be re-checked for pending events. (see the Neponset IRQ handler for
|
D | Porting | 118 It is expected that the debugging region will be re-initialised
|
/linux-4.1.27/Documentation/parisc/ |
D | debugging | 36 where exactly it happened. If you're lucky the IAOQ will point to the 37 instruction that cleared the Q bit, if you're not it points anywhere
|
/linux-4.1.27/arch/mn10300/mm/ |
D | cache-inv-by-tag.S | 151 clr d2 # we're going to clear tag RAM 240 # approx every N steps we re-enable the cache and see if there are any 262 # re-enable interrupts
|
D | cache-dbg-inv-by-tag.S | 109 # re-enable interrupts
|
D | cache-inv-by-reg.S | 135 # round the addresses out to be full cachelines, unless we're in
|
/linux-4.1.27/drivers/pci/ |
D | Kconfig | 40 bool "Enable PCI resource re-allocation detection" 44 re-allocation needs to be enabled. You can always use pci=realloc=on 47 automatically re-allocate PCI resources if SR-IOV BARs have not
|
/linux-4.1.27/arch/sh/include/uapi/asm/ |
D | ptrace_32.h | 72 unsigned long re; member
|
/linux-4.1.27/scripts/gdb/linux/ |
D | symbols.py | 16 import re 89 if re.match(module_pattern, name) and os.path.exists(name):
|
/linux-4.1.27/drivers/remoteproc/ |
D | Kconfig | 31 It's safe to say n here if you're not interested in multimedia 64 It's safe to say n here if you're not interested in multimedia
|
/linux-4.1.27/arch/sparc/kernel/ |
D | entry.S | 442 wr %l0, PSR_ET, %psr ! re-enable traps 495 wr %l0, PSR_ET, %psr ! re-enable traps 510 wr %l0, PSR_ET, %psr ! re-enable traps 549 wr %l0, PSR_ET, %psr ! re-enable traps 566 wr %l0, PSR_ET, %psr ! re-enable traps 583 wr %l0, PSR_ET, %psr ! re-enable traps 600 wr %l0, PSR_ET, %psr ! re-enable traps 617 wr %l0, PSR_ET, %psr ! re-enable traps 634 wr %l0, PSR_ET, %psr ! re-enable traps 651 wr %l0, PSR_ET, %psr ! re-enable traps [all …]
|
/linux-4.1.27/drivers/input/ |
D | Kconfig | 114 If you're using a digitizer, or a graphic tablet, and want to use 117 you're not using a digitizer, this value is ignored. 124 If you're using a digitizer, or a graphic tablet, and want to use 127 you're not using a digitizer, this value is ignored.
|
/linux-4.1.27/Documentation/powerpc/ |
D | ptrace.txt | 9 resources. Since we're extending, we're trying to create an interface 22 Since we're at it, we added other useful info that the kernel can return to
|
/linux-4.1.27/Documentation/video4linux/cx2341x/ |
D | fw-upload.txt | 43 re-enable the SPU. 46 to re-enable the VPU.
|
D | fw-memory.txt | 131 19 Decoder VBI re-insertion
|
/linux-4.1.27/kernel/trace/ |
D | trace_events_filter.c | 2093 char *str, *sep, **re; in ftrace_function_filter_re() local 2106 re = argv_split(GFP_KERNEL, str, count); in ftrace_function_filter_re() 2108 return re; in ftrace_function_filter_re() 2112 int reset, char *re, int len) in ftrace_function_set_regexp() argument 2117 ret = ftrace_set_filter(ops, re, len, reset); in ftrace_function_set_regexp() 2119 ret = ftrace_set_notrace(ops, re, len, reset); in ftrace_function_set_regexp() 2129 char **re; in __ftrace_function_set_filter() local 2138 re = ftrace_function_filter_re(buf, len, &re_cnt); in __ftrace_function_set_filter() 2139 if (!re) in __ftrace_function_set_filter() 2144 re[i], strlen(re[i])); in __ftrace_function_set_filter() [all …]
|
/linux-4.1.27/Documentation/ide/ |
D | warm-plug-howto.txt | 18 results may be unpredictable and lead to data loss if you're unlucky
|
/linux-4.1.27/drivers/atm/ |
D | nicstarmac.copyright | 11 * loss of link, and correctly re-enable PHY when link is 12 * re-established. (put back CFG_PHYIE)
|
/linux-4.1.27/drivers/md/bcache/ |
D | Kconfig | 14 Don't select this option unless you're a developer
|
/linux-4.1.27/Documentation/devicetree/bindings/mfd/ |
D | stmpe.txt | 13 - interrupt-parent : Specifies which IRQ controller we're connected to
|
D | tc3589x.txt | 18 - interrupt-parent : specifies which IRQ controller we're connected to
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | marvell,orion-pinctrl.txt | 51 mpp4 4 gpio, pci(req4), bootnand(re), sata0(prsnt) 76 mpp4 4 gpio, pci(req4), bootnand(re)
|
D | pinctrl-single.txt | 25 drive strength in the pinmux register. They're value of drive strength 54 input schmitt in the pinmux register. In some silicons, there're two input 74 range. They're value of subnode phandle, pin base in pinctrl device, pin
|
D | marvell,armada-375-pinctrl.txt | 26 mpp10 10 gpio, dram(vttctrl), led(c1), nand(re)
|
/linux-4.1.27/drivers/net/usb/ |
D | Kconfig | 339 Choose this option if you're using a host-to-host cable, 349 Choose this option if you're using a host-to-host cable based 359 Choose this option if you're using a host-to-host cable 366 Choose this option if you're using a 10/100 Ethernet USB2 404 Choose this option if you're using a host-to-host cable 411 Choose this option if you're using a host-to-host cable 420 Choose this option if you're using a host-to-host cable 452 Choose this option if you're using a host-to-host cable 477 Choose this option if you're using a Conexant CX82310-based ADSL 528 Choose this option if you're using a 14Mb USB-based PLC
|
/linux-4.1.27/drivers/gpu/drm/i2c/ |
D | Kconfig | 17 This driver is currently only useful if you're also using
|
/linux-4.1.27/Documentation/sysctl/ |
D | sunrpc.txt | 11 The files in this directory can be used to (re)set the debug
|
D | README | 31 you're the last RTFMing person to screw up.
|
/linux-4.1.27/arch/m68k/math-emu/ |
D | fp_util.S | 139 add.w #0x3fff-0x7f,%d1 | re-bias the exponent. 177 add.w #0x3fff-0x3ff,%d1 | re-bias the exponent.
|
/linux-4.1.27/drivers/virtio/ |
D | virtio_input.c | 156 u32 mi, ma, re, fu, fl; in virtinput_cfg_abs() local 161 virtio_cread(vi->vdev, struct virtio_input_config, u.abs.res, &re); in virtinput_cfg_abs() 165 input_abs_set_res(vi->idev, abs, re); in virtinput_cfg_abs()
|
D | Kconfig | 36 break. Otherwise, leave it set. Unless you're testing what
|
/linux-4.1.27/drivers/cpuidle/ |
D | Kconfig | 13 If you're using an ACPI-enabled platform, you should say Y here.
|
/linux-4.1.27/arch/arm/mach-u300/ |
D | Kconfig | 40 to test reference designs. If you're not testing SPI,
|
/linux-4.1.27/sound/usb/line6/ |
D | Kconfig | 21 re-amping)
|
/linux-4.1.27/Documentation/devicetree/bindings/i2c/ |
D | i2c-mv64xxx.txt | 25 whenever you're using the "allwinner,sun6i-a31-i2c"
|
/linux-4.1.27/arch/x86/realmode/rm/ |
D | trampoline_64.S | 113 * At this point we're in long mode but in 32bit compatibility mode
|
/linux-4.1.27/drivers/staging/android/ion/ |
D | Kconfig | 10 If you're not using Android its probably safe to
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-kernel-livepatch | 26 while writing 1 will re-enable the patch.
|
D | pstore | 28 device that it can reclaim the space for later re-use.
|
D | sysfs-class-led-flash | 55 Flash faults are re-read after strobing the flash. Possible
|
D | sysfs-bus-pci | 66 re-discover previously removed devices. 106 and re-discover devices removed earlier from this 115 child buses, and re-discover devices removed earlier
|
D | sysfs-driver-hid-wiimote | 75 You can write "scan\n" into this file to re-trigger calibration.
|
/linux-4.1.27/Documentation/networking/ |
D | alias.txt | 31 o Alias (re-)configuring
|
D | nf_conntrack-sysctl.txt | 45 re-tries to send the event to userspace. 47 This is the maximum interval the kernel should use when re-trying
|
D | de4x5.txt | 51 kernel. Do make sure you're not sharing interrupts with anything that 60 line 5594 to reflect the I/O address you're using, or assign these when 174 Yes, I know full duplex isn't permissible on BNC or AUI; they're just
|
D | x25-iface.txt | 91 SMP re-ordering will not occur if the driver's interrupt handler is 104 automatically cause the peer to re-transmit the dropped packet
|
D | fore200e.txt | 57 3. Rebuild and re-install your kernel or your module.
|
D | arcnet.txt | 3 and cabling information if you're like many of us and didn't happen to get a 36 include the type of card(s) you're using, software, size of network, and 75 when we're talking about ALPHA Linux kernels that may or may not work right 194 If you're using a loadable module, you need to use insmod to load it, and 245 NFS: Should be fine linux->linux, just pretend you're using Ethernet cards. 260 DOS: If you're using the freeware arcether.com, you might want to install 286 you're completely insane, and/or you need to build some kind of
|
D | README.sb1000 | 168 /var/messages, and/or /var/syslog files, and they're filling up my /var 171 Solution -- First, tell your ISP that you're receiving DoS (Denial of Service) 175 to the "cmconfig" command (uncomment that line). If you're not receiving these
|
D | rxrpc.txt | 80 (2) provided with a protocol of the type of underlying transport they're going 152 been received but may yet be discarded and re-requested. The sender may 499 .srx_service = 0, /* we're a client */ 933 unconsumed received packets we're willing to hold in memory for any 938 The maximum packet MTU size that we're willing to receive in bytes. This 939 indicates to the peer whether we're willing to accept jumbo packets. 943 The maximum number of packets that we're willing to accept in a jumbo
|
D | generic-hdlc.txt | 31 Make sure you're using a correct version of sethdlc for your kernel.
|
/linux-4.1.27/fs/adfs/ |
D | Kconfig | 27 codes, so if you're unsure, say N.
|
/linux-4.1.27/drivers/staging/unisys/Documentation/ABI/ |
D | sysfs-platform-visorchipset | 78 another message is sent to the guests to re-enable the VFs. 97 another message is sent to the guests to re-enable the VFs.
|
/linux-4.1.27/Documentation/sound/alsa/soc/ |
D | overview.txt | 17 machine specific code to re-route audio, enable amps, etc., after such an 53 multiple re-usable component drivers :-
|
D | DPCM.txt | 17 DPCM re-uses all the existing component codec, platform and DAI drivers without 227 callback is used by the machine driver to (re)configure the DAI based upon the
|
/linux-4.1.27/drivers/usb/gadget/ |
D | Kconfig | 54 Avoid enabling these messages, even if you're actively 57 either create new failure modes or remove the one you're 68 Avoid enabling these messages, even if you're actively 71 either create new failure modes or remove the one you're 82 files may help when you're troubleshooting or bringing up a 92 The information in these files may help when you're
|
/linux-4.1.27/drivers/hid/ |
D | hid-multitouch.c | 853 struct hid_report_enum *re; in mt_set_input_mode() local 861 re = &(hdev->report_enum[HID_FEATURE_REPORT]); in mt_set_input_mode() 862 r = re->report_id_hash[td->inputmode]; in mt_set_input_mode() 885 struct hid_report_enum *re; in mt_set_maxcontacts() local 894 re = &hdev->report_enum[HID_FEATURE_REPORT]; in mt_set_maxcontacts() 895 r = re->report_id_hash[td->maxcontact_report_id]; in mt_set_maxcontacts()
|
/linux-4.1.27/Documentation/PCI/ |
D | pci-error-recovery.txt | 41 of reset it desires, the choices being a simple re-enabling of I/O 46 After a reset and/or a re-enabling of I/O, all drivers are 154 then the platform should re-enable IOs on the slot (or do nothing in 183 The platform re-enables MMIO to the device (but typically not the 193 link reset was performed by the HW. If the platform can't just re-enable IOs 202 >>> such an error might cause IOs to be re-blocked for the whole 291 This call gives drivers the chance to re-initialize the hardware 292 (re-download firmware, etc.). At this point, the driver may assume
|
/linux-4.1.27/Documentation/devicetree/bindings/sound/ |
D | cs4271.txt | 27 a complete re-initialization of all registers.
|
D | fsl-asoc-card.txt | 44 source. There're a few pre-designed board connectors:
|
/linux-4.1.27/Documentation/accounting/ |
D | cgroupstats.txt | 5 Per cgroup statistics infrastructure re-uses code from the taskstats
|
/linux-4.1.27/arch/alpha/ |
D | Kconfig.debug | 20 If you're using aboot 0.7 or later, the bootloader will examine the
|
/linux-4.1.27/Documentation/mmc/ |
D | mmc-dev-parts.txt | 25 To re-enable read-only access:
|
/linux-4.1.27/Documentation/memory-devices/ |
D | ti-emif.txt | 28 functions of the driver includes re-configuring AC timing
|
/linux-4.1.27/arch/mips/include/uapi/asm/ |
D | inst.h | 549 __BITFIELD_FIELD(unsigned int re : 5, 559 __BITFIELD_FIELD(unsigned int re : 5, 570 __BITFIELD_FIELD(unsigned int re : 5,
|
/linux-4.1.27/net/dccp/ |
D | Kconfig | 35 Only use this if you're hacking DCCP.
|
/linux-4.1.27/Documentation/devicetree/bindings/media/ |
D | samsung-s5k5baf.txt | 36 supports only one data lane without re-mapping.
|
/linux-4.1.27/Documentation/filesystems/ |
D | dlmfs.txt | 34 If you're just interested in OCFS2, then please see ocfs2.txt. The 56 Once you're heartbeating, DLM lock 'domains' can be easily created /
|
D | autofs4-mount-control.txt | 119 implement an isolated operation it was decided to re-implement the 129 Since we're re-implementing the control interface, a couple of other 134 ENOENT so the re-implementation allows user space to send an actual 331 re-connect to mounts that may have used the original process uid and 379 If supplied with a file descriptor we're looking for a specific mount,
|
D | ubifs.txt | 23 re-write its contents. Blocks may be just re-written.
|
D | coda.txt | 283 memory for the request. Since the data buffer is re-used to hold the 420 …44..11.. DDaattaa ssttrruuccttuurreess sshhaarreedd bbyy tthhee kke… 730 44..88.. ccrreeaattee 892 44..1122.. rreemmoovvee 950 44..1144.. rreeaaddlliinnkk 1098 44..1188.. rreennaammee 1128 44..1199.. rreeaaddddiirr 1162 files. We will re-evaluate this during the directory revamp which is 1375 44..2277.. pprreeffeettcchh 1628 66..11.. RReeqquuiirreemmeennttss
|
D | overlayfs.txt | 107 exist are not re-added). This merged name list is cached in the 122 - re-open the directory some time later
|
/linux-4.1.27/Documentation/cgroups/ |
D | devices.txt | 58 re-evaluated. In case one of the locally set whitelist entries would provide 115 For every propagated exception, the effective rules will be re-evaluated based
|
/linux-4.1.27/Documentation/sound/oss/ |
D | SoundPro | 71 /proc/ioports and /proc/interrupts can be useful to see if you're 79 Lastly, if you're using modules and want to set up automatic module
|
D | AudioExcelDSP16 | 21 check off all the configuration items before re-configure it.
|
/linux-4.1.27/Documentation/input/ |
D | xpad.txt | 164 If you're using a normal controller, there should be a single line showing 166 the sticks and push the buttons. If you're using a dance pad, it should 169 It works? Voila, you're done ;)
|
D | appletouch.txt | 29 emulation, etc. In order to do this, make sure you're using a recent version of
|
/linux-4.1.27/Documentation/devicetree/bindings/net/can/ |
D | m_can.txt | 30 usually set to 0x0 if you're using a private Message
|
/linux-4.1.27/Documentation/video4linux/ |
D | fimc.txt | 27 - dynamic pipeline re-configuration at runtime (re-attachment of any FIMC
|
D | Zoran | 265 some systems, since you're trying to load modules as a user, which is not 312 the LML33 works, the DC10+/DC30+ will work too. They're most tolerant to 407 becomes 811008 bits; 101376 bytes per field. We're talking raw bits and bytes 484 you're using the latest version (http://mjpeg.sf.net/driver-zoran/).
|
/linux-4.1.27/arch/m68k/ifpsp060/ |
D | ilsp.doc | 39 By re-compiling a program that uses these instructions, and 76 re-compiled with every new 68060ILSP release.
|
D | iskeleton.S | 163 | then this routine simply re-enters the package through _isp_cas. 174 | then this routine simply re-enters the package through _isp_cas2.
|
D | fplsp.doc | 40 By re-compiling a program that uses these instructions, and 77 re-compiled with every new 68060FPLSP release.
|
/linux-4.1.27/Documentation/i2c/busses/ |
D | i2c-sis96x | 53 scenario is found where they're needed.
|
/linux-4.1.27/Documentation/fb/ |
D | tgafb.txt | 63 tgafb to XF86_TGA 3.3.x, the entire screen is not re-drawn and must be manually
|
D | sh7760fb.txt | 20 a) if you're using 15/16bit color modes at >= 640x480 px resolutions,
|
/linux-4.1.27/Documentation/gpio/ |
D | sysfs.txt | 14 then changing its output state, then updating the code before re-enabling 83 file and read the new value or close the file and re-open it
|
/linux-4.1.27/sound/core/ |
D | Kconfig | 36 unless you know what you're doing. 195 You don't need this unless you're debugging ALSA.
|
/linux-4.1.27/arch/m68k/fpsp040/ |
D | get_op.S | 41 | the '040. The '040 then re-executes the fadd.x fpm,fpn with 616 | ;re-execute the inst. without taking
|
/linux-4.1.27/scripts/kconfig/ |
D | symbol.c | 998 regex_t re; in sym_re_search() local 1005 if (regcomp(&re, pattern, REG_EXTENDED|REG_ICASE)) in sym_re_search() 1011 if (regexec(&re, sym->name, 1, match, 0)) in sym_re_search() 1041 regfree(&re); in sym_re_search()
|
/linux-4.1.27/Documentation/rapidio/ |
D | tsi721.txt | 41 1.1.0 - DMA operations re-worked to support data scatter/gather lists larger
|
/linux-4.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 513 When you're done using it, run halt, and the kernel will bring itself 780 initial boot output will appear in the terminal that you're running 987 Once you've decided how you're going to set up the devices, you boot 1207 do this first. If you're concerned about the security implications of 1445 o Bring the eth device up in UML and you're in business. 1504 communicate with the outside world. If you're not sure you know what 1505 you're doing, this is the way to go. 1511 setuid root if you're not running UML as root. This is because the 1516 If you're using the uml_net helper, you can ignore the following host 1609 preconfigured tap device", above). If you're using a different tap [all …]
|
/linux-4.1.27/drivers/usb/dwc3/ |
D | Kconfig | 69 If you're using the DesignWare Core IP with a PCIe, please say
|
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmsmac/phy/ |
D | phy_lcn.c | 174 s16 re; member 179 u16 re; member 3556 cc.re = 0; in wlc_lcnphy_get_cc() 3561 cc.re = a; in wlc_lcnphy_get_cc() 3568 cc.re = (u16) di0; in wlc_lcnphy_get_cc() 3573 cc.re = (u16) ei; in wlc_lcnphy_get_cc() 3578 cc.re = (u16) fi; in wlc_lcnphy_get_cc() 3735 phy_c15 = (s16) phy_c3.re; in wlc_lcnphy_a1() 3738 if (phy_c3.re > 127) in wlc_lcnphy_a1() 3739 phy_c15 = phy_c3.re - 256; in wlc_lcnphy_a1() [all …]
|
/linux-4.1.27/sound/pci/hda/ |
D | Kconfig | 68 Say Y here to enable the HD-audio codec re-configuration feature. 71 and re-configure the codec dynamically.
|
/linux-4.1.27/Documentation/power/ |
D | suspend-and-interrupts.txt | 27 Device IRQs are re-enabled during system resume, right before the "early" phase 81 re-enabled by resume_device_irqs() during the subsequent system resume. Also
|
D | suspend-and-cpuhotplug.txt | 221 Hence, in such a case, it is not really necessary to re-apply microcode 239 CPUs, it just applies them to the CPUs, avoiding any re-discovery of CPU
|
/linux-4.1.27/arch/arm/mach-omap2/ |
D | sleep34xx.S | 501 cmp r1, #0x1 @ Test if L2 re-enable needed on 3630 504 orr r1, r1, #2 @ re-enable L2 cache
|
/linux-4.1.27/Documentation/trace/ |
D | mmiotrace.txt | 28 activation. You can re-enable CPUs by hand, but you have been warned, there 162 - replaying MMIO logs, i.e., re-executing the recorded writes
|
/linux-4.1.27/net/can/ |
D | gw.c | 184 static int cgw_chk_csum_parms(s8 fr, s8 to, s8 re) in cgw_chk_csum_parms() argument 197 re > -9 && re < 8) in cgw_chk_csum_parms()
|
/linux-4.1.27/drivers/media/rc/ |
D | Kconfig | 175 If you're not sure, select N here 356 If you're not sure, select N here. 379 If you're not sure, select N here.
|
/linux-4.1.27/Documentation/serial/ |
D | tty.txt | 18 called. Do not re-use ldisc numbers as they are part of the userspace ABI 21 copy of the structure. You must not re-register over the top of the line 216 is currently attached or the ldisc is being closed and re-opened at this
|
/linux-4.1.27/drivers/mtd/ |
D | Kconfig | 214 hardware, although under the terms of the GPL you're obviously 231 hardware, although under the terms of the GPL you're obviously 256 hardware, although under the terms of the GPL you're obviously
|
/linux-4.1.27/drivers/memory/ |
D | Kconfig | 40 functions of the driver includes re-configuring AC timing
|
/linux-4.1.27/Documentation/device-mapper/ |
D | persistent-data.txt | 16 The persistent-data library is an attempt to provide a re-usable
|
D | cache-policies.txt | 72 If you're trying to quickly warm a new cache device you may wish to
|
/linux-4.1.27/Documentation/scsi/ |
D | lpfc.txt | 43 re-enable the device.
|
/linux-4.1.27/arch/cris/arch-v10/kernel/ |
D | entry.S | 94 ;; check for resched if preemptive kernel or if we're going back to user-mode 284 ;; now re-enter the syscall code to do the syscall itself 505 ;; since *not* doing that saves us from re-entrancy checks. We don't want
|
/linux-4.1.27/arch/unicore32/kernel/ |
D | entry.S | 230 @ (re-entrant version of handlers) 257 @ get ready to re-enable interrupts if appropriate 327 @ re-enable interrupts if appropriate
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | ppc-pv.txt | 21 To find out if we're running on KVM or not, we leverage the device tree. When 25 Once you determined you're running under a PV capable KVM, you can now use
|
/linux-4.1.27/Documentation/m68k/ |
D | README.buddha | 29 $48, while it doesn't matter how often you're writing to $4a 116 If you're using the mirrored registers of the IDE-ports with
|
/linux-4.1.27/ |
D | REPORTING-BUGS | 97 information they're really interested in. If some information is not 140 recompiling your kernel, and/or re-triggering your bug. The most
|
/linux-4.1.27/drivers/mtd/devices/ |
D | Kconfig | 133 This is a re-implementation of the slram driver above. 151 provide storage. You probably want to say 'N' unless you're
|
/linux-4.1.27/Documentation/misc-devices/mei/ |
D | mei-client-bus.txt | 16 Existing device drivers can even potentially be re-used by adding an MEI CL bus layer to
|
/linux-4.1.27/Documentation/dmaengine/ |
D | dmatest.txt | 65 re-run with the same or different parameters. For the details see the above
|
/linux-4.1.27/drivers/pci/host/ |
D | Kconfig | 77 and therefore the driver re-uses the Designware core functions to
|
/linux-4.1.27/drivers/pci/hotplug/ |
D | ibmphp_ebda.c | 248 u16 ebda_seg, num_entries, next_offset, offset, blk_id, sub_addr, re, rc_id, re_id, base; in ibmphp_access_ebda() local 309 re = readw (io_mem + sub_addr); /* next sub blk */ in ibmphp_access_ebda() 334 sub_addr = base + re; /* re sub blk */ in ibmphp_access_ebda()
|
/linux-4.1.27/Documentation/ABI/stable/ |
D | firewire-cdev | 99 re- and deallocation.
|
/linux-4.1.27/sound/ |
D | Kconfig | 135 sound although they're sharing the AC97 bus. Concerned drivers
|
/linux-4.1.27/Documentation/networking/caif/ |
D | README | 64 byte 02 is start of frame extension (STX) used for re-syncing
|
/linux-4.1.27/Documentation/acpi/ |
D | debug.txt | 18 you're interested in. At boot-time, use the acpi.debug_layer and
|
/linux-4.1.27/Documentation/arm/Samsung-S3C24XX/ |
D | Suspend.txt | 90 2) Whilst the pm code itself will attempt to re-enable the UART clocks,
|
/linux-4.1.27/Documentation/frv/ |
D | kernel-ABI.txt | 206 (4) If interrupts were then re-enabled (local_irq_enable): 212 physically disabled - which they're not, so the trap isn't taken. The
|
/linux-4.1.27/Documentation/scheduler/ |
D | completion.txt | 74 The re-initialization function, reinit_completion(), simply resets the 77 most likely a bug as it re-initializes the queue to an empty queue and
|
/linux-4.1.27/drivers/staging/lustre/lnet/lnet/ |
D | router_proc.c | 237 lnet_route_t *re = in proc_lnet_routes() local 241 route = re; in proc_lnet_routes()
|
/linux-4.1.27/Documentation/vm/ |
D | transhuge.txt | 107 hugepages in case they're not immediately free to madvise regions or 277 In case you can't handle compound pages if they're returned by 313 If you're not walking pagetables but you run into a physical hugepage 344 mm->page_table_lock and re-run pmd_trans_huge. Taking the
|
D | unevictable-lru.txt | 175 Note that SHM_LOCK is not required to page in the locked pages if they're 177 ensure they're in memory. 330 migrated out from under us, while we're trying to mlock it. To detect this, 495 munlock the pages if we're removing the last VM_LOCKED VMA that maps the pages. 578 this happens to unmap the page we're trying to unmap, try_to_unmap() will 591 Then, for each page in the cluster, if we're holding the mmap semaphore
|
/linux-4.1.27/Documentation/leds/ |
D | leds-class.txt | 5 If you're reading this and thinking about keyboard leds, these are
|
/linux-4.1.27/arch/arm/nwfpe/ |
D | ChangeLog | 26 and needs various things to be re-worked so that we won't
|
/linux-4.1.27/Documentation/driver-model/ |
D | class.txt | 60 from the class and re-added, it will receive a different enumerated
|
D | platform.txt | 94 which are normally kept off until they're actively needed (to save power). 115 This style of driver is discouraged. If you're updating such a driver,
|
/linux-4.1.27/arch/arm/kvm/ |
D | interrupts.S | 151 @ We're all done, just restore the GPRs and go to the guest
|
/linux-4.1.27/arch/powerpc/platforms/ |
D | Kconfig | 251 a timer is used to re-check the temperature periodically. 291 Say Y here if you're going to use hardware that connects to the
|
/linux-4.1.27/Documentation/s390/ |
D | driver-model.txt | 175 removed and re-registered. 243 the chpid connects to. This can be used to force the kernel to re-use
|
/linux-4.1.27/arch/powerpc/boot/dts/ |
D | mpc5125twr.dts | 235 // before re-enabling it
|
/linux-4.1.27/tools/perf/tests/ |
D | make | 84 # FIXME 'install-*' commented out till they're fixed
|
/linux-4.1.27/arch/arm/mach-omap1/ |
D | sleep.S | 126 @ re-enable Icache
|
/linux-4.1.27/arch/m68k/ |
D | Kconfig.devices | 23 access to information about the machine you're running on,
|
/linux-4.1.27/Documentation/filesystems/nfs/ |
D | pnfs.txt | 85 to the objlayoutdriver.osd_login_prog Kernel parameter to re-enable it.
|
/linux-4.1.27/Documentation/locking/ |
D | lockstat.txt | 132 points are the points we're contending with.
|
/linux-4.1.27/lib/ |
D | Kconfig | 411 # when required. Since we're ignoring out-of-tree users, there's also 436 module load) by a small amount, so you're welcome to play with
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/gr/fuc/ |
D | gpc.fuc | 286 // save context size, and tell HUB we're done 375 // Disables various things, waits a bit, and re-enables them..
|