Searched refs:upper (Results 1 - 200 of 1434) sorted by relevance

12345678

/linux-4.4.14/arch/x86/include/asm/
H A Ddiv64.h48 u32 upper; div_u64_rem() local
50 upper = d.v32[1]; div_u64_rem()
52 if (upper >= divisor) { div_u64_rem()
53 d.v32[1] = upper / divisor; div_u64_rem()
54 upper %= divisor; div_u64_rem()
57 "rm" (divisor), "0" (d.v32[0]), "1" (upper)); div_u64_rem()
H A Dmpx.h17 * The upper 28 bits [47:20] of the virtual address in 64-bit
/linux-4.4.14/arch/cris/boot/dts/include/dt-bindings/thermal/
H A Dthermal.h13 /* On cooling devices upper and lower limits */
/linux-4.4.14/include/dt-bindings/thermal/
H A Dthermal.h13 /* On cooling devices upper and lower limits */
/linux-4.4.14/arch/metag/boot/dts/include/dt-bindings/thermal/
H A Dthermal.h13 /* On cooling devices upper and lower limits */
/linux-4.4.14/arch/mips/boot/dts/include/dt-bindings/thermal/
H A Dthermal.h13 /* On cooling devices upper and lower limits */
/linux-4.4.14/arch/powerpc/boot/dts/include/dt-bindings/thermal/
H A Dthermal.h13 /* On cooling devices upper and lower limits */
/linux-4.4.14/arch/arm64/boot/dts/include/dt-bindings/thermal/
H A Dthermal.h13 /* On cooling devices upper and lower limits */
/linux-4.4.14/arch/arm/boot/dts/include/dt-bindings/thermal/
H A Dthermal.h13 /* On cooling devices upper and lower limits */
/linux-4.4.14/arch/parisc/kernel/
H A Dsignal32.c72 sure to clear the upper 32-bits */ restore_sigcontext32()
79 /* Load upper half */ restore_sigcontext32()
93 /* Load upper half */ restore_sigcontext32()
96 DBG(2,"restore_sigcontext32: upper half of iaoq[0] = %#lx\n", compat_regt); restore_sigcontext32()
101 /* Load upper half */ restore_sigcontext32()
104 DBG(2,"restore_sigcontext32: upper half of iaoq[1] = %#lx\n", compat_regt); restore_sigcontext32()
111 /* Load the upper half for iasq */ restore_sigcontext32()
114 DBG(2,"restore_sigcontext32: upper half of iasq[0] = %#lx\n", compat_regt); restore_sigcontext32()
117 /* Load the upper half for iasq */ restore_sigcontext32()
120 DBG(2,"restore_sigcontext32: upper half of iasq[1] = %#lx\n", compat_regt); restore_sigcontext32()
125 /* Load the upper half for sar */ restore_sigcontext32()
166 /* Store upper half */ setup_sigcontext32()
169 DBG(2,"setup_sigcontext32: upper half iaoq[0] = %#x\n", compat_reg); setup_sigcontext32()
176 /* Store upper half */ setup_sigcontext32()
179 DBG(2,"setup_sigcontext32: upper half iaoq[1] = %#x\n", compat_reg); setup_sigcontext32()
186 /* Store upper half */ setup_sigcontext32()
191 DBG(2,"setup_sigcontext32: upper half iasq[0] = %#x\n", compat_reg); setup_sigcontext32()
192 DBG(2,"setup_sigcontext32: upper half iasq[1] = %#x\n", compat_reg); setup_sigcontext32()
202 /* Store upper half */ setup_sigcontext32()
205 DBG(2,"setup_sigcontext32: upper half iaoq[0] = %#x\n", compat_reg); setup_sigcontext32()
211 /* Store upper half */ setup_sigcontext32()
214 DBG(2,"setup_sigcontext32: upper half iaoq[1] = %#x\n", compat_reg); setup_sigcontext32()
221 /* Store upper half */ setup_sigcontext32()
224 DBG(2,"setup_sigcontext32: upper half iasq[0] = %#x\n", compat_reg); setup_sigcontext32()
231 /* Store upper half */ setup_sigcontext32()
234 DBG(2,"setup_sigcontext32: upper half iasq[1] = %#x\n", compat_reg); setup_sigcontext32()
249 /* Store upper half */ setup_sigcontext32()
253 /* DEBUG: Write out the "upper / lower" register data */ setup_sigcontext32()
268 /* Store upper half */ setup_sigcontext32()
271 DBG(2,"setup_sigcontext32: upper half sar = %#x\n", compat_reg); setup_sigcontext32()
/linux-4.4.14/include/asm-generic/
H A Dirq.h5 * NR_IRQS is the upper bound of how many interrupts can be handled
/linux-4.4.14/include/uapi/linux/netfilter_bridge/
H A Debt_limit.h16 __u32 burst; /* Period multiplier for upper limit. */
/linux-4.4.14/fs/overlayfs/
H A Ddir.c220 struct dentry *upper; ovl_clear_empty() local
240 upper = upperpath.dentry; ovl_clear_empty()
241 if (upper->d_parent->d_inode != udir) ovl_clear_empty()
253 err = ovl_copy_xattr(upper, opaquedir); ovl_clear_empty()
267 err = ovl_do_rename(wdir, opaquedir, udir, upper, RENAME_EXCHANGE); ovl_clear_empty()
271 ovl_cleanup_whiteouts(upper, list); ovl_clear_empty()
272 ovl_cleanup(wdir, upper); ovl_clear_empty()
275 /* dentry's upper doesn't match now, get rid of it */ ovl_clear_empty()
324 struct dentry *upper; ovl_create_over_whiteout() local
340 upper = lookup_one_len(dentry->d_name.name, upperdir, ovl_create_over_whiteout()
342 err = PTR_ERR(upper); ovl_create_over_whiteout()
343 if (IS_ERR(upper)) ovl_create_over_whiteout()
355 err = ovl_do_rename(wdir, newdentry, udir, upper, ovl_create_over_whiteout()
360 ovl_cleanup(wdir, upper); ovl_create_over_whiteout()
362 err = ovl_do_rename(wdir, newdentry, udir, upper, 0); ovl_create_over_whiteout()
372 dput(upper); ovl_create_over_whiteout()
485 struct dentry *upper; ovl_link() local
495 upper = ovl_dentry_upper(old); ovl_link()
496 err = ovl_create_or_link(new, upper->d_inode->i_mode, 0, NULL, upper); ovl_link()
511 struct dentry *upper; ovl_remove_and_whiteout() local
548 upper = ovl_dentry_upper(dentry); ovl_remove_and_whiteout()
549 if (!upper) { ovl_remove_and_whiteout()
550 upper = lookup_one_len(dentry->d_name.name, upperdir, ovl_remove_and_whiteout()
552 err = PTR_ERR(upper); ovl_remove_and_whiteout()
553 if (IS_ERR(upper)) ovl_remove_and_whiteout()
556 err = ovl_do_rename(wdir, whiteout, udir, upper, 0); ovl_remove_and_whiteout()
557 dput(upper); ovl_remove_and_whiteout()
564 upper = opaquedir; ovl_remove_and_whiteout()
566 if (upper->d_parent != upperdir) ovl_remove_and_whiteout()
572 err = ovl_do_rename(wdir, whiteout, udir, upper, flags); ovl_remove_and_whiteout()
577 ovl_cleanup(wdir, upper); ovl_remove_and_whiteout()
599 struct dentry *upper = ovl_dentry_upper(dentry); ovl_remove_upper() local
604 if (upper->d_parent == upperdir) { ovl_remove_upper()
606 dget(upper); ovl_remove_upper()
608 err = vfs_rmdir(dir, upper); ovl_remove_upper()
610 err = vfs_unlink(dir, upper, NULL); ovl_remove_upper()
611 dput(upper); ovl_remove_upper()
910 * access to them is lockless. This could be only pure upper ovl_rename2()
911 * or opaque directory - numlower is zero. Or upper non-dir ovl_rename2()
H A Dcopy_up.c214 struct dentry *upper = NULL; ovl_copy_up_locked() local
223 upper = lookup_one_len(dentry->d_name.name, upperdir, ovl_copy_up_locked()
225 err = PTR_ERR(upper); ovl_copy_up_locked()
226 if (IS_ERR(upper)) ovl_copy_up_locked()
257 err = ovl_do_rename(wdir, newdentry, udir, upper, 0); ovl_copy_up_locked()
270 dput(upper); ovl_copy_up_locked()
284 * Directory renames only allowed on "pure upper" (already created on
285 * upper filesystem, never copied up). Directories which are on lower or
292 * up uses upper parent i_mutex for exclusion. Since rename can change
H A Dreaddir.c305 * Insert lowest layer entries before upper ones, this ovl_dir_read_merged()
556 void ovl_cleanup_whiteouts(struct dentry *upper, struct list_head *list) ovl_cleanup_whiteouts() argument
560 mutex_lock_nested(&upper->d_inode->i_mutex, I_MUTEX_CHILD); list_for_each_entry()
567 dentry = lookup_one_len(p->name, upper, p->len); list_for_each_entry()
570 upper->d_name.name, p->len, p->name, list_for_each_entry()
575 ovl_cleanup(upper->d_inode, dentry); list_for_each_entry()
578 mutex_unlock(&upper->d_inode->i_mutex);
H A Dinode.c47 * since it will be rechecked later by ->setattr() on upper dentry. But ovl_setattr()
125 * Writes will always be redirected to upper layer, so ovl_permission()
133 * If upper fs becomes read-only after the overlay was ovl_permission()
135 * upper layer. ovl_permission()
/linux-4.4.14/arch/mips/include/asm/
H A Dmaar.h36 * @upper: The highest address that the MAAR pair will affect. Must be
45 phys_addr_t upper, unsigned attrs) write_maar_pair()
49 BUG_ON(((upper & 0xffff) != 0xffff) write_maar_pair()
50 || ((upper & ~0xffffull) & ~(MIPS_MAAR_ADDR << 4))); write_maar_pair()
55 /* Write the upper address & attributes (only MIPS_MAAR_V matters) */ write_maar_pair()
58 write_c0_maar(((upper >> 4) & MIPS_MAAR_ADDR) | attrs); write_maar_pair()
81 * @upper: The highest address that the MAAR pair will affect. Must be
88 * addresses from lower to upper inclusive.
92 phys_addr_t upper; member in struct:maar_config
113 write_maar_pair(i, cfg[i].lower, cfg[i].upper, cfg[i].attrs); maar_config()
44 write_maar_pair(unsigned idx, phys_addr_t lower, phys_addr_t upper, unsigned attrs) write_maar_pair() argument
/linux-4.4.14/arch/x86/kernel/
H A Dprobe_roms.c200 unsigned long start, length, upper; probe_roms() local
205 upper = adapter_rom_resources[0].start; probe_roms()
206 for (start = video_rom_resource.start; start < upper; start += 2048) { probe_roms()
228 if (start < upper) probe_roms()
229 start = upper; probe_roms()
233 upper = system_rom_resource.start; probe_roms()
241 upper = extension_rom_resource.start; probe_roms()
246 for (i = 0; i < ARRAY_SIZE(adapter_rom_resources) && start < upper; start += 2048) { probe_roms()
258 if (!length || start + length > upper || !romchecksum(rom, length)) probe_roms()
H A Dio_delay.c34 * 2 usecs is an upper-bound for the outb delay but native_io_delay()
/linux-4.4.14/arch/arm/kernel/
H A Dmodule.c71 u32 upper, lower, sign, j1, j2; apply_relocate() local
198 upper = __mem_to_opcode_thumb16(*(u16 *)loc); apply_relocate()
206 * S = upper[10] = offset[24] apply_relocate()
209 * imm10 = upper[9:0] = offset[21:12] apply_relocate()
214 sign = (upper >> 10) & 1; apply_relocate()
219 ((upper & 0x03ff) << 12) | apply_relocate()
248 upper = (u16)((upper & 0xf800) | (sign << 10) | apply_relocate()
254 *(u16 *)loc = __opcode_to_mem_thumb16(upper); apply_relocate()
260 upper = __mem_to_opcode_thumb16(*(u16 *)loc); apply_relocate()
266 * i = upper[10] apply_relocate()
267 * imm4 = upper[3:0] apply_relocate()
273 offset = ((upper & 0x000f) << 12) | apply_relocate()
274 ((upper & 0x0400) << 1) | apply_relocate()
282 upper = (u16)((upper & 0xfbf0) | apply_relocate()
288 *(u16 *)loc = __opcode_to_mem_thumb16(upper); apply_relocate()
H A Dxscale-cp0.c117 * whether the upper word survived intact.
/linux-4.4.14/include/media/
H A Dov772x.h28 unsigned char upper; member in struct:ov772x_edge_ctrl
40 .upper = (u & OV772X_EDGE_UPPER_MASK), \
H A Dsh_mobile_ceu.h8 #define SH_CEU_FLAG_LOWER_8BIT (1 << 4) /* default upper 8bit */
/linux-4.4.14/tools/testing/selftests/powerpc/pmu/ebb/
H A Dreg.h31 #define SPRN_BESCRSU 801 /* Branch event status & control set upper */
33 #define SPRN_BESCRRU 803 /* Branch event status & control REset upper */
H A Debb.c75 u64 count, upper, lower; ebb_check_count() local
87 upper = ebb_state.stats.ebb_count * (sample_period + fudge); ebb_check_count()
89 if (count > upper) { ebb_check_count()
90 printf("PMC%d count (0x%llx) above upper limit 0x%llx (+0x%llx)\n", ebb_check_count()
91 pmc, count, upper, count - upper); ebb_check_count()
96 pmc, count, lower, upper, count - lower, upper - count); ebb_check_count()
/linux-4.4.14/include/uapi/linux/netfilter/
H A Dxt_limit.h15 __u32 burst; /* Period multiplier for upper limit. */
H A Dxt_hashlimit.h30 __u32 burst; /* Period multiplier for upper limit. */
54 __u32 burst; /* Period multiplier for upper limit. */
/linux-4.4.14/arch/m68k/include/uapi/asm/
H A Dbootinfo-atari.h18 * mch_cookie values (upper word of BI_ATARI_MCH_COOKIE)
/linux-4.4.14/arch/xtensa/include/uapi/asm/
H A Dswab.h38 * we cannot assume that the upper 16-bits of the register are __arch_swab16()
46 * __asm__ macro follows convention that the upper 16 bits of an __arch_swab16()
54 * (or equivalent) to mask off the upper 16 bits. */ __arch_swab16()
/linux-4.4.14/arch/microblaze/kernel/
H A Dftrace.c185 unsigned int upper = (unsigned int)func; ftrace_update_ftrace_func() local
190 upper = 0xb0000000 + (upper >> 16); /* imm func_upper */ ftrace_update_ftrace_func()
193 pr_debug("%s: func=0x%x, ip=0x%x, upper=0x%x, lower=0x%x\n", ftrace_update_ftrace_func()
194 __func__, (unsigned int)func, (unsigned int)ip, upper, lower); ftrace_update_ftrace_func()
196 /* save upper and lower code */ ftrace_update_ftrace_func()
197 ret = ftrace_modify_code(ip, upper); ftrace_update_ftrace_func()
/linux-4.4.14/drivers/clocksource/
H A Darm_global_timer.c57 * 1. Read the upper 32-bit timer counter register
59 * 3. Read the upper 32-bit timer counter register again. If the value is
60 * different to the 32-bit upper value read previously, go back to step 2.
67 u32 upper, old_upper; _gt_counter_read() local
69 upper = readl_relaxed(gt_base + GT_COUNTER1); _gt_counter_read()
71 old_upper = upper; _gt_counter_read()
73 upper = readl_relaxed(gt_base + GT_COUNTER1); _gt_counter_read()
74 } while (upper != old_upper); _gt_counter_read()
76 counter = upper; _gt_counter_read()
92 * 3. Write the upper 32-bit Comparator Value Register.
H A Dtcb_clksrc.c47 u32 lower, upper; tc_get_cycles() local
51 upper = __raw_readl(tcaddr + ATMEL_TC_REG(1, CV)); tc_get_cycles()
53 } while (upper != __raw_readl(tcaddr + ATMEL_TC_REG(1, CV))); tc_get_cycles()
56 return (upper << 16) | lower; tc_get_cycles()
/linux-4.4.14/drivers/net/wireless/ath/ath9k/
H A Dcommon-spectral.h77 * [7:0]: upper bins {max_magnitude[1:0], bitmap_weight[5:0]}
78 * [7:0]: upper bins max_magnitude[9:2]
79 * [7:0]: upper bins {max_index[5:0], max_magnitude[11:10]}
111 /* grabs the max magnitude from the all/upper/lower bins */ spectral_max_magnitude()
119 /* return the max magnitude from the all/upper/lower bins */ spectral_max_index()
148 /* return the bitmap weight from the all/upper/lower bins */ spectral_bitmap_weight()
/linux-4.4.14/net/tipc/
H A Dname_table.h54 * @upper: name sequence upper bound
72 u32 upper; member in struct:publication
101 int tipc_nametbl_mc_translate(struct net *net, u32 type, u32 lower, u32 upper,
104 u32 upper, u32 scope, u32 port_ref,
109 u32 lower, u32 upper, u32 scope,
H A Dname_table.c80 * @upper: name sequence upper bound
85 u32 upper; member in struct:sub_seq
120 static struct publication *publ_create(u32 type, u32 lower, u32 upper, publ_create() argument
132 publ->upper = upper; publ_create()
193 else if (instance > sseqs[mid].upper) nameseq_find_subseq()
221 else if (instance > sseqs[mid].upper) nameseq_locate_subseq()
235 u32 upper, u32 scope, tipc_nameseq_insert_publ()
249 if ((sseq->lower != lower) || (sseq->upper != upper)) { tipc_nameseq_insert_publ()
268 /* Fail if upper end overlaps into an existing entry */ tipc_nameseq_insert_publ()
270 (upper >= nseq->sseqs[inspos].lower)) { tipc_nameseq_insert_publ()
280 type, lower, upper); tipc_nameseq_insert_publ()
293 type, lower, upper); tipc_nameseq_insert_publ()
308 sseq->upper = upper; tipc_nameseq_insert_publ()
314 publ = publ_create(type, lower, upper, scope, node, port, key); tipc_nameseq_insert_publ()
333 tipc_subscrp_report_overlap(s, publ->lower, publ->upper, tipc_nameseq_insert_publ()
403 tipc_subscrp_report_overlap(s, publ->lower, publ->upper, tipc_nameseq_remove_publ()
427 if (tipc_subscrp_check_overlap(s, sseq->lower, sseq->upper)) { tipc_nameseq_subscribe()
434 sseq->upper, tipc_nameseq_subscribe()
461 u32 lower, u32 upper, u32 scope, tipc_nametbl_insert_publ()
470 (lower > upper)) { tipc_nametbl_insert_publ()
472 type, lower, upper, scope); tipc_nametbl_insert_publ()
482 publ = tipc_nameseq_insert_publ(net, seq, type, lower, upper, tipc_nametbl_insert_publ()
612 int tipc_nametbl_mc_translate(struct net *net, u32 type, u32 lower, u32 upper, tipc_nametbl_mc_translate() argument
632 if (sseq->lower > upper) tipc_nametbl_mc_translate()
654 u32 upper, u32 scope, u32 port_ref, tipc_nametbl_publish()
669 publ = tipc_nametbl_insert_publ(net, type, lower, upper, scope, tipc_nametbl_publish()
738 s->seq.type, s->seq.lower, s->seq.upper); tipc_nametbl_subscribe()
883 if (nla_put_u32(msg->skb, TIPC_NLA_PUBL_UPPER, sseq->upper)) __tipc_nl_add_nametable_publ()
232 tipc_nameseq_insert_publ(struct net *net, struct name_seq *nseq, u32 type, u32 lower, u32 upper, u32 scope, u32 node, u32 port, u32 key) tipc_nameseq_insert_publ() argument
460 tipc_nametbl_insert_publ(struct net *net, u32 type, u32 lower, u32 upper, u32 scope, u32 node, u32 port, u32 key) tipc_nametbl_insert_publ() argument
653 tipc_nametbl_publish(struct net *net, u32 type, u32 lower, u32 upper, u32 scope, u32 port_ref, u32 key) tipc_nametbl_publish() argument
H A Dname_distr.h48 * @upper: name sequence upper bound
65 __be32 upper; member in struct:distr_item
H A Dsubscr.c100 if (found_upper > sub->seq.upper) tipc_subscrp_check_overlap()
101 found_upper = sub->seq.upper; tipc_subscrp_check_overlap()
126 tipc_subscrp_send_event(sub, sub->evt.s.seq.lower, sub->evt.s.seq.upper, tipc_subscrp_timeout()
255 sub->seq.upper = htohl(s->seq.upper, swap); tipc_subscrp_create()
260 (sub->seq.lower > sub->seq.upper)) { tipc_subscrp_create()
322 saddr->addr.nameseq.upper = TIPC_TOP_SRV; tipc_topsrv_start()
H A Dname_distr.c63 i->upper = htonl(p->upper); publ_to_item()
316 ntohl(i->upper), tipc_update_nametbl()
377 ntohl(e->i.upper), tipc_named_process_backlog()
/linux-4.4.14/net/llc/
H A Dllc_if.c2 * llc_if.c - Defines LLC interface to upper layer
30 * llc_build_and_send_pkt - Connection data sending for upper layers.
34 * This function is called when upper layer wants to send data using
67 * llc_establish_connection - Called by upper layer to establish a conn
76 * establishment will inform to upper layer via calling it's confirm
117 * llc_send_disc - Called by upper layer to close a connection
H A Dllc_core.c83 * llc_sap_open - open interface to the upper layers.
87 * Interface function to upper layer. Each one who wants to get a SAP
114 * llc_sap_close - close interface for upper layers.
117 * Close interface function to upper layer. Each one who wants to
H A Dllc_output.c52 * llc_build_and_send_ui_pkt - unitdata request interface for upper layers
58 * Upper layers calls this function when upper layer wants to send data
H A Dllc_sap.c87 * llc_sap_rtn_pdu - Informs upper layer on rx of an UI, XID or TEST pdu.
197 * After executing actions of the event, upper layer will be indicated
228 * llc_build_and_send_test_pkt - TEST interface for upper layers.
234 * This function is called when upper layer wants to send a TEST pdu.
254 * llc_build_and_send_xid_pkt - XID interface for upper layers
260 * This function is called when upper layer wants to send a XID pdu.
/linux-4.4.14/arch/m68k/include/asm/
H A Damigahw.h280 unsigned int :28, second1:4; /* upper digit */
282 unsigned int :28, minute1:4; /* upper digit */
284 unsigned int :28, hour1:4; /* upper digit */
287 unsigned int :28, day1:4; /* upper digit */
289 unsigned int :28, month1:4; /* upper digit */
291 unsigned int :28, year1:4; /* upper digit */
302 unsigned int :28, second1:4; /* upper digit */
304 unsigned int :28, minute1:4; /* upper digit */
306 unsigned int :28, hour1:4; /* upper digit */
308 unsigned int :28, day1:4; /* upper digit */
310 unsigned int :28, month1:4; /* upper digit */
312 unsigned int :28, year1:4; /* upper digit */
H A Dm52xxacr.h44 #define ACR_BASE_POS 24 /* Address Base (upper 8 bits) */
H A Dm53xxacr.h39 #define ACR_BASE_POS 24 /* Address Base (upper 8 bits) */
/linux-4.4.14/fs/nfsd/
H A Dblocklayoutxdr.h19 * Random upper cap for the uuid length to avoid unbounded allocation.
/linux-4.4.14/fs/btrfs/
H A Drelocation.c55 /* list of upper level blocks reference this block */
56 struct list_head upper; member in struct:backref_node
76 * 1 if corresponding block has been cowed but some upper
106 * pointers in upper level blocks may not reflect the
253 INIT_LIST_HEAD(&node->upper); alloc_backref_node()
353 while (!list_empty(&node->upper)) { walk_up_backref()
354 edge = list_entry(node->upper.next, walk_up_backref()
377 if (list_is_last(&edge->list[LOWER], &lower->upper)) { walk_down_backref()
411 BUG_ON(!list_empty(&node->upper)); drop_backref_node()
427 struct backref_node *upper; remove_backref_node() local
434 while (!list_empty(&node->upper)) { remove_backref_node()
435 edge = list_entry(node->upper.next, struct backref_edge, remove_backref_node()
437 upper = edge->node[UPPER]; remove_backref_node()
442 if (RB_EMPTY_NODE(&upper->rb_node)) { remove_backref_node()
443 BUG_ON(!list_empty(&node->upper)); remove_backref_node()
445 node = upper; remove_backref_node()
453 if (list_empty(&upper->lower)) { remove_backref_node()
454 list_add_tail(&upper->lower, &cache->leaves); remove_backref_node()
455 upper->lowest = 1; remove_backref_node()
670 * to find upper level blocks that refernece the block, and then check
671 * bakcrefs of these upper level blocks recursively. the recursion stop
675 * for all upper level blocks that directly/indirectly reference the
689 struct backref_node *upper; local
745 if (!list_empty(&cur->upper)) {
750 ASSERT(list_is_singular(&cur->upper));
751 edge = list_entry(cur->upper.next, struct backref_edge,
756 * add the upper level block to pending list if we need
856 upper = alloc_backref_node(cache);
857 if (!upper) {
862 upper->bytenr = key.offset;
863 upper->level = cur->level + 1;
865 * backrefs for the upper level block isn't
870 upper = rb_entry(rb_node, struct backref_node,
872 ASSERT(upper->checked);
875 list_add_tail(&edge->list[LOWER], &cur->upper);
877 edge->node[UPPER] = upper;
908 * searching the tree to find upper level blocks
949 upper = alloc_backref_node(cache);
950 if (!upper) {
955 upper->bytenr = eb->start;
956 upper->owner = btrfs_header_owner(eb);
957 upper->level = lower->level + 1;
960 upper->cowonly = 1;
967 upper->checked = 0;
969 upper->checked = 1;
977 if (!upper->checked && need_check) {
982 if (upper->checked)
987 upper = rb_entry(rb_node, struct backref_node,
989 ASSERT(upper->checked);
991 if (!upper->owner)
992 upper->owner = btrfs_header_owner(eb);
994 list_add_tail(&edge->list[LOWER], &lower->upper);
996 edge->node[UPPER] = upper;
1000 lower = upper;
1001 upper = NULL;
1043 list_for_each_entry(edge, &node->upper, list[LOWER])
1049 upper = edge->node[UPPER];
1050 if (upper->detached) {
1054 if (list_empty(&lower->upper))
1059 if (!RB_EMPTY_NODE(&upper->rb_node)) {
1060 if (upper->lowest) {
1061 list_del_init(&upper->lower);
1062 upper->lowest = 0;
1065 list_add_tail(&edge->list[UPPER], &upper->lower);
1069 if (!upper->checked) {
1078 if (cowonly != upper->cowonly) {
1085 rb_node = tree_insert(&cache->rb_root, upper->bytenr,
1086 &upper->rb_node);
1089 upper->bytenr);
1092 list_add_tail(&edge->list[UPPER], &upper->lower);
1094 list_for_each_entry(edge, &upper->upper, list[LOWER])
1099 * are deleted from the cache. backref nodes for upper level
1104 upper = list_entry(useless.next, struct backref_node, list);
1105 list_del_init(&upper->list);
1106 ASSERT(list_empty(&upper->upper));
1107 if (upper == node)
1109 if (upper->lowest) {
1110 list_del_init(&upper->lower);
1111 upper->lowest = 0;
1113 while (!list_empty(&upper->lower)) {
1114 edge = list_entry(upper->lower.next,
1121 if (list_empty(&lower->upper))
1124 __mark_block_processed(rc, upper);
1125 if (upper->level > 0) {
1126 list_add(&upper->list, &cache->detached);
1127 upper->detached = 1;
1129 rb_erase(&upper->rb_node, &cache->rb_root);
1130 free_backref_node(cache, upper);
1148 upper = edge->node[UPPER];
1152 * Lower is no longer linked to any upper backref nodes
1155 if (list_empty(&lower->upper) &&
1159 if (!RB_EMPTY_NODE(&upper->rb_node))
1162 /* Add this guy's upper edges to the list to proces */
1163 list_for_each_entry(edge, &upper->upper, list[LOWER])
1165 if (list_empty(&upper->upper))
1166 list_add(&upper->list, &useless);
1257 &new_edge->node[LOWER]->upper); clone_backref_node()
2579 if (list_empty(&next->upper)) calcu_metadata_size()
2582 edge = list_entry(next->upper.next, calcu_metadata_size()
2630 * relocate a block tree, and then update pointers in upper level
2642 struct backref_node *upper; do_relocation() local
2658 list_for_each_entry(edge, &node->upper, list[LOWER]) { do_relocation()
2661 upper = edge->node[UPPER]; do_relocation()
2662 root = select_reloc_root(trans, rc, upper, edges); do_relocation()
2665 if (upper->eb && !upper->locked) { do_relocation()
2667 ret = btrfs_bin_search(upper->eb, key, do_relocation()
2668 upper->level, &slot); do_relocation()
2670 bytenr = btrfs_node_blockptr(upper->eb, slot); do_relocation()
2674 drop_node_buffer(upper); do_relocation()
2677 if (!upper->eb) { do_relocation()
2685 if (!upper->eb) { do_relocation()
2686 upper->eb = path->nodes[upper->level]; do_relocation()
2687 path->nodes[upper->level] = NULL; do_relocation()
2689 BUG_ON(upper->eb != path->nodes[upper->level]); do_relocation()
2692 upper->locked = 1; do_relocation()
2693 path->locks[upper->level] = 0; do_relocation()
2695 slot = path->slots[upper->level]; do_relocation()
2698 ret = btrfs_bin_search(upper->eb, key, upper->level, do_relocation()
2703 bytenr = btrfs_node_blockptr(upper->eb, slot); do_relocation()
2712 generation = btrfs_node_ptr_generation(upper->eb, slot); do_relocation()
2726 ret = btrfs_cow_block(trans, root, eb, upper->eb, do_relocation()
2736 btrfs_set_node_blockptr(upper->eb, slot, do_relocation()
2738 btrfs_set_node_ptr_generation(upper->eb, slot, do_relocation()
2740 btrfs_mark_buffer_dirty(upper->eb); do_relocation()
2744 upper->eb->start, do_relocation()
2745 btrfs_header_owner(upper->eb), do_relocation()
2749 ret = btrfs_drop_subtree(trans, root, eb, upper->eb); do_relocation()
2753 if (!upper->pending) do_relocation()
2754 drop_node_buffer(upper); do_relocation()
2756 unlock_node_buffer(upper); do_relocation()
2850 if (list_empty(&next->upper)) update_processed_blocks()
2853 edge = list_entry(next->upper.next, update_processed_blocks()
/linux-4.4.14/drivers/thermal/
H A Dstep_wise.c36 * c. if the trend is THERMAL_TREND_RAISE_FULL, use upper limit
68 next_target = (cur_state + 1) >= instance->upper ? get_target_state()
69 instance->upper : get_target_state()
82 next_target = cur_state < instance->upper ? get_target_state()
83 (cur_state + 1) : instance->upper; get_target_state()
90 next_target = instance->upper; get_target_state()
98 if (next_target > instance->upper) get_target_state()
99 next_target = instance->upper; get_target_state()
H A Dthermal_core.h45 unsigned long upper; /* Highest cooling state for this trip point */ member in struct:thermal_instance
H A Dthermal_core.c290 unsigned long upper, lower; __bind() local
292 upper = THERMAL_NO_LIMIT; __bind()
296 upper = limits[i * 2 + 1]; __bind()
299 upper, lower, __bind()
1242 * @upper: the Maximum cooling state for this trip point.
1243 * THERMAL_NO_LIMIT means no upper limit,
1261 unsigned long upper, unsigned long lower, thermal_zone_bind_cooling_device()
1290 /* lower default 0, upper default max_state */ thermal_zone_bind_cooling_device()
1292 upper = upper == THERMAL_NO_LIMIT ? max_state : upper; thermal_zone_bind_cooling_device()
1294 if (lower > upper || upper > max_state) thermal_zone_bind_cooling_device()
1304 dev->upper = upper; thermal_zone_bind_cooling_device()
1258 thermal_zone_bind_cooling_device(struct thermal_zone_device *tz, int trip, struct thermal_cooling_device *cdev, unsigned long upper, unsigned long lower, unsigned int weight) thermal_zone_bind_cooling_device() argument
/linux-4.4.14/drivers/rtc/
H A Drtc-s3c.h31 * TICNT[6:0] contains upper 7 bits
41 * TICNT2[16:0] contains upper 17 bits
/linux-4.4.14/arch/sh/include/cpu-sh2/cpu/
H A Dwatchdog.h56 * register. The upper byte is set manually on each write.
62 * we can't presently touch the WOVF bit, since the upper byte sh_wdt_write_rstcsr()
/linux-4.4.14/arch/m68k/fpsp040/
H A Dbinstr.S23 | to force the first byte formed to have a 0 in the upper 4 bits.
40 | upper word of d0. If it is the ls digit, write the word
51 | d2: upper 32-bits of fraction for mul by 8
53 | d4: upper 32-bits of fraction for mul by 2
106 addxl %d4,%d2 |add with extend upper 32 bits
109 swap %d6 |with d6 = 0; put 0 in upper word
117 aslw #4,%d7 |first digit in upper 4 bits d7b
131 lslw #4,%d7 |move it to upper 4 bits
H A Dx_store.S137 swap %d0 |d0 now in upper word
155 bfextu %d1{#1:#20},%d1 |get upper 20 bits of ms
160 lsll %d0,%d1 |put lower 11 bits in upper bits
208 swap %d0 |put exp in upper word of d0
223 bfextu %d1{#1:#23},%d1 |get upper 23 bits of ms
H A Dsacos.S66 movel (%a0),%d0 | ...pack exponent with upper 16 fraction
95 movel (%a0),%d0 | ...pack exponent with upper 16 fraction
H A Dsgetem.S112 bnes upper |then branch
124 upper: label
H A Dsint.S80 | ;in upper word.
117 | ;in upper word.
135 | ;in upper word.
H A Dx_unfl.S146 | ;upper word for round
190 | information respectively on upper/lower register halves.
248 tstl LOCAL_HI(%a0) |check upper mantissa
/linux-4.4.14/drivers/video/fbdev/
H A Darcfb.c247 static void arcfb_lcd_update_page(struct arcfb_par *par, unsigned int upper, arcfb_lcd_update_page() argument
257 yindex = upper >> 6; arcfb_lcd_update_page()
260 ks108_set_yaddr(par, chipindex, upper/8); arcfb_lcd_update_page()
264 (upper * linesize); arcfb_lcd_update_page()
295 * lcd chips. update_page uses the upper/left values to decide which
296 * chip to select for the right. upper is needed for setting the page
302 unsigned int distance, upper, lower; arcfb_lcd_update_vert() local
305 upper = top; arcfb_lcd_update_vert()
310 arcfb_lcd_update_page(par, upper, left, right, 8); arcfb_lcd_update_vert()
311 upper = lower + 1; arcfb_lcd_update_vert()
312 lower = upper + 7; arcfb_lcd_update_vert()
324 unsigned int distance, upper, lower; arcfb_lcd_update_horiz() local
327 upper = floor8(top); arcfb_lcd_update_horiz()
328 lower = min(upper + distance - 1, ceil64(upper)); arcfb_lcd_update_horiz()
331 distance -= ((lower - upper) + 1 ); arcfb_lcd_update_horiz()
332 arcfb_lcd_update_vert(par, upper, lower, left, right); arcfb_lcd_update_horiz()
333 upper = lower + 1; arcfb_lcd_update_horiz()
334 lower = min(upper + distance - 1, ceil64(upper)); arcfb_lcd_update_horiz()
H A Dsticore.h264 s16 dest_x; /* X location of character upper left */
265 s16 dest_y; /* Y location of character upper left */
295 s16 src_x; /* source upper left pixel x location */
296 s16 src_y; /* source upper left pixel y location */
297 s16 dest_x; /* dest upper left pixel x location */
298 s16 dest_y; /* dest upper left pixel y location */
H A Dmacmodes.c113 "mac1", 60, 512, 384, pixclock, left, right, upper, lower, hslen, vslen,
117 "mac3", 50, 640, 480, pixclock, left, right, upper, lower, hslen, vslen,
121 "mac4", 60, 640, 480, pixclock, left, right, upper, lower, hslen, vslen,
125 "mac8", 50, 768, 576, pixclock, left, right, upper, lower, hslen, vslen,
/linux-4.4.14/arch/sh/include/asm/
H A Dwatchdog.h81 * The upper byte is set manually on each write.
93 * The upper byte is set manually on each write.
114 * register. The upper byte is set manually on each write.
135 * The upper byte is set manually on each write.
157 * register. The upper byte is set manually on each write.
/linux-4.4.14/arch/unicore32/mm/
H A Dmm.h14 /* the upper-most page table pointer */
/linux-4.4.14/arch/alpha/lib/
H A Dev67-strlen.S17 * U - upper subcluster; U0 - subcluster U0; U1 - subcluster U1
H A Dev67-strcat.S13 * U - upper subcluster; U0 - subcluster U0; U1 - subcluster U1
H A Dev6-csum_ipv6_magic.S17 * U - upper subcluster; U0 - subcluster U0; U1 - subcluster U1
146 zapnot $4,3,$0 # U : clear upper garbage bits
H A Dev6-memchr.S26 * U - upper subcluster; U0 - subcluster U0; U1 - subcluster U1
62 extql $1, $16, $7 # U : $7 is upper bits
H A Dev67-strncat.S18 * U - upper subcluster; U0 - subcluster U0; U1 - subcluster U1
H A Dev67-strchr.S14 * U - upper subcluster; U0 - subcluster U0; U1 - subcluster U1
/linux-4.4.14/include/net/netfilter/
H A Dnf_tables_core.h17 * mask needs to include the *upper* bytes when interpreting that data as
/linux-4.4.14/include/uapi/linux/
H A Dadb.h13 /* ADB default device IDs (upper 4 bits of ADB command byte) */
H A Dseccomp.h23 * The upper 16-bits are ordered from least permissive values to most.
H A Datmbr2684.h56 int media; /* BR2684_MEDIA_*, flags in upper bits */
H A Dshm.h11 * SHMMNI, SHMMAX and SHMALL are default upper limits which can be
H A Dip_vs.h155 __u32 u_threshold; /* upper threshold */
219 __u32 u_threshold; /* upper threshold */
381 IPVS_DEST_ATTR_U_THRESH, /* upper threshold */
H A Dmsg.h57 * MSGMNI is the upper limit for the number of messages queues per
/linux-4.4.14/arch/powerpc/include/asm/
H A Dperf_event_fsl_emb.h22 /* upper half of event flags is PMLCb */
H A Dchecksum.h81 it will carry from the lower half into the upper half, csum_fold()
82 giving us the correct sum in the upper half. */ csum_fold()
H A Dtime.h139 static inline void set_tb(unsigned int upper, unsigned int lower) set_tb() argument
142 mtspr(SPRN_TBWU, upper); set_tb()
H A Ddbdma.h17 unsigned int cmdptr_hi; /* upper 32 bits of command address */
/linux-4.4.14/arch/sh/lib64/
H A Dudivdi3.S116 four extra instructions for the upper 32 bits (shift / mulu / shift / sub).
117 Fortunately, if the upper 32 bits of the shift result are nonzero, we
119 fit into 32 bits. So we just clear the upper 32 bits of the rest if the
120 upper 32 bits of the partial result are nonzero. */
/linux-4.4.14/Documentation/target/
H A Dtcm_mod_builder.py50 buf = "#define " + fabric_mod_name.upper() + "_VERSION \"v0.1\"\n"
51 buf += "#define " + fabric_mod_name.upper() + "_NAMELEN 32\n"
66 buf += " char lport_name[" + fabric_mod_name.upper() + "_NAMELEN];\n"
94 buf = "#define " + fabric_mod_name.upper() + "_VERSION \"v0.1\"\n"
95 buf += "#define " + fabric_mod_name.upper() + "_NAMELEN 32\n"
109 buf += " char tport_name[" + fabric_mod_name.upper() + "_NAMELEN];\n"
137 buf = "#define " + fabric_mod_name.upper() + "_VERSION \"v0.1\"\n"
138 buf += "#define " + fabric_mod_name.upper() + "_NAMELEN 32\n"
150 buf += " char tport_name[" + fabric_mod_name.upper() + "_NAMELEN];\n"
275 buf += " /* " + fabric_mod_name + "_format_wwn(&" + fabric_mod_port + "->" + fabric_mod_port + "_name[0], " + fabric_mod_name.upper() + "_NAMELEN, wwpn); */\n\n"
328 buf += "MODULE_DESCRIPTION(\"" + fabric_mod_name.upper() + " series fabric driver\");\n"
572 buf += "obj-$(CONFIG_" + fabric_mod_name.upper() + ") += " + fabric_mod_name + ".o\n"
591 buf = "config " + fabric_mod_name.upper() + "\n"
592 buf += " tristate \"" + fabric_mod_name.upper() + " fabric module\"\n"
596 buf += " Say Y here to enable the " + fabric_mod_name.upper() + " fabric module\n"
606 buf = "obj-$(CONFIG_" + fabric_mod_name.upper() + ") += " + fabric_mod_name.lower() + "/\n"
/linux-4.4.14/arch/mips/mm/
H A Dinit.c276 cfg[num_cfg].upper = cfg[num_cfg].lower; platform_maar_init()
277 cfg[num_cfg].upper += boot_mem_map.map[i].size - 1; platform_maar_init()
278 cfg[num_cfg].upper -= skip; platform_maar_init()
295 phys_addr_t lower, upper, attr; maar_init() local
336 upper = read_c0_maar(); maar_init()
342 attr = lower & upper; maar_init()
344 upper = ((upper & MIPS_MAAR_ADDR) << 4) | 0xffff; maar_init()
352 pr_cont("%pa-%pa", &lower, &upper); maar_init()
362 recorded.cfgs[recorded.used].upper = upper; maar_init()
/linux-4.4.14/arch/x86/include/asm/trace/
H A Dmpx.h29 * Note that we are printing out the '~' of the upper
38 TP_printk("address referenced: 0x%p bounds: lower: 0x%llx ~upper: 0x%llx",
/linux-4.4.14/drivers/infiniband/core/
H A Droce_gid_mgmt.c92 struct net_device *upper) is_eth_active_slave_of_bonding_rcu()
94 if (upper && netif_is_bond_master(upper)) { is_eth_active_slave_of_bonding_rcu()
96 bond_option_active_slave_get_rcu(netdev_priv(upper)); is_eth_active_slave_of_bonding_rcu()
106 static bool is_upper_dev_rcu(struct net_device *dev, struct net_device *upper) is_upper_dev_rcu() argument
112 if (_upper == upper) is_upper_dev_rcu()
115 return _upper == upper; is_upper_dev_rcu()
416 struct net_device *upper; handle_netdev_upper() member in struct:upper_list
418 struct net_device *upper; handle_netdev_upper() local
425 netdev_for_each_all_upper_dev_rcu(ndev, upper, iter) { netdev_for_each_all_upper_dev_rcu()
435 dev_hold(upper); netdev_for_each_all_upper_dev_rcu()
436 entry->upper = upper; netdev_for_each_all_upper_dev_rcu()
443 handle_netdev(ib_dev, port, upper_iter->upper);
444 dev_put(upper_iter->upper);
91 is_eth_active_slave_of_bonding_rcu(struct net_device *dev, struct net_device *upper) is_eth_active_slave_of_bonding_rcu() argument
/linux-4.4.14/include/linux/
H A Ddcache.h556 * d_backing_inode - Get upper or lower inode we should be using
557 * @upper: The upper layer
560 * if this dentry were to be opened as a file. The inode may be on the upper
561 * dentry or it may be on a lower dentry pinned by the upper.
565 static inline struct inode *d_backing_inode(const struct dentry *upper) d_backing_inode() argument
567 struct inode *inode = upper->d_inode; d_backing_inode()
573 * d_backing_dentry - Get upper or lower dentry we should be using
574 * @upper: The upper layer
577 * will be used if this dentry were opened as a file. It may be the upper
578 * dentry or it may be a lower dentry pinned by the upper.
582 static inline struct dentry *d_backing_dentry(struct dentry *upper) d_backing_dentry() argument
584 return upper; d_backing_dentry()
H A Dipmi_smi.h54 * the upper layer. If an error occurs, it should fill in the
84 the upper layer until this function is called. This may
107 /* Called by the upper layer to request that we try to get
111 /* Called by the upper layer when some user requires that the
130 /* Called to poll for work to do. This is so upper layers can
212 upper layer until the start_processing() function in the handlers
H A Dcpufeature.h22 * - MAX_CPU_FEATURES upper bound for feature ordinal values
H A Dctype.h9 #define _U 0x01 /* upper */
H A Dshm.h27 /* shm_mode upper byte flags */
H A Damifdreg.h22 #define DSKSIDE (0x1<<2) /* side selection: 0 = upper, 1 = lower */
H A Dflex_proportions.h17 * precision with which we allow limitting. Note that this creates an upper
H A Dinput-polldev.h26 * @poll_interval_max: specifies upper bound for the poll interval.
H A Dproportions.h28 * counter bits, the remaining upper bits the period counter.
/linux-4.4.14/drivers/acpi/acpica/
H A Dutprint.c68 static char *acpi_ut_put_number(char *string, u64 number, u8 base, u8 upper);
134 * upper - Whether or not using upper cased digits
143 static char *acpi_ut_put_number(char *string, u64 number, u8 base, u8 upper) acpi_ut_put_number() argument
150 digits = upper ? acpi_gbl_upper_hex_digits : acpi_gbl_lower_hex_digits; acpi_ut_put_number()
249 u8 upper; acpi_ut_format_number() local
265 upper = (type & ACPI_FORMAT_UPPER) ? TRUE : FALSE; acpi_ut_format_number()
293 pos = acpi_ut_put_number(reversed_string, number, base, upper); acpi_ut_format_number()
318 upper ? 'X' : 'x'); acpi_ut_format_number()
/linux-4.4.14/drivers/staging/rtl8712/
H A Dwlan_bssdef.h45 Ndis802_11NetworkTypeMax /* not a real type, defined as an upper bound*/
71 Ndis802_11InfrastructureMax, /*Not a real value,defined as upper bound*/
105 Ndis802_11AuthModeMax /* Not a real mode, defined as upper bound */
/linux-4.4.14/drivers/dma/ppc4xx/
H A Ddma.h112 u32 sg1u; /* upper SG1 address */
115 u32 sg2u; /* upper SG2 address */
117 u32 sg3u; /* upper SG3 address */
/linux-4.4.14/include/sound/
H A Demux_legacy.h130 /*30*/ EMUX_FX_COARSE_SAMPLE_START, /* SHORT: upper word offset */
131 /*31*/ EMUX_FX_COARSE_LOOP_START, /* SHORT: upper word offset */
132 /*32*/ EMUX_FX_COARSE_LOOP_END, /* SHORT: upper word offset */
H A Dcs4231-regs.h50 #define CS4231_PLY_UPR_CNT 0x0e /* playback upper base count */
61 #define AD1845_UPR_FREQ_SEL 0x16 /* upper byte of frequency select */
75 #define CS4231_REC_UPR_CNT 0x1e /* record upper count */
/linux-4.4.14/net/core/
H A Ddev.c2228 * This routine should set an upper limit on the number of RSS queues
3571 * the upper (protocol) levels to process. It always succeeds. The buffer
4896 /* upper master flag, there can only be one master device per list */
4922 * netdev_has_upper_dev - Check if device is linked to an upper device
4924 * @upper_dev: upper device to check
4926 * Find out if a device is linked to specified upper device and return true
4927 * in case it is. Note that this checks only immediate upper device,
4935 return __netdev_find_adj(upper_dev, &dev->all_adj_list.upper); netdev_has_upper_dev()
4943 * Find out if a device is linked to an upper device and return true in case
4950 return !list_empty(&dev->all_adj_list.upper); netdev_has_any_upper_dev()
4954 * netdev_master_upper_dev_get - Get master upper device
4957 * Find a master upper device and return pointer to it or NULL in case
4962 struct netdev_adjacent *upper; netdev_master_upper_dev_get() local
4966 if (list_empty(&dev->adj_list.upper)) netdev_master_upper_dev_get()
4969 upper = list_first_entry(&dev->adj_list.upper, netdev_master_upper_dev_get()
4971 if (likely(upper->master)) netdev_master_upper_dev_get()
4972 return upper->dev; netdev_master_upper_dev_get()
4988 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
4992 * Gets the next device from the dev's upper list, starting from iter
4998 struct netdev_adjacent *upper; netdev_upper_get_next_dev_rcu() local
5002 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list); netdev_upper_get_next_dev_rcu()
5004 if (&upper->list == &dev->adj_list.upper) netdev_upper_get_next_dev_rcu()
5007 *iter = &upper->list; netdev_upper_get_next_dev_rcu()
5009 return upper->dev; netdev_upper_get_next_dev_rcu()
5014 * netdev_all_upper_get_next_dev_rcu - Get the next dev from upper list
5018 * Gets the next device from the dev's upper list, starting from iter
5024 struct netdev_adjacent *upper; netdev_all_upper_get_next_dev_rcu() local
5028 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list); netdev_all_upper_get_next_dev_rcu()
5030 if (&upper->list == &dev->all_adj_list.upper) netdev_all_upper_get_next_dev_rcu()
5033 *iter = &upper->list; netdev_all_upper_get_next_dev_rcu()
5035 return upper->dev; netdev_all_upper_get_next_dev_rcu()
5142 * netdev_master_upper_dev_get_rcu - Get master upper device
5145 * Find a master upper device and return pointer to it or NULL in case
5150 struct netdev_adjacent *upper; netdev_master_upper_dev_get_rcu() local
5152 upper = list_first_or_null_rcu(&dev->adj_list.upper, netdev_master_upper_dev_get_rcu()
5154 if (upper && likely(upper->master)) netdev_master_upper_dev_get_rcu()
5155 return upper->dev; netdev_master_upper_dev_get_rcu()
5165 sprintf(linkname, dev_list == &dev->adj_list.upper ? netdev_adjacent_sysfs_add()
5175 sprintf(linkname, dev_list == &dev->adj_list.upper ? netdev_adjacent_sysfs_del()
5184 return (dev_list == &dev->adj_list.upper || netdev_adjacent_is_neigh_list()
5308 &dev->all_adj_list.upper, __netdev_adjacent_dev_link()
5326 &dev->all_adj_list.upper, __netdev_adjacent_dev_unlink()
5340 &dev->adj_list.upper, __netdev_adjacent_dev_link_neighbour()
5356 &dev->adj_list.upper, __netdev_adjacent_dev_unlink_neighbour()
5373 /* To prevent loops, check if dev is not upper device to upper_dev. */ __netdev_upper_dev_link()
5374 if (__netdev_find_adj(dev, &upper_dev->all_adj_list.upper)) __netdev_upper_dev_link()
5377 if (__netdev_find_adj(upper_dev, &dev->adj_list.upper)) __netdev_upper_dev_link()
5399 * all_adj_list.upper visible to every dev's all_adj_list.lower an __netdev_upper_dev_link()
5404 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) { __netdev_upper_dev_link()
5413 /* add dev to every upper_dev's upper device */ __netdev_upper_dev_link()
5414 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) { __netdev_upper_dev_link()
5415 pr_debug("linking %s's upper device %s with %s\n", __netdev_upper_dev_link()
5447 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) { __netdev_upper_dev_link()
5459 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) { __netdev_upper_dev_link()
5474 * netdev_upper_dev_link - Add a link to the upper device
5476 * @upper_dev: new upper device
5478 * Adds a link to device which is upper to this one. The caller must hold
5491 * netdev_master_upper_dev_link - Add a master link to the upper device
5493 * @upper_dev: new upper device
5495 * Adds a link to device which is upper to this one. In this case, only
5496 * one master upper device can be linked, although other non-master devices
5517 * netdev_upper_dev_unlink - Removes a link to upper device
5519 * @upper_dev: new upper device
5521 * Removes a link to device which is upper to this one. The caller must hold
5541 * devices from all upper_dev's upper devices and vice netdev_upper_dev_unlink()
5545 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) netdev_upper_dev_unlink()
5548 /* remove also the devices itself from lower/upper device netdev_upper_dev_unlink()
5554 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) netdev_upper_dev_unlink()
5588 list_for_each_entry(iter, &dev->adj_list.upper, list) { netdev_adjacent_add_links()
5594 &dev->adj_list.upper); netdev_adjacent_add_links()
5601 &iter->dev->adj_list.upper); netdev_adjacent_add_links()
5613 list_for_each_entry(iter, &dev->adj_list.upper, list) { netdev_adjacent_del_links()
5619 &dev->adj_list.upper); netdev_adjacent_del_links()
5626 &iter->dev->adj_list.upper); netdev_adjacent_del_links()
5638 list_for_each_entry(iter, &dev->adj_list.upper, list) { netdev_adjacent_rename_links()
5651 &iter->dev->adj_list.upper); netdev_adjacent_rename_links()
5653 &iter->dev->adj_list.upper); netdev_adjacent_rename_links()
6276 /* Notifier chain MUST detach us all upper devices. */ list_for_each_entry()
6303 struct net_device *upper, netdev_features_t features) netdev_sync_upper_features()
6311 if (!(upper->wanted_features & feature) netdev_sync_upper_features()
6313 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n", netdev_sync_upper_features()
6314 &feature, upper->name); netdev_sync_upper_features()
6322 static void netdev_sync_lower_features(struct net_device *upper, netdev_sync_lower_features() argument
6332 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n", netdev_sync_lower_features()
6338 netdev_WARN(upper, "failed to disable %pNF on %s!\n", netdev_sync_lower_features()
6413 struct net_device *upper, *lower; __netdev_update_features() local
6428 /* some features can't be enabled if they're off an an upper device */ __netdev_update_features()
6429 netdev_for_each_upper_dev_rcu(dev, upper, iter) __netdev_update_features()
6430 features = netdev_sync_upper_features(dev, upper, features); __netdev_update_features()
6455 * on an upper device (think: bonding master or bridge) __netdev_update_features()
7122 INIT_LIST_HEAD(&dev->adj_list.upper); alloc_netdev_mqs()
7124 INIT_LIST_HEAD(&dev->all_adj_list.upper); alloc_netdev_mqs()
6302 netdev_sync_upper_features(struct net_device *lower, struct net_device *upper, netdev_features_t features) netdev_sync_upper_features() argument
/linux-4.4.14/drivers/media/platform/s5p-mfc/
H A Dregs-mfc.h73 /* upper neighbor motion vector */
113 /* upper motion vector */
117 /* upper intra MD */
121 /* upper intra PRED */
125 /* upper motion vector */
127 /* upper Q coeff. */
131 /* upper motion vector */
133 /* upper Q coeff. */
/linux-4.4.14/drivers/block/
H A Dcciss_scsi.h42 If the upper scsi layer tries to track how many commands we have
45 which is where most requests must surely come from, so the upper layer's
/linux-4.4.14/drivers/clk/mvebu/
H A Darmada-xp.c78 * The upper bit is not contiguous to the other ones and axp_get_cpu_freq()
131 * The upper bit is not contiguous to the other ones and axp_get_clk_ratio()
/linux-4.4.14/include/scsi/fc/
H A Dfc_fcoe.h31 #define FC_FCOE_OUI 0x0efc00 /* upper 24 bits of FCOE MAC */
52 __u8 fcoe_ver; /* version field - upper 4 bits */
/linux-4.4.14/arch/powerpc/kvm/
H A Dbook3s_32_sr.S101 /* We only overwrite the upper part, so we only restoree
102 the upper part. */
/linux-4.4.14/arch/arm/mach-socfpga/
H A Dself-refresh.S56 * upper 16 bits: loop count exiting self refresh
120 * Shift loop count for exiting self refresh into upper 16 bits.
/linux-4.4.14/drivers/staging/rtl8188eu/include/
H A Dwlan_bssdef.h42 Ndis802_11NetworkTypeMax /* dummy upper bound */
68 Ndis802_11InfrastructureMax, /* dummy upper bound */
104 Ndis802_11AuthModeMax /* Not a real mode, upper bound */
184 * an upper bound */
H A Dhal_intf.h107 /* The valid upper nav range for the HW updating, if the true value is
108 * larger than the upper range, the HW won't update it. */
/linux-4.4.14/drivers/scsi/
H A Dultrastor.h49 #define US14F_PRODUCT_ID_1 0x40 /* NOTE: Only upper nibble is used */
/linux-4.4.14/drivers/media/i2c/smiapp/
H A Dsmiapp-regs.h29 /* Use upper 8 bits of the type field for flags */
/linux-4.4.14/drivers/media/rc/keymaps/
H A Drc-su3000.c49 { 0x0c, KEY_ESC } /* upper Red button */
/linux-4.4.14/drivers/nvdimm/
H A Dbtt.h101 * reported to upper layers. (internal_nlba - nfree)
102 * @external_lbasize: LBA size as exposed to upper layers.
159 * @nlba: Number of logical blocks exposed to the upper layers
162 * @lbasize: LBA size as requested and presented to upper layers.
/linux-4.4.14/arch/x86/mm/
H A Dphysaddr.c37 /* only check upper bounds since lower bounds will trigger carry */ __phys_addr_symbol()
/linux-4.4.14/arch/alpha/include/asm/
H A Dirq.h14 /* Here NR_IRQS is not exact, but rather an upper bound. This is used
/linux-4.4.14/arch/parisc/include/asm/
H A Dchecksum.h81 will carry from the lower half into the upper half, csum_fold()
82 giving us the correct sum in the upper half. */ csum_fold()
150 " extrd,u %0, 31, 32, %%r19\n" /* copy upper half down */ csum_ipv6_magic()
151 " depdi 0, 31, 32, %0\n" /* clear upper half */ csum_ipv6_magic()
H A Dgrfioctl.h25 /* upper 32 bits of graphics id (HP/UX identifier) */
80 unsigned int id; /* upper 32 bits of graphics id */
/linux-4.4.14/arch/parisc/include/uapi/asm/
H A Dioctl.h27 * upper 16 bits.
/linux-4.4.14/arch/h8300/lib/
H A Dudivsi3.S63 mulxu.w r0,er2 ; er2 = upper (AQ - 1) * divisor
/linux-4.4.14/Documentation/blackfin/
H A Dgptimers-example.c48 /* tell the upper layers we took care of things */ gptimer_example_irq()
/linux-4.4.14/drivers/staging/rdma/hfi1/
H A Dqsfp.c297 * upper page 01H (if existing) rather than byte 0 from lower page 00H.
418 * For addr 128-255, upper page 00h
419 * For addr 256-383, upper page 01h
420 * For addr 384-511, upper page 02h
421 * For addr 512-639, upper page 03h
425 * For upper pages that are optional, if they are not valid, returns the
/linux-4.4.14/drivers/video/fbdev/matrox/
H A Dmatroxfb_g450.c330 int upper; computeRegs() local
346 upper = (outd->v_total - vsyncend) >> 1; /* in field lines */ computeRegs()
349 r->regs[0x33] = upper - 1; /* upper blanking */ computeRegs()
350 r->regs[0x82] = upper; /* y sync point */ computeRegs()
351 r->regs[0x83] = upper >> 8; computeRegs()
/linux-4.4.14/arch/x86/crypto/
H A Dcrc32c-pcl-intel-asm_64.S117 # less_than_8 expects length in upper 3 bits of len_dw
251 # in upper 4 bits of len_dw
258 # less_than_8 expects length in upper 3 bits of len_dw
272 # upper lg(j) bits of len_dw
287 # upper 3 bits of len_dw
295 # upper 2 bits of len_dw
/linux-4.4.14/lib/mpi/
H A Dmpih-mul.c152 * Put result in upper part of PROD and pass low part of TSPACE mul_n()
176 * Put result in low part of TSPACE using upper part of TSPACE mul_n()
200 * Put result in low part of TSPACE using upper part of TSPACE mul_n()
286 * Put result in upper part of PROD and pass low part of TSPACE mpih_sqr_n()
300 * Put result in low part of TSPACE using upper part of TSPACE mpih_sqr_n()
315 * Put result in low part of TSPACE using upper part of TSPACE mpih_sqr_n()
/linux-4.4.14/drivers/net/fddi/skfp/h/
H A Dsupern_2.h95 unsigned int rx_length :16 ; /* frame length lower/upper byte */
121 unsigned int rx_length :16 ; /* frame length lower/upper byte */
165 unsigned int tx_length:16 ; /* frame length lower/upper byte */
181 unsigned int tx_length:16 ; /* frame length lower/upper byte */
197 #define TD_C_LNCN 0x0000ffffL /* frame length lower/upper byte */
243 #define FM_ST1U 0x00 /* read upper 16-bit of status reg 1 */
245 #define FM_ST2U 0x02 /* read upper 16-bit of status reg 2 */
247 #define FM_IMSK1U 0x04 /* r/w upper 16-bit of IMSK 1 */
249 #define FM_IMSK2U 0x06 /* r/w upper 16-bit of IMSK 2 */
261 #define FM_MIR1 0x12 /* read upper 16-bit of MAC Info Reg */
266 #define FM_TRT 0x16 /* r/w upper 16-bit of TRT timer */
267 #define FM_THT 0x17 /* r/w upper 16-bit of THT timer */
268 #define FM_TNEG 0x18 /* read upper 16-bit of TNEG (TTRT) */
315 #define FM_MDRU 0x3e /* r/w upper 16-bit of mem. data reg */
319 #define FM_TMSYNC 0x40 /* r/w upper 16 bits of TMSYNC timer */
330 #define FM_ST3U 0x61 /* read upper 16-bit of status reg 3 */
332 #define FM_IMSK3U 0x63 /* r/w upper 16-bit of IMSK reg 3 */
/linux-4.4.14/drivers/input/joystick/
H A Dmagellan.c63 * have correct upper nibbles for the lower ones, if not, the packet will
64 * be thrown away. It also strips these upper halves to simplify further
/linux-4.4.14/drivers/media/platform/s5p-tv/
H A Dmixer_vp_layer.c132 unsigned int size, unsigned int upper, unsigned int flags) do_center()
140 return min(lower, upper - size); do_center()
131 do_center(unsigned int center, unsigned int size, unsigned int upper, unsigned int flags) do_center() argument
H A Dmixer_grp_layer.c137 unsigned int size, unsigned int upper, unsigned int flags) do_center()
145 return min(lower, upper - size); do_center()
136 do_center(unsigned int center, unsigned int size, unsigned int upper, unsigned int flags) do_center() argument
/linux-4.4.14/drivers/net/ethernet/cavium/liquidio/
H A Dresponse_manager.h34 * value defined here sets an upper limit on the number of requests it can
75 * Error codes are 32-bit wide. The upper 16-bits, called Major Error Number,
/linux-4.4.14/drivers/char/
H A Dbfin-otp.c58 (flags & OTP_UPPER_HALF ? "upper" : "lower")); bfin_otp_read()
150 (flags & OTP_UPPER_HALF ? "upper" : "lower"), buff + bytes_done); bfin_otp_write()
/linux-4.4.14/scripts/
H A Dconfig36 --keep-case|-k Keep next symbols' case (dont' upper-case it)
41 By default, $myname will upper-case the given symbol. Use --keep-case to keep
/linux-4.4.14/include/rdma/
H A Dib_smi.h138 u8 vl; /* IB: VL is low 4 bits, upper 4 bits reserved */
139 /* OPA: VL is low 5 bits, upper 3 bits reserved */
/linux-4.4.14/fs/xfs/libxfs/
H A Dxfs_types.h76 * The blocksize upper limit is pretty much arbitrary.
77 * The sectorsize upper limit is due to sizeof(sb_sectsize).
H A Dxfs_bit.h67 } else { /* upper bits */ xfs_lowbit64()
/linux-4.4.14/arch/powerpc/kernel/
H A Dswsusp_asm64.S198 /* get upper 32 bits of it */
203 /* set tb upper */
/linux-4.4.14/arch/sh/drivers/pci/
H A Dpci-sh7751.c133 pr_debug("PCI: Setting upper bits of Memory window to 0x%x\n", word); sh7751_pci_init()
139 pr_debug("PCI: Setting upper bits of IO window to 0x%x\n", word); sh7751_pci_init()
/linux-4.4.14/arch/arm/mach-zynq/
H A Dslcr.c160 * SLCR_REBOOT_STATUS save upper 2 bits (31/30 cpu states for cpu0 and cpu1)
180 * SLCR_REBOOT_STATUS save upper 2 bits (31/30 cpu states for cpu0 and cpu1)
/linux-4.4.14/drivers/hid/
H A Dhid-primax.c45 * As long as it's in the size range, the upper level px_raw_event()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/
H A Dnv20.c59 /* IC missing - disable the upper half memory space. */ nv20_devinit_meminit()
H A Dnv10.c92 /* IC missing - disable the upper half memory space. */ nv10_devinit_meminit()
/linux-4.4.14/fs/jfs/
H A Djfs_uniupr.c23 * Latin upper case
H A Djfs_unicode.h119 * UniToupper: Convert a unicode character to upper case
/linux-4.4.14/fs/cifs/
H A Dcifs_unicode.h5 * Convert a unicode character to upper or lower case using
29 * The upper/lower functions are based on a table created by mkupr.
30 * This is a compressed table of upper and lower case conversion.
335 * UniToupper: Convert a unicode character to upper case
/linux-4.4.14/include/linux/ceph/
H A Dceph_frag.h10 * 8 upper bits = "bits"
/linux-4.4.14/include/uapi/linux/mmc/
H A Dioctl.h68 * to the mmc bus device, an upper data transfer limit of MMC_IOC_MAX_BYTES
/linux-4.4.14/arch/mips/include/asm/dec/
H A Dioasic_ints.h23 * The upper 16 bits are a part of the I/O ASIC's internal DMA engine
/linux-4.4.14/arch/score/include/asm/
H A Dmmu_context.h30 * All unused by hardware upper bits will be considered
/linux-4.4.14/arch/sh/include/mach-common/mach/
H A Durquell.h60 #define LATCUAR_OFS 0x3010 /* Latch upper address register */
/linux-4.4.14/arch/mips/math-emu/
H A Ddp_tint.c73 /* Note: At this point upper 32 bits of xm are guaranteed ieee754dp_tint()
/linux-4.4.14/arch/arm/mm/
H A Dmm.h7 /* the upper-most page table pointer */
/linux-4.4.14/arch/arm64/kernel/
H A Dmodule.c97 * Extract the upper value bits (including the sign bit) and reloc_data()
164 /* Check the upper bits depending on the sign of the immediate. */ reloc_insn_movw()
191 * Extract the upper value bits (including the sign bit) and reloc_insn_imm()
197 * Overflow has occurred if the upper bits are not all equal to reloc_insn_imm()
/linux-4.4.14/tools/perf/tests/
H A Dopenat-syscall-all-cpus.c54 * a reasonable upper limit tho :-) test__openat_syscall_event_on_all_cpus()
/linux-4.4.14/drivers/staging/iio/accel/
H A Dlis3l02dq_ring.c18 static inline u16 combine_8_to_16(u8 lower, u8 upper) combine_8_to_16() argument
21 u16 _upper = upper; combine_8_to_16()
85 /* upper byte */ lis3l02dq_read_all()
/linux-4.4.14/drivers/isdn/i4l/
H A Disdn_x25iface.c12 * the upper layer and assumes that the lower layer provides a reliable
294 /* reset state and notify upper layer about isdn_x25iface_xmit()
305 /* Should not happen. However, give upper layer a isdn_x25iface_xmit()
/linux-4.4.14/drivers/net/wireless/mwifiex/
H A Dsta_rx.c72 * to kernel/upper layer.
79 * 802.2/llc/snap frame as required, and sends it to kernel/upper layer.
182 * the kernel/upper layers. Unicast packets are handed over to the
/linux-4.4.14/drivers/cpufreq/
H A Dlongrun.c107 /* lower and upper boundary */ longrun_set_policy()
203 /* set the upper border to the value determined during TSC init */ longrun_determine_freqs()
214 * upper limit to make the calculation more accurate. longrun_determine_freqs()
/linux-4.4.14/arch/arm/lib/
H A Ddiv64.S57 @ See if we need to handle upper 32-bit result.
62 @ Align divisor with upper part of dividend.
87 @ The division loop for needed upper bit positions.
/linux-4.4.14/drivers/media/platform/s5p-jpeg/
H A Djpeg-regs.h48 /* JPEG restart interval register upper byte */
54 /* JPEG vertical resolution register upper byte */
60 /* JPEG horizontal resolution register upper byte */
66 /* JPEG byte count register upper byte */
606 /* The upper bound of the byte size of output compressed stream */
/linux-4.4.14/fs/fat/
H A Dnamei_vfat.c254 upper:1, member in struct:shortname_info
259 (x)->upper = 1; \
289 info->upper = 0; to_shortname_char()
297 info->upper = 0; to_shortname_char()
301 info->upper = 0; to_shortname_char()
438 return (base_info.upper && ext_info.upper); vfat_create_shortname()
440 if ((base_info.upper || base_info.lower) && vfat_create_shortname()
441 (ext_info.upper || ext_info.lower)) { vfat_create_shortname()
442 if (!base_info.upper && base_info.lower) vfat_create_shortname()
444 if (!ext_info.upper && ext_info.lower) vfat_create_shortname()
/linux-4.4.14/drivers/net/bonding/
H A Dbond_alb.c960 struct net_device *upper; alb_send_learning_packets() local
971 netdev_for_each_all_upper_dev_rcu(bond->dev, upper, iter) { alb_send_learning_packets()
972 if (is_vlan_dev(upper) && vlan_get_encap_level(upper) == 0) { alb_send_learning_packets()
975 upper->dev_addr)) { alb_send_learning_packets()
977 vlan_dev_vlan_proto(upper), alb_send_learning_packets()
978 vlan_dev_vlan_id(upper)); alb_send_learning_packets()
980 alb_send_lp_vid(slave, upper->dev_addr, alb_send_learning_packets()
981 vlan_dev_vlan_proto(upper), alb_send_learning_packets()
982 vlan_dev_vlan_id(upper)); alb_send_learning_packets()
989 if (netif_is_macvlan(upper) && !strict_match) { alb_send_learning_packets()
990 tags = bond_verify_device_path(bond->dev, upper, 0); alb_send_learning_packets()
993 alb_send_lp_vid(slave, upper->dev_addr, alb_send_learning_packets()
/linux-4.4.14/net/batman-adv/
H A Dmulticast.c203 struct net_device *upper = bat_priv->soft_iface; batadv_mcast_has_bridge() local
207 upper = netdev_master_upper_dev_get_rcu(upper); batadv_mcast_has_bridge()
208 } while (upper && !(upper->priv_flags & IFF_EBRIDGE)); batadv_mcast_has_bridge()
211 return upper; batadv_mcast_has_bridge()
/linux-4.4.14/drivers/tty/serial/
H A Dip22zilog.h56 #define POINT_HIGH 0x8 /* Select upper half of registers */
182 /* Write Register 13 (upper byte of baud rate generator time constant) */
263 /* Read Register 13 (upper byte of baud rate generator constant) */
H A Dsunzilog.h48 #define POINT_HIGH 0x8 /* Select upper half of registers */
184 /* Write Register 13 (upper byte of baud rate generator time constant) */
271 /* Read Register 13 (upper byte of baud rate generator constant) */
/linux-4.4.14/drivers/s390/cio/
H A Dqdio.h191 /* upper-layer polling flag */
193 /* callback to start upper-layer polling */
262 /* upper-layer program handler */
/linux-4.4.14/drivers/net/hamradio/
H A Dz8530.h24 #define POINT_HIGH 0x8 /* Select upper half of registers */
146 /* Write Register 13 (upper byte of baud rate generator time constant) */
218 /* Read Register 13 (upper byte of baud rate generator constant) */
/linux-4.4.14/drivers/of/
H A Dof_mdio.c33 unsigned int upper, lower; of_get_phy_id() local
36 if (sscanf(cp, "ethernet-phy-id%4x.%4x", &upper, &lower) == 2) { of_get_phy_id()
37 *phy_id = ((upper & 0xFFFF) << 16) | (lower & 0xFFFF); of_get_phy_id()
/linux-4.4.14/drivers/power/
H A Dds2782_battery.c111 * sign in the upper bits of a 16 bit register. ds278x_get_temp()
156 * a 10-bit number plus sign, in the upper bits of a 16-bit register ds2782_get_voltage()
196 * a 12-bit number plus sign, in the upper bits of a 16-bit register ds2786_get_voltage()
H A Dbq27xxx_battery.c1238 int upper, lower; bq27xxx_battery_platform_read() local
1243 * lower and the upper part */ bq27xxx_battery_platform_read()
1244 upper = pdata->read(dev, reg + 1); bq27xxx_battery_platform_read()
1246 temp = upper; bq27xxx_battery_platform_read()
1247 if (upper < 0) bq27xxx_battery_platform_read()
1248 return upper; bq27xxx_battery_platform_read()
1254 upper = pdata->read(dev, reg + 1); bq27xxx_battery_platform_read()
1255 } while (temp != upper && --timeout); bq27xxx_battery_platform_read()
1260 return (upper << 8) | lower; bq27xxx_battery_platform_read()
/linux-4.4.14/drivers/crypto/caam/
H A Ddesc_constr.h364 u32 upper = (data >> 16) >> 16; \
366 (upper ? 0 : MATH_IFB)); \
367 if (upper) \
/linux-4.4.14/drivers/edac/
H A Dr82600_edac.c126 * 7:0 Address lines 30:24 - upper limit of
169 /* bits 30:12 store the upper 19 bits of the 32 bit error address */ r82600_process_error_info()
175 * granularity (upper 19 bits only) */ r82600_process_error_info()
/linux-4.4.14/arch/s390/include/asm/
H A Dqdio.h251 * (for communication with upper layer programs)
255 * @user: pointer to upper layer program's state information related to SBAL
315 /* qdio errors reported to the upper-layer program */
H A Dtimex.h148 * With a split todval == 2^32 * th + tl (th upper 32 bits, tl lower 32 bits)
/linux-4.4.14/sound/pci/aw2/
H A Daw2-saa7146.c193 /* Define upper limit for DMA access */ snd_aw2_saa7146_pcm_init_playback()
204 /* Define upper limit for DMA access */ snd_aw2_saa7146_pcm_init_playback()
250 /* Define upper limit for DMA access */ snd_aw2_saa7146_pcm_init_capture()
/linux-4.4.14/drivers/staging/rtl8192u/
H A Dr8192U_dm.h69 /* 2007/10/04 MH Define upper and lower threshold of DIG enable or disable. */
/linux-4.4.14/drivers/staging/rtl8723au/include/
H A Dwlan_bssdef.h42 dis802_11AuthModeMax /* upper bound */
/linux-4.4.14/drivers/isdn/isdnloop/
H A Disdnloop.h84 isdn_if interface; /* Interface to upper layer */
/linux-4.4.14/drivers/md/persistent-data/
H A Ddm-btree-internal.h142 * Value type for upper levels of multi-level btrees.
/linux-4.4.14/drivers/gpu/drm/sti/
H A Dsti_vid.c58 * Align to upper even value */ sti_vid_commit()
/linux-4.4.14/drivers/irqchip/
H A Dalphascale_asm9260-icoll.h97 * This bitfield holds the upper 30 bits of the base address of the vector
/linux-4.4.14/drivers/media/rc/img-ir/
H A Dimg-ir-sony.c81 /* upper device bits only in 15 bit encoding */ img_ir_sony_filter()
/linux-4.4.14/drivers/net/ethernet/intel/e1000e/
H A Dhw.h228 } upper; member in struct:e1000_rx_desc_extended::__anon6967
263 } upper; member in struct:e1000_rx_desc_packet_split::__anon6973
286 } upper; member in struct:e1000_tx_desc
336 } upper; member in struct:e1000_data_desc
/linux-4.4.14/drivers/net/wireless/brcm80211/include/
H A Dbrcmu_d11.h50 #define BRCMU_CHSPEC_D11N_SB_U 0x0200 /* control upper */
/linux-4.4.14/drivers/net/
H A Dnlmon.c32 /* Note that in netlink we do not really have an upper limit. On nlmon_is_valid_mtu()
/linux-4.4.14/arch/x86/math-emu/
H A Dfpu_system.h94 past the upper boundary of a legal code area. */
/linux-4.4.14/net/dccp/
H A Dqpolicy.c36 * If tx_qlen is different from 0 and the queue has reached its upper bound
/linux-4.4.14/fs/
H A Dstack.c28 * upper level. fsstack_copy_inode_size()
/linux-4.4.14/include/media/davinci/
H A Dvpbe_types.h44 * @upper_margin: upper margin of the display
/linux-4.4.14/include/uapi/asm-generic/
H A Dioctl.h6 * upper 16 bits.
/linux-4.4.14/arch/sparc/include/asm/
H A Decc.h92 * You get the upper 4 bits of the physical address from the
/linux-4.4.14/arch/blackfin/include/asm/
H A Dbfrom.h72 #define OTP_LOWER_HALF 0x00000000 /* select upper/lower 64-bit half (bit 0) */
/linux-4.4.14/security/selinux/ss/
H A Dpolicydb.c1679 struct user_datum *upper, *user; user_bounds_sanity_check() local
1683 upper = user = datum; user_bounds_sanity_check()
1684 while (upper->bounds) { user_bounds_sanity_check()
1695 upper = p->user_val_to_struct[upper->bounds - 1]; user_bounds_sanity_check()
1697 if (ebitmap_get_bit(&upper->roles, bit)) user_bounds_sanity_check()
1705 sym_name(p, SYM_USERS, upper->value - 1)); user_bounds_sanity_check()
1716 struct role_datum *upper, *role; role_bounds_sanity_check() local
1720 upper = role = datum; role_bounds_sanity_check()
1721 while (upper->bounds) { role_bounds_sanity_check()
1732 upper = p->role_val_to_struct[upper->bounds - 1]; role_bounds_sanity_check()
1734 if (ebitmap_get_bit(&upper->types, bit)) role_bounds_sanity_check()
1742 sym_name(p, SYM_ROLES, upper->value - 1)); role_bounds_sanity_check()
1753 struct type_datum *upper; type_bounds_sanity_check() local
1757 upper = datum; type_bounds_sanity_check()
1758 while (upper->bounds) { type_bounds_sanity_check()
1766 upper = flex_array_get_ptr(p->type_val_to_struct_array, type_bounds_sanity_check()
1767 upper->bounds - 1); type_bounds_sanity_check()
1768 BUG_ON(!upper); type_bounds_sanity_check()
1770 if (upper->attribute) { type_bounds_sanity_check()
1774 sym_name(p, SYM_TYPES, upper->value - 1)); type_bounds_sanity_check()
/linux-4.4.14/net/irda/
H A Dirlap_event.c344 /* Always switch state before calling upper layers */ irlap_state_ndm()
638 /* Always switch state before calling upper layers */ irlap_state_query()
691 /* Always switch state before calling upper layers */ irlap_state_reply()
730 * CONN, we have received a SNRM command and is waiting for the upper
848 /* Always switch state before calling upper layers */ irlap_state_setup()
1148 /* Always switch state before calling upper layers */ irlap_state_pclose()
1163 /* Always switch state before calling upper layers */ irlap_state_pclose()
1551 /* Always switch state before calling upper layers */ irlap_state_nrm_p()
1662 /* Always switch state before calling upper layers */ irlap_state_reset()
1697 /* Always switch state before calling upper layers */ irlap_state_reset()
2164 /* Always switch state before calling upper layers */ irlap_state_nrm_s()
2170 /* Always switch state before calling upper layers */ irlap_state_nrm_s()
2223 /* Always switch state before calling upper layers */ irlap_state_sclose()
2245 /* Always switch state before calling upper layers */ irlap_state_sclose()
2254 /* Always switch state before calling upper layers */ irlap_state_sclose()
/linux-4.4.14/drivers/scsi/libfc/
H A Dfc_libfc.c265 * fc_fc4_register_provider() - register FC-4 upper-level provider.
290 * fc_fc4_deregister_provider() - deregister FC-4 upper-level provider.
/linux-4.4.14/drivers/spi/
H A Dspi-falcon.c120 case state_init: /* detect phase of upper layer sequence */ falcon_sflash_xfer()
186 * from upper layer falcon_sflash_xfer()
/linux-4.4.14/drivers/uwb/i1480/dfu/
H A Di1480-dfu.h98 * Allocated by the upper layers i1480_fw_upload().
101 * received by the hw. Allocated by the upper layers
/linux-4.4.14/drivers/ide/
H A Damd74xx.c79 * to a desired transfer mode. It also can be called by upper layers.
108 * amd_set_pio_mode() is a callback from upper layers for PIO-only tuning.
/linux-4.4.14/drivers/ipack/devices/
H A Dscc2698.h57 u8 d6, ctur; /* Counter timer upper register of block */
75 u8 d6, ctu; /* Counter timer upper register of block */
/linux-4.4.14/drivers/media/usb/gspca/m5602/
H A Dm5602_ov9650.h227 /* Limit the AGC/AEC stable upper region */
258 /* Set the AGC/AEC stable region upper limit */
/linux-4.4.14/drivers/net/wireless/libertas/
H A Drx.c50 * to kernel/upper layer
208 * it to kernel/upper layer
H A Dcmdresp.c18 * reports disconnect to upper layer, clean tx/rx packets,
44 /* report disconnect to upper layer */ lbs_mac_event_disconnected()
/linux-4.4.14/arch/xtensa/lib/
H A Dpci-auto.c121 * upper 32 bits of the bar and force it to locate pciauto_setup_bars()
249 * Fetch our I/O and memory space upper boundaries used pciauto_bus_scan()

Completed in 7423 milliseconds

12345678