Home
last modified time | relevance | path

Searched refs:oe (Results 1 – 9 of 9) sorted by relevance

/linux-4.19.296/fs/omfs/
Dfile.c22 struct omfs_extent *oe = (struct omfs_extent *) &bh->b_data[offset]; in omfs_make_empty_table() local
24 oe->e_next = ~cpu_to_be64(0ULL); in omfs_make_empty_table()
25 oe->e_extent_count = cpu_to_be32(1), in omfs_make_empty_table()
26 oe->e_fill = cpu_to_be32(0x22), in omfs_make_empty_table()
27 oe->e_entry.e_cluster = ~cpu_to_be64(0ULL); in omfs_make_empty_table()
28 oe->e_entry.e_blocks = ~cpu_to_be64(0ULL); in omfs_make_empty_table()
34 struct omfs_extent *oe; in omfs_shrink_inode() local
56 oe = (struct omfs_extent *)(&bh->b_data[OMFS_EXTENT_START]); in omfs_shrink_inode()
64 extent_count = be32_to_cpu(oe->e_extent_count); in omfs_shrink_inode()
70 next = be64_to_cpu(oe->e_next); in omfs_shrink_inode()
[all …]
/linux-4.19.296/fs/overlayfs/
Dutil.c101 struct ovl_entry *oe = kzalloc(size, GFP_KERNEL); in ovl_alloc_entry() local
103 if (oe) in ovl_alloc_entry()
104 oe->numlower = numlower; in ovl_alloc_entry()
106 return oe; in ovl_alloc_entry()
126 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_type() local
135 if (oe->numlower) { in ovl_path_type()
143 if (oe->numlower > 1) in ovl_path_type()
159 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_lower() local
161 if (oe->numlower) { in ovl_path_lower()
162 path->mnt = oe->lowerstack[0].layer->mnt; in ovl_path_lower()
[all …]
Dsuper.c59 static void ovl_entry_stack_free(struct ovl_entry *oe) in ovl_entry_stack_free() argument
63 for (i = 0; i < oe->numlower; i++) in ovl_entry_stack_free()
64 dput(oe->lowerstack[i].dentry); in ovl_entry_stack_free()
74 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_release() local
76 if (oe) { in ovl_dentry_release()
77 ovl_entry_stack_free(oe); in ovl_dentry_release()
78 kfree_rcu(oe, rcu); in ovl_dentry_release()
124 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_revalidate() local
128 for (i = 0; i < oe->numlower; i++) { in ovl_dentry_revalidate()
129 struct dentry *d = oe->lowerstack[i].dentry; in ovl_dentry_revalidate()
[all …]
Dexport.c82 struct ovl_entry *oe = OVL_E(dentry); in ovl_connectable_layer() local
86 return oe->numlower; in ovl_connectable_layer()
97 return oe->lowerstack[0].layer->idx; in ovl_connectable_layer()
301 struct ovl_entry *oe; in ovl_obtain_alias() local
327 oe = ovl_alloc_entry(lower ? 1 : 0); in ovl_obtain_alias()
328 if (!oe) in ovl_obtain_alias()
332 oe->lowerstack->dentry = dget(lower); in ovl_obtain_alias()
333 oe->lowerstack->layer = lowerpath->layer; in ovl_obtain_alias()
335 dentry->d_fsdata = oe; in ovl_obtain_alias()
351 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_real_at() local
[all …]
Dnamei.c765 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_next() local
771 return oe->numlower ? 1 : -1; in ovl_path_next()
774 BUG_ON(idx > oe->numlower); in ovl_path_next()
775 path->dentry = oe->lowerstack[idx - 1].dentry; in ovl_path_next()
776 path->mnt = oe->lowerstack[idx - 1].layer->mnt; in ovl_path_next()
778 return (idx < oe->numlower) ? idx + 1 : -1; in ovl_path_next()
805 struct ovl_entry *oe; in ovl_lookup() local
1034 oe = ovl_alloc_entry(ctr); in ovl_lookup()
1036 if (!oe) in ovl_lookup()
1039 memcpy(oe->lowerstack, stack, sizeof(struct ovl_path) * ctr); in ovl_lookup()
[all …]
/linux-4.19.296/lib/lzo/
Dlzo1x_decompress_safe.c87 unsigned char *oe = op + t; in lzo1x_decompress_safe() local
97 op = oe; in lzo1x_decompress_safe()
187 unsigned char *oe = op + t; in lzo1x_decompress_safe() local
196 } while (op < oe); in lzo1x_decompress_safe()
197 op = oe; in lzo1x_decompress_safe()
209 } while (op < oe); in lzo1x_decompress_safe()
214 unsigned char *oe = op + t; in lzo1x_decompress_safe() local
222 } while (op < oe); in lzo1x_decompress_safe()
/linux-4.19.296/drivers/gpio/
Dgpio-tegra.c77 u32 oe[4]; member
202 u32 cnf, oe; in tegra_gpio_get_direction() local
208 oe = tegra_gpio_readl(tgi, GPIO_OE(tgi, offset)); in tegra_gpio_get_direction()
210 return !(oe & pin_mask); in tegra_gpio_get_direction()
418 for (p = 0; p < ARRAY_SIZE(bank->oe); p++) { in tegra_gpio_resume()
433 tegra_gpio_writel(tgi, bank->oe[p], in tegra_gpio_resume()
457 for (p = 0; p < ARRAY_SIZE(bank->oe); p++) { in tegra_gpio_suspend()
464 bank->oe[p] = tegra_gpio_readl(tgi, in tegra_gpio_suspend()
Dgpio-omap.c41 u32 oe; member
113 bank->context.oe = l; in omap_set_gpio_direction()
1143 bank->context.oe = readl_relaxed(bank->base + bank->regs->direction); in omap_gpio_mod_init()
1596 p->context.oe = readl_relaxed(base + regs->direction); in omap_gpio_init_context()
1632 writel_relaxed(bank->context.oe, bank->base + bank->regs->direction); in omap_gpio_restore_context()
/linux-4.19.296/fs/ext4/
Dxattr.c455 struct mb_cache_entry *oe; in ext4_evict_ea_inode() local
460 while ((oe = mb_cache_entry_delete_or_get(EA_INODE_CACHE(inode), in ext4_evict_ea_inode()
462 mb_cache_entry_wait_unused(oe); in ext4_evict_ea_inode()
463 mb_cache_entry_put(EA_INODE_CACHE(inode), oe); in ext4_evict_ea_inode()
1281 struct mb_cache_entry *oe; in ext4_xattr_release_block() local
1283 oe = mb_cache_entry_delete_or_get(ea_block_cache, hash, in ext4_xattr_release_block()
1285 if (oe) { in ext4_xattr_release_block()
1287 mb_cache_entry_wait_unused(oe); in ext4_xattr_release_block()
1288 mb_cache_entry_put(ea_block_cache, oe); in ext4_xattr_release_block()
1940 struct mb_cache_entry *oe; in ext4_xattr_block_set() local
[all …]