Home
last modified time | relevance | path

Searched refs:re (Results 1 – 200 of 438) sorted by relevance

123

/linux-4.1.27/scripts/
Dcheckstack.pl37 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 …]
Dcheckkconfigsymbols.py12 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 …]
Danalyze_suspend.py51 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 …]
Dbloat-o-meter10 import sys, os, re
27 name = re.sub(r'\.[0-9]+', '', name)
/linux-4.1.27/fs/btrfs/
Dreada.c116 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/
Dlibcfs_string.c263 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/
Dflattree.c319 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 …]
Dtreesource.c268 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()
Dlivetree.c305 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()
Ddata.c200 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()
Ddtc-parser.y57 struct reserve_info *re; member
79 %type <re> memreserve
80 %type <re> memreserves
Ddtc.h113 struct data data_append_re(struct data d, const struct fdt_reserve_entry *re);
224 struct fdt_reserve_entry re; member
Ddtc-parser.tab.c_shipped170 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);
Ddtc-parser.tab.h_shipped97 struct reserve_info *re;
/linux-4.1.27/Documentation/target/
Dtcm_mod_builder.py12 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/
Dcdev.c686 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 …]
Dvtbl.c125 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()
Dvmt.c599 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/
Dsha512-armv7-neon.S84 #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/
Dfdt_sw.c112 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()
Dfdt_rw.c174 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/
DKconfig.debug15 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.
DKconfig.net154 transports (possibly in addition to Multicast; they're not
181 known as SLiRP, a program that can re-socket IP packets back onto
DKconfig.um105 be 1 << order pages. The default is OK unless you're running Valgrind
/linux-4.1.27/arch/ia64/scripts/
Dunwcheck.py14 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/
Dsp_div.c27 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()
Ddp_div.c27 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()
Dsp_mul.c26 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()
Ddp_mul.c26 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/
Dpercpu.c251 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/
Docteon_mgmt.c219 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/
Dsky2.c1168 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/
DKconfig.debug31 (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.
DKconfig319 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/
DManagementStyle17 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 …]
Dcrc32.txt12 - 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
Dbcache.txt19 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
Dbasic_profiling.txt6 <test> is the thing you're trying to measure.
Dkselftest.txt62 * Do as much as you can if you're not root;
Dintel_txt.txt157 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.
Dassoc_array.txt157 (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
Dinitrd.txt108 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.
DSM501.txt26 The core re-uses the platform device system as the platform device
Dnommu-mmap.txt29 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
Defi-stub.txt74 because the image we're executing is interpreted by the EFI shell,
/linux-4.1.27/arch/s390/net/
Dbpf_jit_comp.c287 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/
Dmrvl-gpio.txt10 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/
DGraphicsMaster43 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
DGraphicsClient30 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
DItsy12 serial console (to see what you're doing). No other devices have been
/linux-4.1.27/scripts/tracing/
Ddraw_functrace.py25 import sys, re
106 m = re.match("[^]]+?\\] +([0-9.]+): (\\w+) <-(\\w+)", line)
/linux-4.1.27/Documentation/usb/
Ddma.txt36 - 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.
Drio.txt60 re-written and Pete Ikusz along with the rest will re-design it. I would
DURB.txt110 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
Dpersist.txt38 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/
Dtlb-miss.S68 # 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/
DKconfig24 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/
Ddiscontig.c625 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/
DInterrupts31 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
DPorting118 It is expected that the debugging region will be re-initialised
/linux-4.1.27/Documentation/parisc/
Ddebugging36 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/
Dcache-inv-by-tag.S151 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
Dcache-dbg-inv-by-tag.S109 # re-enable interrupts
Dcache-inv-by-reg.S135 # round the addresses out to be full cachelines, unless we're in
/linux-4.1.27/drivers/pci/
DKconfig40 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/
Dptrace_32.h72 unsigned long re; member
/linux-4.1.27/scripts/gdb/linux/
Dsymbols.py16 import re
89 if re.match(module_pattern, name) and os.path.exists(name):
/linux-4.1.27/drivers/remoteproc/
DKconfig31 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/
Dentry.S442 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/
DKconfig114 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/
Dptrace.txt9 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/
Dfw-upload.txt43 re-enable the SPU.
46 to re-enable the VPU.
Dfw-memory.txt131 19 Decoder VBI re-insertion
/linux-4.1.27/kernel/trace/
Dtrace_events_filter.c2093 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/
Dwarm-plug-howto.txt18 results may be unpredictable and lead to data loss if you're unlucky
/linux-4.1.27/drivers/atm/
Dnicstarmac.copyright11 * 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/
DKconfig14 Don't select this option unless you're a developer
/linux-4.1.27/Documentation/devicetree/bindings/mfd/
Dstmpe.txt13 - interrupt-parent : Specifies which IRQ controller we're connected to
Dtc3589x.txt18 - interrupt-parent : specifies which IRQ controller we're connected to
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/
Dmarvell,orion-pinctrl.txt51 mpp4 4 gpio, pci(req4), bootnand(re), sata0(prsnt)
76 mpp4 4 gpio, pci(req4), bootnand(re)
Dpinctrl-single.txt25 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
Dmarvell,armada-375-pinctrl.txt26 mpp10 10 gpio, dram(vttctrl), led(c1), nand(re)
/linux-4.1.27/drivers/net/usb/
DKconfig339 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/
DKconfig17 This driver is currently only useful if you're also using
/linux-4.1.27/Documentation/sysctl/
Dsunrpc.txt11 The files in this directory can be used to (re)set the debug
DREADME31 you're the last RTFMing person to screw up.
/linux-4.1.27/arch/m68k/math-emu/
Dfp_util.S139 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/
Dvirtio_input.c156 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()
DKconfig36 break. Otherwise, leave it set. Unless you're testing what
/linux-4.1.27/drivers/cpuidle/
DKconfig13 If you're using an ACPI-enabled platform, you should say Y here.
/linux-4.1.27/arch/arm/mach-u300/
DKconfig40 to test reference designs. If you're not testing SPI,
/linux-4.1.27/sound/usb/line6/
DKconfig21 re-amping)
/linux-4.1.27/Documentation/devicetree/bindings/i2c/
Di2c-mv64xxx.txt25 whenever you're using the "allwinner,sun6i-a31-i2c"
/linux-4.1.27/arch/x86/realmode/rm/
Dtrampoline_64.S113 * At this point we're in long mode but in 32bit compatibility mode
/linux-4.1.27/drivers/staging/android/ion/
DKconfig10 If you're not using Android its probably safe to
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-kernel-livepatch26 while writing 1 will re-enable the patch.
Dpstore28 device that it can reclaim the space for later re-use.
Dsysfs-class-led-flash55 Flash faults are re-read after strobing the flash. Possible
Dsysfs-bus-pci66 re-discover previously removed devices.
106 and re-discover devices removed earlier from this
115 child buses, and re-discover devices removed earlier
Dsysfs-driver-hid-wiimote75 You can write "scan\n" into this file to re-trigger calibration.
/linux-4.1.27/Documentation/networking/
Dalias.txt31 o Alias (re-)configuring
Dnf_conntrack-sysctl.txt45 re-tries to send the event to userspace.
47 This is the maximum interval the kernel should use when re-trying
Dde4x5.txt51 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
Dx25-iface.txt91 SMP re-ordering will not occur if the driver's interrupt handler is
104 automatically cause the peer to re-transmit the dropped packet
Dfore200e.txt57 3. Rebuild and re-install your kernel or your module.
Darcnet.txt3 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
DREADME.sb1000168 /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
Drxrpc.txt80 (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
Dgeneric-hdlc.txt31 Make sure you're using a correct version of sethdlc for your kernel.
/linux-4.1.27/fs/adfs/
DKconfig27 codes, so if you're unsure, say N.
/linux-4.1.27/drivers/staging/unisys/Documentation/ABI/
Dsysfs-platform-visorchipset78 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/
Doverview.txt17 machine specific code to re-route audio, enable amps, etc., after such an
53 multiple re-usable component drivers :-
DDPCM.txt17 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/
DKconfig54 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/
Dhid-multitouch.c853 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/
Dpci-error-recovery.txt41 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/
Dcs4271.txt27 a complete re-initialization of all registers.
Dfsl-asoc-card.txt44 source. There're a few pre-designed board connectors:
/linux-4.1.27/Documentation/accounting/
Dcgroupstats.txt5 Per cgroup statistics infrastructure re-uses code from the taskstats
/linux-4.1.27/arch/alpha/
DKconfig.debug20 If you're using aboot 0.7 or later, the bootloader will examine the
/linux-4.1.27/Documentation/mmc/
Dmmc-dev-parts.txt25 To re-enable read-only access:
/linux-4.1.27/Documentation/memory-devices/
Dti-emif.txt28 functions of the driver includes re-configuring AC timing
/linux-4.1.27/arch/mips/include/uapi/asm/
Dinst.h549 __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/
DKconfig35 Only use this if you're hacking DCCP.
/linux-4.1.27/Documentation/devicetree/bindings/media/
Dsamsung-s5k5baf.txt36 supports only one data lane without re-mapping.
/linux-4.1.27/Documentation/filesystems/
Ddlmfs.txt34 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 /
Dautofs4-mount-control.txt119 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,
Dubifs.txt23 re-write its contents. Blocks may be just re-written.
Dcoda.txt283 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
Doverlayfs.txt107 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/
Ddevices.txt58 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/
DSoundPro71 /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
DAudioExcelDSP1621 check off all the configuration items before re-configure it.
/linux-4.1.27/Documentation/input/
Dxpad.txt164 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 ;)
Dappletouch.txt29 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/
Dm_can.txt30 usually set to 0x0 if you're using a private Message
/linux-4.1.27/Documentation/video4linux/
Dfimc.txt27 - dynamic pipeline re-configuration at runtime (re-attachment of any FIMC
DZoran265 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/
Dilsp.doc39 By re-compiling a program that uses these instructions, and
76 re-compiled with every new 68060ILSP release.
Diskeleton.S163 | then this routine simply re-enters the package through _isp_cas.
174 | then this routine simply re-enters the package through _isp_cas2.
Dfplsp.doc40 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/
Di2c-sis96x53 scenario is found where they're needed.
/linux-4.1.27/Documentation/fb/
Dtgafb.txt63 tgafb to XF86_TGA 3.3.x, the entire screen is not re-drawn and must be manually
Dsh7760fb.txt20 a) if you're using 15/16bit color modes at >= 640x480 px resolutions,
/linux-4.1.27/Documentation/gpio/
Dsysfs.txt14 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/
DKconfig36 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/
Dget_op.S41 | 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/
Dsymbol.c998 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/
Dtsi721.txt41 1.1.0 - DMA operations re-worked to support data scatter/gather lists larger
/linux-4.1.27/Documentation/virtual/uml/
DUserModeLinux-HOWTO.txt513 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/
DKconfig69 If you're using the DesignWare Core IP with a PCIe, please say
/linux-4.1.27/drivers/net/wireless/brcm80211/brcmsmac/phy/
Dphy_lcn.c174 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/
DKconfig68 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/
Dsuspend-and-interrupts.txt27 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
Dsuspend-and-cpuhotplug.txt221 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/
Dsleep34xx.S501 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/
Dmmiotrace.txt28 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/
Dgw.c184 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/
DKconfig175 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/
Dtty.txt18 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/
DKconfig214 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/
DKconfig40 functions of the driver includes re-configuring AC timing
/linux-4.1.27/Documentation/device-mapper/
Dpersistent-data.txt16 The persistent-data library is an attempt to provide a re-usable
Dcache-policies.txt72 If you're trying to quickly warm a new cache device you may wish to
/linux-4.1.27/Documentation/scsi/
Dlpfc.txt43 re-enable the device.
/linux-4.1.27/arch/cris/arch-v10/kernel/
Dentry.S94 ;; 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/
Dentry.S230 @ (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/
Dppc-pv.txt21 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/
DREADME.buddha29 $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/
DREPORTING-BUGS97 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/
DKconfig133 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/
Dmei-client-bus.txt16 Existing device drivers can even potentially be re-used by adding an MEI CL bus layer to
/linux-4.1.27/Documentation/dmaengine/
Ddmatest.txt65 re-run with the same or different parameters. For the details see the above
/linux-4.1.27/drivers/pci/host/
DKconfig77 and therefore the driver re-uses the Designware core functions to
/linux-4.1.27/drivers/pci/hotplug/
Dibmphp_ebda.c248 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/
Dfirewire-cdev99 re- and deallocation.
/linux-4.1.27/sound/
DKconfig135 sound although they're sharing the AC97 bus. Concerned drivers
/linux-4.1.27/Documentation/networking/caif/
DREADME64 byte 02 is start of frame extension (STX) used for re-syncing
/linux-4.1.27/Documentation/acpi/
Ddebug.txt18 you're interested in. At boot-time, use the acpi.debug_layer and
/linux-4.1.27/Documentation/arm/Samsung-S3C24XX/
DSuspend.txt90 2) Whilst the pm code itself will attempt to re-enable the UART clocks,
/linux-4.1.27/Documentation/frv/
Dkernel-ABI.txt206 (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/
Dcompletion.txt74 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/
Drouter_proc.c237 lnet_route_t *re = in proc_lnet_routes() local
241 route = re; in proc_lnet_routes()
/linux-4.1.27/Documentation/vm/
Dtranshuge.txt107 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
Dunevictable-lru.txt175 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/
Dleds-class.txt5 If you're reading this and thinking about keyboard leds, these are
/linux-4.1.27/arch/arm/nwfpe/
DChangeLog26 and needs various things to be re-worked so that we won't
/linux-4.1.27/Documentation/driver-model/
Dclass.txt60 from the class and re-added, it will receive a different enumerated
Dplatform.txt94 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/
Dinterrupts.S151 @ We're all done, just restore the GPRs and go to the guest
/linux-4.1.27/arch/powerpc/platforms/
DKconfig251 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/
Ddriver-model.txt175 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/
Dmpc5125twr.dts235 // before re-enabling it
/linux-4.1.27/tools/perf/tests/
Dmake84 # FIXME 'install-*' commented out till they're fixed
/linux-4.1.27/arch/arm/mach-omap1/
Dsleep.S126 @ re-enable Icache
/linux-4.1.27/arch/m68k/
DKconfig.devices23 access to information about the machine you're running on,
/linux-4.1.27/Documentation/filesystems/nfs/
Dpnfs.txt85 to the objlayoutdriver.osd_login_prog Kernel parameter to re-enable it.
/linux-4.1.27/Documentation/locking/
Dlockstat.txt132 points are the points we're contending with.
/linux-4.1.27/lib/
DKconfig411 # 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/
Dgpc.fuc286 // save context size, and tell HUB we're done
375 // Disables various things, waits a bit, and re-enables them..

123