| /OK3568_Linux_fs/u-boot/include/ |
| H A D | fsl_memac.h | 18 u32 mac_addr_1; /* Upper 16 bits of 48-bit MAC address */ 41 u32 rx_eoct_u; /* Rx ethernet octests upper */ 43 u32 rx_oct_u; /* Rx octests upper */ 45 u32 rx_align_err_u; /* Rx alignment error upper */ 46 u32 rx_pause_frame_l; /* Rx valid pause frame upper */ 47 u32 rx_pause_frame_u; /* Rx valid pause frame upper */ 49 u32 rx_frame_u; /* Rx frame counter upper */ 51 u32 rx_frame_crc_err_u; /* Rx frame check sequence error upper */ 53 u32 rx_vlan_u; /* Rx VLAN frame upper */ 55 u32 rx_err_u; /* Rx frame error upper */ [all …]
|
| H A D | fsl_tgec.h | 19 u32 mac_addr_1; /* Upper 16 bits of 48-bit MAC address */ 28 u32 mac_addr_3; /* Upper 16 bits of the 2nd 48-bit MAC addr */ 34 u32 tx_frame_u; /* Tx frame counter upper */ 36 u32 rx_frame_u; /* Rx frame counter upper */ 38 u32 rx_frame_crc_err_u; /* Rx frame check sequence error upper */ 40 u32 rx_align_err_u; /* Rx alignment error upper */ 42 u32 tx_pause_frame_u; /* Tx valid pause frame upper */ 44 u32 rx_pause_frame_u; /* Rx valid pause frame upper */ 45 u32 rx_pause_frame_l; /* Rx valid pause frame upper */ 46 u32 rx_long_err_u; /* Rx too long frame error upper */ [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/ |
| H A D | overlayfs.rst | 27 upper filesystem that is providing the object. Similarly st_ino will 85 Upper and Lower 88 An overlay filesystem combines two filesystems - an 'upper' filesystem 90 object in the 'upper' filesystem is visible while the object in the 92 merged with the 'upper' object. 94 It would be more correct to refer to an upper and lower 'directory 97 requirement that the root of a filesystem be given for either upper or 102 overlayfs. The upper filesystem will normally be writable and if it 113 upper and lower filesystems and refers to a non-directory in either, 114 then the lower object is hidden - the name refers only to the upper [all …]
|
| /OK3568_Linux_fs/kernel/fs/overlayfs/ |
| H A D | export.c | 41 * Before encoding a non-upper directory file handle from real layer N, we need 53 * copied up and renamed, upper dir /a will be indexed by lower dir /a from 93 /* We can get upper/overlay path from indexed/lower dentry */ in ovl_connectable_layer() 158 * encoding also after copy up. If non-pure upper is not indexed, then it was 160 * about staying consistent with pre copy up encoding and we encode an upper 161 * file handle. Overlay root dentry is a private case of non-indexed upper. 168 * Pure upper | U 169 * Non-indexed upper | U 170 * Indexed upper | L (*) 171 * Non-upper | L (*) [all …]
|
| H A D | namei.c | 174 * upper file handle could become stale when upper file is in ovl_decode_real_fh() 474 is_upper ? "upper" : "origin", real, in ovl_verify_set_fh() 479 /* Get upper dentry from index */ 483 struct dentry *upper; in ovl_index_upper() local 492 upper = ovl_decode_real_fh(fh, ovl_upper_mnt(ofs), true); in ovl_index_upper() 495 if (IS_ERR_OR_NULL(upper)) in ovl_index_upper() 496 return upper ?: ERR_PTR(-ESTALE); in ovl_index_upper() 498 if (!d_is_dir(upper)) { in ovl_index_upper() 499 pr_warn_ratelimited("invalid index upper (%pd2, upper=%pd2).\n", in ovl_index_upper() 500 index, upper); in ovl_index_upper() [all …]
|
| H A D | dir.c | 232 static int ovl_set_opaque_xerr(struct dentry *dentry, struct dentry *upper, in ovl_set_opaque_xerr() argument 237 err = ovl_check_setxattr(dentry, upper, OVL_XATTR_OPAQUE, "y", 1, xerr); in ovl_set_opaque_xerr() 247 * Fail with -EIO when trying to create opaque dir and upper doesn't in ovl_set_opaque() 255 * Common operations required to be done after creation of file on upper. 302 /* Force lookup of new upper hardlink to find its lower */ in ovl_instantiate() 366 struct dentry *upper; in ovl_clear_empty() local 387 upper = upperpath.dentry; in ovl_clear_empty() 388 if (upper->d_parent->d_inode != udir) in ovl_clear_empty() 396 err = ovl_copy_xattr(dentry->d_sb, upper, opaquedir); in ovl_clear_empty() 410 err = ovl_do_rename(wdir, opaquedir, udir, upper, RENAME_EXCHANGE); in ovl_clear_empty() [all …]
|
| H A D | copy_up.c | 333 struct dentry *upper) in ovl_set_origin() argument 341 * up and a pure upper inode. in ovl_set_origin() 350 * Do not fail when upper doesn't support xattrs. in ovl_set_origin() 352 err = ovl_check_setxattr(dentry, upper, OVL_XATTR_ORIGIN, fh->buf, in ovl_set_origin() 359 /* Store file handle of @upper dir in @index dir entry */ 360 static int ovl_set_upper_fh(struct ovl_fs *ofs, struct dentry *upper, in ovl_set_upper_fh() argument 366 fh = ovl_encode_real_fh(upper, true); in ovl_set_upper_fh() 382 struct dentry *upper) in ovl_create_index() argument 394 * to upper dir. in ovl_create_index() 415 err = ovl_set_upper_fh(OVL_FS(dentry->d_sb), upper, temp); in ovl_create_index() [all …]
|
| H A D | super.c | 147 struct dentry *upper; in ovl_dentry_revalidate_common() local 151 upper = ovl_dentry_upper(dentry); in ovl_dentry_revalidate_common() 152 if (upper) in ovl_dentry_revalidate_common() 153 ret = ovl_revalidate_real(upper, flags, weak); in ovl_dentry_revalidate_common() 266 /* Sync real dirty inodes in upper filesystem (if it exists) */ 312 * Get the filesystem statistics. As writes always target the upper layer 313 * filesystem pass the statfs to the upper filesystem (if it exists) 629 /* Workdir/index are useless in non-upper mount */ in ovl_parse_opt() 632 pr_info("option \"workdir=%s\" is useless in a non-upper mount, ignore\n", in ovl_parse_opt() 638 pr_info("option \"index=on\" is useless in a non-upper mount, ignore\n"); in ovl_parse_opt() [all …]
|
| H A D | inode.c | 116 * (upper fsid is 0). The lowest xinobit is reserved for mapping in ovl_map_dev_ino() 202 * upper files, so we cannot use the lower origin st_ino in ovl_getattr() 212 * upper hardlink is not broken and that a redirected in ovl_getattr() 239 * no origin on upper, we can end up here. in ovl_getattr() 266 * Return the overlay inode nlinks for indexed upper inodes. in ovl_getattr() 267 * Overlay inode nlink counts the union of the upper hardlinks in ovl_getattr() 268 * and non-covered lower hardlinks. It does not include the upper in ovl_getattr() 558 * upper fs: 620 * To avoid ino collision with legitimate xino values from upper in ovl_map_ino() 685 * With inodes index enabled, an overlay inode nlink counts the union of upper [all …]
|
| /OK3568_Linux_fs/u-boot/arch/powerpc/lib/ |
| H A D | bat_rw.c | 20 int write_bat (ppc_bat_t bat, unsigned long upper, unsigned long lower) in write_bat() argument 29 mtspr (DBAT0U, upper); in write_bat() 34 mtspr (IBAT0U, upper); in write_bat() 38 mtspr (DBAT1U, upper); in write_bat() 43 mtspr (IBAT1U, upper); in write_bat() 47 mtspr (DBAT2U, upper); in write_bat() 52 mtspr (IBAT2U, upper); in write_bat() 56 mtspr (DBAT3U, upper); in write_bat() 61 mtspr (IBAT3U, upper); in write_bat() 66 mtspr (DBAT4U, upper); in write_bat() [all …]
|
| /OK3568_Linux_fs/kernel/arch/parisc/kernel/ |
| H A D | signal32.c | 45 sure to clear the upper 32-bits */ in restore_sigcontext32() 52 /* Load upper half */ in restore_sigcontext32() 66 /* Load upper half */ in restore_sigcontext32() 69 DBG(2,"restore_sigcontext32: upper half of iaoq[0] = %#lx\n", compat_regt); in restore_sigcontext32() 74 /* Load upper half */ in restore_sigcontext32() 77 DBG(2,"restore_sigcontext32: upper half of iaoq[1] = %#lx\n", compat_regt); in restore_sigcontext32() 84 /* Load the upper half for iasq */ in restore_sigcontext32() 87 DBG(2,"restore_sigcontext32: upper half of iasq[0] = %#lx\n", compat_regt); in restore_sigcontext32() 90 /* Load the upper half for iasq */ in restore_sigcontext32() 93 DBG(2,"restore_sigcontext32: upper half of iasq[1] = %#lx\n", compat_regt); in restore_sigcontext32() [all …]
|
| /OK3568_Linux_fs/kernel/fs/btrfs/ |
| H A D | backref.h | 175 /* List of upper level edges, which link this node to its parents */ 176 struct list_head upper; member 197 * 1 if corresponding block has been COWed but some upper level block 212 #define UPPER 1 macro 215 * Represent an edge connecting upper and lower backref nodes. 219 * list[LOWER] is linked to btrfs_backref_node::upper of lower level 220 * node, and list[UPPER] is linked to btrfs_backref_node::lower of 221 * upper level node. 223 * Also, build_backref_tree() uses list[UPPER] for pending edges, before 224 * linking list[UPPER] to its upper level nodes. [all …]
|
| H A D | backref.c | 2567 INIT_LIST_HEAD(&node->upper); 2590 * upper edges and any uncached nodes in the path. 2598 struct btrfs_backref_node *upper; local 2605 while (!list_empty(&node->upper)) { 2606 edge = list_entry(node->upper.next, struct btrfs_backref_edge, 2608 upper = edge->node[UPPER]; 2610 list_del(&edge->list[UPPER]); 2617 if (list_empty(&upper->lower)) { 2618 list_add_tail(&upper->lower, &cache->leaves); 2619 upper->lowest = 1; [all …]
|
| /OK3568_Linux_fs/kernel/net/tipc/ |
| H A D | name_table.c | 53 * @upper: service range upper bound 55 * @max: largest 'upper' in this node subtree 63 u32 upper; member 90 #define service_range_upper(sr) ((sr)->upper) 99 ((sr)->lower <= (end) && (sr)->upper >= (start)) in RB_DECLARE_CALLBACKS_MAX() 222 static struct publication *tipc_publ_create(u32 type, u32 lower, u32 upper, in tipc_publ_create() argument 233 publ->upper = upper; in tipc_publ_create() 272 u32 lower, u32 upper) in tipc_service_find_range() argument 276 service_range_foreach_match(sr, sc, lower, upper) { in tipc_service_find_range() 278 if (sr->lower == lower && sr->upper == upper) in tipc_service_find_range() [all …]
|
| H A D | name_table.h | 56 * @upper: name sequence upper bound 79 u32 upper; member 116 void tipc_nametbl_mc_lookup(struct net *net, u32 type, u32 lower, u32 upper, 121 u32 upper, struct tipc_nlist *nodes); 126 u32 upper, u32 scope, u32 port, 128 int tipc_nametbl_withdraw(struct net *net, u32 type, u32 lower, u32 upper, 131 u32 lower, u32 upper, u32 scope, 134 u32 lower, u32 upper,
|
| /OK3568_Linux_fs/kernel/arch/mips/include/asm/ |
| H A D | maar.h | 32 * @upper: The highest address that the MAAR pair will affect. Must be 41 phys_addr_t upper, unsigned attrs) in write_maar_pair() argument 45 BUG_ON(((upper & 0xffff) != 0xffff) in write_maar_pair() 46 || ((upper & ~0xffffull) & ~(MIPS_MAAR_ADDR << 4))); in write_maar_pair() 52 * Write the upper address & attributes (both MIPS_MAAR_VL and in write_maar_pair() 57 write_c0_maar(((upper >> 4) & MIPS_MAAR_ADDR) | attrs); in write_maar_pair() 60 upper >>= MIPS_MAARX_ADDR_SHIFT; in write_maar_pair() 61 writex_c0_maar(((upper >> 4) & MIPS_MAARX_ADDR) | MIPS_MAARX_VH); in write_maar_pair() 90 * @upper: The highest address that the MAAR pair will affect. Must be 97 * addresses from lower to upper inclusive. [all …]
|
| /OK3568_Linux_fs/kernel/drivers/power/supply/ |
| H A D | bq27xxx_battery_hdq.c | 45 int upper, lower; in bq27xxx_battery_hdq_read() local 51 * lower and the upper part in bq27xxx_battery_hdq_read() 53 upper = w1_bq27000_read(sl, reg + 1); in bq27xxx_battery_hdq_read() 55 temp = upper; in bq27xxx_battery_hdq_read() 56 if (upper < 0) in bq27xxx_battery_hdq_read() 57 return upper; in bq27xxx_battery_hdq_read() 63 upper = w1_bq27000_read(sl, reg + 1); in bq27xxx_battery_hdq_read() 64 } while (temp != upper && --timeout); in bq27xxx_battery_hdq_read() 69 return (upper << 8) | lower; in bq27xxx_battery_hdq_read()
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/ext4/ |
| H A D | group_descr.rst | 116 - Upper 32-bits of location of block bitmap. 120 - Upper 32-bits of location of inodes bitmap. 124 - Upper 32-bits of location of inodes table. 128 - Upper 16-bits of free block count. 132 - Upper 16-bits of free inode count. 136 - Upper 16-bits of directory count. 140 - Upper 16-bits of unused inode count. 144 - Upper 32-bits of location of snapshot exclusion bitmap. 148 - Upper 16-bits of the block bitmap checksum. 152 - Upper 16-bits of the inode bitmap checksum.
|
| /OK3568_Linux_fs/kernel/fs/ext4/ |
| H A D | inode-test.c | 19 * For constructing the nonnegative timestamp upper bound value. 30 * For constructing the negative timestamp upper bound value. 35 * Upper bound for nanoseconds value supported by the encoding. 45 "1969-12-31 Upper bound of 32bit < 0 timestamp, no extra bits" 49 "2038-01-19 Upper bound of 32bit >=0 timestamp, no extra bits" 53 "2106-02-07 Upper bound of 32bit <0 timestamp, lo extra sec bit on" 57 "2174-02-25 Upper bound of 32bit >=0 timestamp, lo extra sec bit on" 61 "2242-03-16 Upper bound of 32bit <0 timestamp, hi extra sec bit on" 65 "2310-04-04 Upper bound of 32bit >=0 timestamp, hi extra sec bit on" 67 "2310-04-04 Upper bound of 32bit>=0 timestamp, hi extra sec bit 1. 1 ns" [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm/kernel/ |
| H A D | module.c | 88 u32 upper, lower, sign, j1, j2; in apply_relocate() local 224 upper = __mem_to_opcode_thumb16(*(u16 *)loc); in apply_relocate() 232 * S = upper[10] = offset[24] in apply_relocate() 235 * imm10 = upper[9:0] = offset[21:12] in apply_relocate() 240 sign = (upper >> 10) & 1; in apply_relocate() 245 ((upper & 0x03ff) << 12) | in apply_relocate() 274 upper = (u16)((upper & 0xf800) | (sign << 10) | in apply_relocate() 280 *(u16 *)loc = __opcode_to_mem_thumb16(upper); in apply_relocate() 286 upper = __mem_to_opcode_thumb16(*(u16 *)loc); in apply_relocate() 292 * i = upper[10] in apply_relocate() [all …]
|
| /OK3568_Linux_fs/u-boot/lib/ |
| H A D | addr_map.c | 21 u64 base, upper, addr; in addrmap_virt_to_phys() local 28 upper = (u64)(address_map[i].size) + base - 1; in addrmap_virt_to_phys() 30 if (addr >= base && addr <= upper) { in addrmap_virt_to_phys() 43 phys_addr_t base, upper; in addrmap_phys_to_virt() local 49 upper = address_map[i].size + base - 1; in addrmap_phys_to_virt() 51 if (paddr >= base && paddr <= upper) { in addrmap_phys_to_virt()
|
| /OK3568_Linux_fs/kernel/drivers/video/fbdev/ |
| H A D | arcfb.c | 247 static void arcfb_lcd_update_page(struct arcfb_par *par, unsigned int upper, in arcfb_lcd_update_page() argument 257 yindex = upper >> 6; in arcfb_lcd_update_page() 260 ks108_set_yaddr(par, chipindex, upper/8); in arcfb_lcd_update_page() 264 (upper * linesize); in 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; in arcfb_lcd_update_vert() local 305 upper = top; in arcfb_lcd_update_vert() 310 arcfb_lcd_update_page(par, upper, left, right, 8); in arcfb_lcd_update_vert() 311 upper = lower + 1; in arcfb_lcd_update_vert() [all …]
|
| /OK3568_Linux_fs/kernel/net/llc/ |
| H A D | llc_if.c | 2 * 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 71 * llc_establish_connection - Called by upper layer to establish a conn 77 * Upper layer calls this to establish an LLC connection with a remote 80 * establishment will inform to upper layer via calling it's confirm 121 * llc_send_disc - Called by upper layer to close a connection 124 * Upper layer calls this when it wants to close an established LLC
|
| /OK3568_Linux_fs/external/xserver/hw/xwin/glx/ |
| H A D | gen_gl_wrappers.py | 168 … self.outFile.write( ' PRERESOLVE(PFN' + funcname.upper() + 'PROC, "' + funcname + '");\n') 184 self.outFile.write('RESOLVE_DECL(PFN' + name.upper() + 'PROC);\n') 230 …ile.write(' if (glxWinDebugSettings.enable%scallTrace) ErrorF("%s\\n");\n'%(prefix.upper(), name)) 247 self.outFile.write(' RESOLVE(PFN%sPROC, "%s");\n'%(name.upper(), name)) 251 …ile.write(' if (glxWinDebugSettings.enable%scallTrace) ErrorF("%s\\n");\n'%(prefix.upper(), name)) 254 self.outFile.write(" RESOLVED_PROC(PFN%sPROC)( """%(name.upper())) 256 self.outFile.write(' RESOLVE_RET(PFN%sPROC, "%s", FALSE);\n'%(name.upper(), name)) 260 …ile.write(' if (glxWinDebugSettings.enable%scallTrace) ErrorF("%s\\n");\n'%(prefix.upper(), name)) 263 self.outFile.write(" return RESOLVED_PROC(PFN%sPROC)("%(name.upper())) 322 self.outFile.write(' RESOLVE(PFN%sPROC, "%s");\n'%(name.upper(), name)) [all …]
|
| /OK3568_Linux_fs/kernel/arch/m68k/include/asm/ |
| H A D | amigahw.h | 280 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 */ [all …]
|