Home
last modified time | relevance | path

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

123

/linux-4.4.14/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
28 REGEX_FILE_KCONFIG = re.compile(r".*Kconfig[\.\w+\-]*$")
29 REGEX_FEATURE = re.compile(r'(?!\B"[^"]*)' + FEATURE + r'(?![^"]*"\B)')
30 REGEX_SOURCE_FEATURE = re.compile(SOURCE_FEATURE)
31 REGEX_KCONFIG_DEF = re.compile(DEF)
32 REGEX_KCONFIG_EXPR = re.compile(EXPR)
33 REGEX_KCONFIG_STMT = re.compile(STMT)
34 REGEX_KCONFIG_HELP = re.compile(r"^\s+(help|---help---)\s*$")
35 REGEX_FILTER_FEATURES = re.compile(r"[A-Za-z0-9]$")
36 REGEX_NUMERIC = re.compile(r"0[xX][0-9a-fA-F]+|[0-9]+")
[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.4.14/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.4.14/drivers/staging/lustre/lustre/libcfs/
Dlibcfs_string.c265 struct cfs_range_expr *re; in cfs_range_expr_parse() local
268 LIBCFS_ALLOC(re, sizeof(*re)); in cfs_range_expr_parse()
269 if (re == NULL) in cfs_range_expr_parse()
273 re->re_lo = min; in cfs_range_expr_parse()
274 re->re_hi = max; in cfs_range_expr_parse()
275 re->re_stride = 1; in cfs_range_expr_parse()
280 &re->re_lo, min, max)) { in cfs_range_expr_parse()
282 re->re_hi = re->re_lo; in cfs_range_expr_parse()
283 re->re_stride = 1; in cfs_range_expr_parse()
291 &re->re_lo, min, max)) in cfs_range_expr_parse()
[all …]
/linux-4.4.14/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()
583 if (a->re.address < b->re.address) in cmp_reserve_info()
585 else if (a->re.address > b->re.address) in cmp_reserve_info()
587 else if (a->re.size < b->re.size) in cmp_reserve_info()
589 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.y53 struct reserve_info *re; member
74 %type <re> memreserve
75 %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.h_shipped93 struct reserve_info *re;
Ddtc-parser.tab.c_shipped163 struct reserve_info *re;
1468 the_boot_info = build_boot_info((yyvsp[-1].re), (yyvsp[0].node),
1477 (yyval.re) = NULL;
1485 (yyval.re) = chain_reserve_entry((yyvsp[-1].re), (yyvsp[0].re));
1493 (yyval.re) = build_reserve_entry((yyvsp[-2].integer), (yyvsp[-1].integer));
1501 add_label(&(yyvsp[0].re)->labels, (yyvsp[-1].labelref));
1502 (yyval.re) = (yyvsp[0].re);
/linux-4.4.14/Documentation/target/
Dtcm_mod_builder.py12 import re
352 if process_fo == 0 and re.search('struct target_core_fabric_ops {', line):
360 if not re.search('\(\*', line):
368 if not re.search('\(\*', line):
429 if re.search('get_fabric_name', fo):
437 if re.search('get_wwn', fo):
447 if re.search('get_tag', fo):
456 if re.search('tpg_get_inst_index\)\(', fo):
463 if re.search('\*release_cmd\)\(', fo):
470 if re.search('shutdown_session\)\(', fo):
[all …]
/linux-4.4.14/arch/mips/math-emu/
Ddp_msubf.c20 int re; in ieee754dp_msubf() local
155 re = xe + ye; in ieee754dp_msubf()
201 re++; in ieee754dp_msubf()
220 if (ze > re) { in ieee754dp_msubf()
224 s = ze - re; in ieee754dp_msubf()
226 re += s; in ieee754dp_msubf()
227 } else if (re > ze) { in ieee754dp_msubf()
231 s = re - ze; in ieee754dp_msubf()
235 assert(ze == re); in ieee754dp_msubf()
Ddp_maddf.c20 int re; in ieee754dp_maddf() local
155 re = xe + ye; in ieee754dp_maddf()
201 re++; in ieee754dp_maddf()
216 if (ze > re) { in ieee754dp_maddf()
220 s = ze - re; in ieee754dp_maddf()
222 re += s; in ieee754dp_maddf()
223 } else if (re > ze) { in ieee754dp_maddf()
227 s = re - ze; in ieee754dp_maddf()
231 assert(ze == re); in ieee754dp_maddf()
Dsp_maddf.c20 int re; in ieee754sp_maddf() local
155 re = xe + ye; in ieee754sp_maddf()
193 re++; in ieee754sp_maddf()
209 if (ze > re) { in ieee754sp_maddf()
213 s = ze - re; in ieee754sp_maddf()
215 } else if (re > ze) { in ieee754sp_maddf()
219 s = re - ze; in ieee754sp_maddf()
222 assert(ze == re); in ieee754sp_maddf()
Dsp_msubf.c20 int re; in ieee754sp_msubf() local
155 re = xe + ye; in ieee754sp_msubf()
193 re++; in ieee754sp_msubf()
212 if (ze > re) { in ieee754sp_msubf()
216 s = ze - re; in ieee754sp_msubf()
218 } else if (re > ze) { in ieee754sp_msubf()
222 s = re - ze; in ieee754sp_msubf()
225 assert(ze == re); in ieee754sp_msubf()
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_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()
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.4.14/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.c137 struct ubi_rename_entry *re; in ubi_vtbl_rename_volumes() local
139 list_for_each_entry(re, rename_list, list) { in ubi_vtbl_rename_volumes()
141 struct ubi_volume *vol = re->desc->vol; in ubi_vtbl_rename_volumes()
144 if (re->remove) { in ubi_vtbl_rename_volumes()
150 vtbl_rec->name_len = cpu_to_be16(re->new_name_len); in ubi_vtbl_rename_volumes()
151 memcpy(vtbl_rec->name, re->new_name, re->new_name_len); in ubi_vtbl_rename_volumes()
152 memset(vtbl_rec->name + re->new_name_len, 0, in ubi_vtbl_rename_volumes()
153 UBI_VOL_NAME_MAX + 1 - re->new_name_len); in ubi_vtbl_rename_volumes()
Dvmt.c551 struct ubi_rename_entry *re; in ubi_rename_volumes() local
557 list_for_each_entry(re, rename_list, list) { in ubi_rename_volumes()
558 if (re->remove) { in ubi_rename_volumes()
559 err = ubi_remove_volume(re->desc, 1); in ubi_rename_volumes()
563 struct ubi_volume *vol = re->desc->vol; in ubi_rename_volumes()
566 vol->name_len = re->new_name_len; in ubi_rename_volumes()
567 memcpy(vol->name, re->new_name, re->new_name_len + 1); in ubi_rename_volumes()
/linux-4.4.14/drivers/staging/lustre/lnet/lnet/
Dnidstrings.c473 struct cfs_range_expr *re; in cfs_ip_ar_min_max() local
480 list_for_each_entry(re, &el->el_exprs, re_link) { in cfs_ip_ar_min_max()
481 min_ip[re_count] = re->re_lo; in cfs_ip_ar_min_max()
482 max_ip[re_count] = re->re_hi; in cfs_ip_ar_min_max()
512 struct cfs_range_expr *re; in cfs_num_ar_min_max() local
517 list_for_each_entry(re, &el->el_exprs, re_link) { in cfs_num_ar_min_max()
518 if (re->re_lo < min_addr || min_addr == 0) in cfs_num_ar_min_max()
519 min_addr = re->re_lo; in cfs_num_ar_min_max()
520 if (re->re_hi > max_addr) in cfs_num_ar_min_max()
521 max_addr = re->re_hi; in cfs_num_ar_min_max()
[all …]
Drouter_proc.c222 lnet_route_t *re = in proc_lnet_routes() local
226 route = re; in proc_lnet_routes()
/linux-4.4.14/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.um91 be 1 << order pages. The default is OK unless you're running Valgrind
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
/linux-4.4.14/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.4.14/scripts/dtc/libfdt/
Dfdt_sw.c144 struct fdt_reserve_entry *re; in fdt_add_reservemap_entry() local
153 if ((offset + sizeof(*re)) > fdt_totalsize(fdt)) in fdt_add_reservemap_entry()
156 re = (struct fdt_reserve_entry *)((char *)fdt + offset); in fdt_add_reservemap_entry()
157 re->address = cpu_to_fdt64(addr); in fdt_add_reservemap_entry()
158 re->size = cpu_to_fdt64(size); in fdt_add_reservemap_entry()
160 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.4.14/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.4.14/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.4.14/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.4.14/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.
DKconfig296 If you're unsure, answer N.
371 bool "Force assumption that CPEI can be re-targeted"
375 Say Y if you need to force the assumption that CPEI can be re-targeted to
377 Tiger4 systems are capable of re-directing CPEI to any CPU other than BSP.
472 a good idea to turn this on. If you're unsure, say Y.
493 If you're unsure, do not select this option.
504 for test-purposes. If you're unsure, say N.
/linux-4.4.14/tools/perf/scripts/python/
Dcompaction-times.py9 import re
29 def __init__(self, re): argument
30 self.re = re
33 m = self.re.search(comm)
272 pid_re = re.compile(pid_regex)
305 comm_re=re.compile(opt)
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
Dnv50.c160 const struct nvkm_enum *en, *re, *cl, *sc; in nv50_fb_intr() local
193 re = nvkm_enum_find(vm_fault , st1); in nv50_fb_intr()
209 st1, re ? re->name : ""); in nv50_fb_intr()
/linux-4.4.14/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.txt78 * 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,
Dadding-syscalls.txt29 - If you're just exposing runtime system information, a new node in sysfs
112 the exec'ed program. (However, resist the temptation to re-use the actual value
283 values, which then need to be re-assembled in the compatibility layer.
369 If no pointers are involved, then it is preferable to re-use the 64-bit system
515 - Numbering oddities arising from (re-)use of O_* numbering space flags:
/linux-4.4.14/arch/s390/net/
Dbpf_jit_comp.c303 static void save_regs(struct bpf_jit *jit, u32 rs, u32 re) in save_regs() argument
307 if (rs == re) in save_regs()
312 _EMIT6_DISP(0xeb00f000 | rs << 20 | re << 16, 0x0024, off); in save_regs()
318 static void restore_regs(struct bpf_jit *jit, u32 rs, u32 re) in restore_regs() argument
325 if (rs == re) in restore_regs()
330 _EMIT6_DISP(0xeb00f000 | rs << 20 | re << 16, 0x0004, off); in restore_regs()
370 int re = 6, rs; in save_restore_regs() local
373 rs = get_start(jit, re); in save_restore_regs()
376 re = get_end(jit, rs + 1); in save_restore_regs()
378 save_regs(jit, rs, re); in save_restore_regs()
[all …]
/linux-4.4.14/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.4.14/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.4.14/scripts/tracing/
Ddraw_functrace.py25 import sys, re
106 m = re.match("[^]]+?\\] +([0-9.]+): (\\w+) <-(\\w+)", line)
/linux-4.4.14/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.4.14/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.4.14/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.4.14/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.4.14/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
/linux-4.4.14/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.4.14/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.4.14/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.4.14/arch/sh/include/uapi/asm/
Dptrace_32.h72 unsigned long re; member
/linux-4.4.14/scripts/gdb/linux/
Dsymbols.py16 import re
88 if re.match(module_pattern, name) and os.path.exists(name):
/linux-4.4.14/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.4.14/Documentation/video4linux/cx2341x/
Dfw-upload.txt43 re-enable the SPU.
46 to re-enable the VPU.
/linux-4.4.14/drivers/remoteproc/
DKconfig31 It's safe to say n here if you're not interested in multimedia
77 It's safe to say n here if you're not interested in multimedia
/linux-4.4.14/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.4.14/Documentation/ide/
Dwarm-plug-howto.txt18 results may be unpredictable and lead to data loss if you're unlucky
/linux-4.4.14/drivers/input/
DKconfig127 If you're using a digitizer, or a graphic tablet, and want to use
130 you're not using a digitizer, this value is ignored.
137 If you're using a digitizer, or a graphic tablet, and want to use
140 you're not using a digitizer, this value is ignored.
/linux-4.4.14/drivers/atm/
Dnicstarmac.copyright11 * loss of link, and correctly re-enable PHY when link is
12 * re-established. (put back CFG_PHYIE)
/linux-4.4.14/kernel/trace/
Dtrace_events_filter.c2144 char *str, **re; in ftrace_function_filter_re() local
2156 re = argv_split(GFP_KERNEL, str, count); in ftrace_function_filter_re()
2158 return re; in ftrace_function_filter_re()
2162 int reset, char *re, int len) in ftrace_function_set_regexp() argument
2167 ret = ftrace_set_filter(ops, re, len, reset); in ftrace_function_set_regexp()
2169 ret = ftrace_set_notrace(ops, re, len, reset); in ftrace_function_set_regexp()
2179 char **re; in __ftrace_function_set_filter() local
2188 re = ftrace_function_filter_re(buf, len, &re_cnt); in __ftrace_function_set_filter()
2189 if (!re) in __ftrace_function_set_filter()
2194 re[i], strlen(re[i])); in __ftrace_function_set_filter()
[all …]
/linux-4.4.14/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.4.14/drivers/md/bcache/
DKconfig14 Don't select this option unless you're a developer
/linux-4.4.14/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.4.14/drivers/net/usb/
DKconfig352 Choose this option if you're using a host-to-host cable,
362 Choose this option if you're using a host-to-host cable based
372 Choose this option if you're using a host-to-host cable
379 Choose this option if you're using a 10/100 Ethernet USB2
417 Choose this option if you're using a host-to-host cable
424 Choose this option if you're using a host-to-host cable
433 Choose this option if you're using a host-to-host cable
465 Choose this option if you're using a host-to-host cable
490 Choose this option if you're using a Conexant CX82310-based ADSL
541 Choose this option if you're using a 14Mb USB-based PLC
/linux-4.4.14/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.4.14/drivers/gpu/drm/i2c/
DKconfig17 This driver is currently only useful if you're also using
/linux-4.4.14/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.4.14/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.4.14/Documentation/devicetree/bindings/i2c/
Di2c-mv64xxx.txt25 whenever you're using the "allwinner,sun6i-a31-i2c"
/linux-4.4.14/sound/usb/line6/
DKconfig21 re-amping)
/linux-4.4.14/arch/arm/mach-u300/
DKconfig40 to test reference designs. If you're not testing SPI,
/linux-4.4.14/drivers/cpuidle/
DKconfig13 If you're using an ACPI-enabled platform, you should say Y here.
/linux-4.4.14/arch/x86/realmode/rm/
Dtrampoline_64.S113 * At this point we're in long mode but in 32bit compatibility mode
/linux-4.4.14/drivers/staging/android/ion/
DKconfig10 If you're not using Android its probably safe to
/linux-4.4.14/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.4.14/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
/linux-4.4.14/fs/adfs/
DKconfig27 codes, so if you're unsure, say N.
/linux-4.4.14/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 :-
/linux-4.4.14/drivers/hid/
Dhid-multitouch.c907 struct hid_report_enum *re; in mt_set_input_mode() local
915 re = &(hdev->report_enum[HID_FEATURE_REPORT]); in mt_set_input_mode()
916 r = re->report_id_hash[td->inputmode]; in mt_set_input_mode()
939 struct hid_report_enum *re; in mt_set_maxcontacts() local
948 re = &hdev->report_enum[HID_FEATURE_REPORT]; in mt_set_maxcontacts()
949 r = re->report_id_hash[td->maxcontact_report_id]; in mt_set_maxcontacts()
/linux-4.4.14/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.4.14/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.4.14/Documentation/accounting/
Dcgroupstats.txt5 Per cgroup statistics infrastructure re-uses code from the taskstats
/linux-4.4.14/Documentation/devicetree/bindings/sound/
Dcs4271.txt27 a complete re-initialization of all registers.
Dfsl-asoc-card.txt46 source. There're a few pre-designed board connectors:
/linux-4.4.14/drivers/hwspinlock/
DKconfig42 It's safe to say n here if you're not interested in SIRF hardware
/linux-4.4.14/Documentation/mmc/
Dmmc-dev-parts.txt25 To re-enable read-only access:
/linux-4.4.14/arch/alpha/
DKconfig.debug20 If you're using aboot 0.7 or later, the bootloader will examine the
/linux-4.4.14/drivers/staging/unisys/Documentation/ABI/
Dsysfs-platform-visorchipset80 another message is sent to the guests to re-enable the VFs.
99 another message is sent to the guests to re-enable the VFs.
/linux-4.4.14/arch/arm/mm/
Dpv-fixup-asm.S83 mcr p15, 0, r8, c1, c0, 0 @ re-enable MMU
/linux-4.4.14/Documentation/memory-devices/
Dti-emif.txt28 functions of the driver includes re-configuring AC timing
/linux-4.4.14/arch/mips/include/uapi/asm/
Dinst.h572 __BITFIELD_FIELD(unsigned int re : 5,
582 __BITFIELD_FIELD(unsigned int re : 5,
593 __BITFIELD_FIELD(unsigned int re : 5,
/linux-4.4.14/net/dccp/
DKconfig35 Only use this if you're hacking DCCP.
/linux-4.4.14/Documentation/devicetree/bindings/media/
Dsamsung-s5k5baf.txt36 supports only one data lane without re-mapping.
/linux-4.4.14/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.4.14/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.txt108 exist are not re-added). This merged name list is cached in the
123 - re-open the directory some time later
/linux-4.4.14/arch/arm/kernel/
Dentry-common.S38 ldr r1, [tsk, #TI_FLAGS] @ re-check for syscall tracing
64 ldr r1, [tsk, #TI_FLAGS] @ re-check for syscall tracing
/linux-4.4.14/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.4.14/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
Duserio.txt55 Sets the type of port we're emulating, where "data" is the port type being
/linux-4.4.14/Documentation/devicetree/bindings/net/can/
Dm_can.txt30 usually set to 0x0 if you're using a private Message
/linux-4.4.14/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.4.14/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.4.14/Documentation/gpio/
Dsysfs.txt14 then changing its output state, then updating the code before re-enabling
82 file and read the new value or close the file and re-open it
/linux-4.4.14/arch/arc/kernel/
Dentry-compact.S177 ; But both L1 and L2 re-enabled, so another L1 can be taken
381 ; decrement thread_info->preempt_count (re-enable preemption)
/linux-4.4.14/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.4.14/Documentation/i2c/busses/
Di2c-sis96x53 scenario is found where they're needed.
/linux-4.4.14/arch/powerpc/platforms/
DKconfig.cputype402 want to do that if we're building a 32-bit kernel. If we're building
403 a 64-bit kernel then we only want a 32-bit VDSO if we're building for
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.4.14/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.4.14/scripts/kconfig/
Dsymbol.c997 regex_t re; in sym_re_search() local
1004 if (regcomp(&re, pattern, REG_EXTENDED|REG_ICASE)) in sym_re_search()
1010 if (regexec(&re, sym->name, 1, match, 0)) in sym_re_search()
1040 regfree(&re); in sym_re_search()
/linux-4.4.14/Documentation/rapidio/
Dtsi721.txt41 1.1.0 - DMA operations re-worked to support data scatter/gather lists larger
/linux-4.4.14/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.4.14/drivers/usb/dwc3/
DKconfig76 If you're using the DesignWare Core IP with a PCIe, please say
/linux-4.4.14/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.4.14/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.4.14/sound/pci/hda/
DKconfig52 Say Y here to enable the HD-audio codec re-configuration feature.
55 and re-configure the codec dynamically.
/linux-4.4.14/sound/core/
DKconfig42 unless you know what you're doing.
221 You don't need this unless you're debugging ALSA.
/linux-4.4.14/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.4.14/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.4.14/net/can/
Dgw.c185 static int cgw_chk_csum_parms(s8 fr, s8 to, s8 re) in cgw_chk_csum_parms() argument
198 re > -9 && re < 8) in cgw_chk_csum_parms()
/linux-4.4.14/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.4.14/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.4.14/Documentation/leds/
Dleds-class-flash.txt72 unavailable. The interface is re-enabled after the V4L2 flash sub-device
/linux-4.4.14/Documentation/scsi/
Dlpfc.txt43 re-enable the device.
/linux-4.4.14/Documentation/device-mapper/
Dpersistent-data.txt16 The persistent-data library is an attempt to provide a re-usable
/linux-4.4.14/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.4.14/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.4.14/Documentation/serial/
Dtty.txt15 called. Do not re-use ldisc numbers as they are part of the userspace ABI
18 copy of the structure. You must not re-register over the top of the line
231 is currently attached or the ldisc is being closed and re-opened at this
/linux-4.4.14/drivers/iommu/
Dintel-iommu.c202 static phys_addr_t root_entry_lctp(struct root_entry *re) in root_entry_lctp() argument
204 if (!(re->lo & 1)) in root_entry_lctp()
207 return re->lo & VTD_PAGE_MASK; in root_entry_lctp()
214 static phys_addr_t root_entry_uctp(struct root_entry *re) in root_entry_uctp() argument
216 if (!(re->hi & 1)) in root_entry_uctp()
219 return re->hi & VTD_PAGE_MASK; in root_entry_uctp()
2897 struct root_entry re; in copy_context_table() local
2901 memcpy(&re, old_re, sizeof(re)); in copy_context_table()
2921 old_ce_phys = root_entry_lctp(&re); in copy_context_table()
2923 old_ce_phys = root_entry_uctp(&re); in copy_context_table()
/linux-4.4.14/
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.4.14/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.4.14/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.4.14/arch/arc/boot/dts/
Daxs10x_mb.dtsi73 * we may reuse it saying that we're compatible with their
/linux-4.4.14/Documentation/dmaengine/
Ddmatest.txt65 re-run with the same or different parameters. For the details see the above
/linux-4.4.14/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.4.14/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.4.14/Documentation/arm/Samsung-S3C24XX/
DSuspend.txt90 2) Whilst the pm code itself will attempt to re-enable the UART clocks,
/linux-4.4.14/Documentation/networking/caif/
DREADME64 byte 02 is start of frame extension (STX) used for re-syncing
/linux-4.4.14/Documentation/ABI/stable/
Dfirewire-cdev99 re- and deallocation.
/linux-4.4.14/Documentation/acpi/
Ddebug.txt18 you're interested in. At boot-time, use the acpi.debug_layer and
/linux-4.4.14/drivers/memory/
DKconfig48 functions of the driver includes re-configuring AC timing
/linux-4.4.14/sound/
DKconfig135 sound although they're sharing the AC97 bus. Concerned drivers
/linux-4.4.14/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.4.14/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.4.14/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.4.14/Documentation/vm/
Dtranshuge.txt107 hugepages in case they're not immediately free to madvise regions or
287 In case you can't handle compound pages if they're returned by
323 If you're not walking pagetables but you run into a physical hugepage
354 mm->page_table_lock and re-run pmd_trans_huge. Taking the
/linux-4.4.14/Documentation/driver-model/
Dclass.txt60 from the class and re-added, it will receive a different enumerated
Dplatform.txt108 which are normally kept off until they're actively needed (to save power).
129 This style of driver is discouraged. If you're updating such a driver,
/linux-4.4.14/arch/arm/nwfpe/
DChangeLog26 and needs various things to be re-worked so that we won't
/linux-4.4.14/arch/arm/kvm/
Dinterrupts.S151 @ We're all done, just restore the GPRs and go to the guest
/linux-4.4.14/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

123