Home
last modified time | relevance | path

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

12345

/Linux-v6.1/tools/perf/util/
Dordered-events.c18 static void queue_event(struct ordered_events *oe, struct ordered_event *new) in queue_event() argument
20 struct ordered_event *last = oe->last; in queue_event()
24 ++oe->nr_events; in queue_event()
25 oe->last = new; in queue_event()
27 pr_oe_time2(timestamp, "queue_event nr_events %u\n", oe->nr_events); in queue_event()
30 list_add(&new->list, &oe->events); in queue_event()
31 oe->max_timestamp = timestamp; in queue_event()
43 if (p == &oe->events) { in queue_event()
44 list_add_tail(&new->list, &oe->events); in queue_event()
45 oe->max_timestamp = timestamp; in queue_event()
[all …]
Dordered-events.h28 typedef int (*ordered_events__deliver_t)(struct ordered_events *oe,
56 int ordered_events__queue(struct ordered_events *oe, union perf_event *event,
58 void ordered_events__delete(struct ordered_events *oe, struct ordered_event *event);
59 int ordered_events__flush(struct ordered_events *oe, enum oe_flush how);
60 int ordered_events__flush_time(struct ordered_events *oe, u64 timestamp);
61 void ordered_events__init(struct ordered_events *oe, ordered_events__deliver_t deliver,
63 void ordered_events__free(struct ordered_events *oe);
64 void ordered_events__reinit(struct ordered_events *oe);
65 u64 ordered_events__first_time(struct ordered_events *oe);
68 void ordered_events__set_alloc_size(struct ordered_events *oe, u64 size) in ordered_events__set_alloc_size() argument
[all …]
/Linux-v6.1/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-v6.1/include/net/tc_act/
Dtc_gate.h111 struct action_gate_entry *oe; in tcf_gate_get_list() local
126 oe = kcalloc(num_entries, sizeof(*oe), GFP_ATOMIC); in tcf_gate_get_list()
127 if (!oe) in tcf_gate_get_list()
132 oe[i].gate_state = entry->gate_state; in tcf_gate_get_list()
133 oe[i].interval = entry->interval; in tcf_gate_get_list()
134 oe[i].ipv = entry->ipv; in tcf_gate_get_list()
135 oe[i].maxoctets = entry->maxoctets; in tcf_gate_get_list()
139 return oe; in tcf_gate_get_list()
/Linux-v6.1/fs/overlayfs/
Dutil.c89 struct ovl_entry *oe = kzalloc(size, GFP_KERNEL); in ovl_alloc_entry() local
91 if (oe) in ovl_alloc_entry()
92 oe->numlower = numlower; in ovl_alloc_entry()
94 return oe; in ovl_alloc_entry()
106 struct ovl_entry *oe = OVL_E(dentry); in ovl_dentry_update_reval() local
111 for (i = 0; i < oe->numlower; i++) in ovl_dentry_update_reval()
112 flags |= oe->lowerstack[i].dentry->d_flags; in ovl_dentry_update_reval()
130 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_type() local
139 if (oe->numlower) { in ovl_path_type()
147 if (oe->numlower > 1) in ovl_path_type()
[all …]
Dexport.c79 struct ovl_entry *oe = OVL_E(dentry); in ovl_connectable_layer() local
83 return oe->numlower; in ovl_connectable_layer()
94 return oe->lowerstack[0].layer->idx; in ovl_connectable_layer()
289 struct ovl_entry *oe; in ovl_obtain_alias() local
317 oe = ovl_alloc_entry(lower ? 1 : 0); in ovl_obtain_alias()
318 if (!oe) in ovl_obtain_alias()
322 oe->lowerstack->dentry = dget(lower); in ovl_obtain_alias()
323 oe->lowerstack->layer = lowerpath->layer; in ovl_obtain_alias()
325 dentry->d_fsdata = oe; in ovl_obtain_alias()
345 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_real_at() local
[all …]
Dsuper.c57 static void ovl_entry_stack_free(struct ovl_entry *oe) in ovl_entry_stack_free() argument
61 for (i = 0; i < oe->numlower; i++) in ovl_entry_stack_free()
62 dput(oe->lowerstack[i].dentry); in ovl_entry_stack_free()
72 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_release() local
74 if (oe) { in ovl_dentry_release()
75 ovl_entry_stack_free(oe); in ovl_dentry_release()
76 kfree_rcu(oe, rcu); in ovl_dentry_release()
141 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_revalidate_common() local
150 for (i = 0; ret > 0 && i < oe->numlower; i++) { in ovl_dentry_revalidate_common()
151 ret = ovl_revalidate_real(oe->lowerstack[i].dentry, flags, in ovl_dentry_revalidate_common()
[all …]
Dnamei.c792 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_next() local
798 return oe->numlower ? 1 : -1; in ovl_path_next()
801 BUG_ON(idx > oe->numlower); in ovl_path_next()
802 path->dentry = oe->lowerstack[idx - 1].dentry; in ovl_path_next()
803 path->mnt = oe->lowerstack[idx - 1].layer->mnt; in ovl_path_next()
805 return (idx < oe->numlower) ? idx + 1 : -1; in ovl_path_next()
832 struct ovl_entry *oe; in ovl_lookup() local
1069 oe = ovl_alloc_entry(ctr); in ovl_lookup()
1071 if (!oe) in ovl_lookup()
1074 memcpy(oe->lowerstack, stack, sizeof(struct ovl_path) * ctr); in ovl_lookup()
[all …]
/Linux-v6.1/drivers/comedi/drivers/
Ddt2817.c39 unsigned int oe = 0; in dt2817_dio_insn_config() local
57 oe |= 0x1; in dt2817_dio_insn_config()
59 oe |= 0x2; in dt2817_dio_insn_config()
61 oe |= 0x4; in dt2817_dio_insn_config()
63 oe |= 0x8; in dt2817_dio_insn_config()
65 outb(oe, dev->iobase + DT2817_CR); in dt2817_dio_insn_config()
/Linux-v6.1/lib/lzo/
Dlzo1x_decompress_safe.c98 unsigned char *oe = op + t; in lzo1x_decompress_safe() local
108 op = oe; in lzo1x_decompress_safe()
215 unsigned char *oe = op + t; in lzo1x_decompress_safe() local
224 } while (op < oe); in lzo1x_decompress_safe()
225 op = oe; in lzo1x_decompress_safe()
237 } while (op < oe); in lzo1x_decompress_safe()
242 unsigned char *oe = op + t; in lzo1x_decompress_safe() local
250 } while (op < oe); in lzo1x_decompress_safe()
/Linux-v6.1/drivers/gpu/drm/bridge/
Dthc63lvd1024.c32 struct gpio_desc *oe; member
97 gpiod_set_value(thc63->oe, 1); in thc63_enable()
105 gpiod_set_value(thc63->oe, 0); in thc63_disable()
175 thc63->oe = devm_gpiod_get_optional(thc63->dev, "oe", GPIOD_OUT_LOW); in thc63_gpio_init()
176 if (IS_ERR(thc63->oe)) { in thc63_gpio_init()
178 PTR_ERR(thc63->oe)); in thc63_gpio_init()
179 return PTR_ERR(thc63->oe); in thc63_gpio_init()
/Linux-v6.1/fs/ntfs3/
Dfslog.c2969 struct OPEN_ATTR_ENRTY *oe = NULL; in find_loaded_attr() local
2971 while ((oe = enum_rstbl(log->open_attr_tbl, oe))) { in find_loaded_attr()
2974 if (ino_get(&oe->ref) != rno) in find_loaded_attr()
2977 op_attr = (struct OpenAttr *)oe->ptr; in find_loaded_attr()
3033 static int do_action(struct ntfs_log *log, struct OPEN_ATTR_ENRTY *oe, in do_action() argument
3066 oa = oe->ptr; in do_action()
3174 t32 = le32_to_cpu(oe->bytes_per_index); in do_action()
3758 struct OPEN_ATTR_ENRTY *oe; in log_replay() local
4323 oe = NULL; in log_replay()
4324 while ((oe = enum_rstbl(oatbl, oe))) { in log_replay()
[all …]
/Linux-v6.1/arch/arm/boot/dts/
Domap3430-sdp.dts69 gpmc,oe-on-ns = <54>;
70 gpmc,oe-off-ns = <168>;
119 gpmc,oe-on-ns = <6>;
120 gpmc,oe-off-ns = <48>;
165 gpmc,oe-on-ns = <30>;
166 gpmc,oe-off-ns = <84>;
Domap2420-h4.dts37 gpmc,oe-on-ns = <60>;
38 gpmc,oe-off-ns = <120>;
Domap3-overo-tobiduo-common.dtsi32 gpmc,oe-on-ns = <0>;
33 gpmc,oe-off-ns = <42>;
Domap2430-sdp.dts54 gpmc,oe-on-ns = <60>;
55 gpmc,oe-off-ns = <169>;
Domap-gpmc-smsc911x.dtsi36 gpmc,oe-on-ns = <45>;
37 gpmc,oe-off-ns = <140>;
Domap-gpmc-smsc9221.dtsi39 gpmc,oe-on-ns = <0>;
40 gpmc,oe-off-ns = <42>;
Domap2420-n8x0-common.dtsi70 gpmc,oe-on-ns = <27>;
71 gpmc,oe-off-ns = <127>;
Domap-zoom-common.dtsi38 gpmc,oe-on-ns = <45>;
39 gpmc,oe-off-ns = <145>;
Domap3-sb-t35.dtsi119 gpmc,oe-on-ns = <45>;
120 gpmc,oe-off-ns = <140>;
/Linux-v6.1/arch/mips/boot/dts/cavium-octeon/
Docteon_3xxx.dtsi133 cavium,t-oe = <60>;
150 cavium,t-oe = <320>;
167 cavium,t-oe = <125>;
184 cavium,t-oe = <270>;
/Linux-v6.1/fs/ext2/
Dxattr.c525 struct mb_cache_entry *oe; in ext2_xattr_set() local
527 oe = mb_cache_entry_delete_or_get(EA_BLOCK_CACHE(inode), in ext2_xattr_set()
529 if (!oe) { in ext2_xattr_set()
536 mb_cache_entry_put(EA_BLOCK_CACHE(inode), oe); in ext2_xattr_set()
664 struct mb_cache_entry *oe; in ext2_xattr_release_block() local
670 oe = mb_cache_entry_delete_or_get(ea_block_cache, hash, in ext2_xattr_release_block()
672 if (oe) { in ext2_xattr_release_block()
678 mb_cache_entry_wait_unused(oe); in ext2_xattr_release_block()
679 mb_cache_entry_put(ea_block_cache, oe); in ext2_xattr_release_block()
/Linux-v6.1/drivers/gpio/
Dgpio-tegra.c77 u32 oe[4]; member
216 u32 cnf, oe; in tegra_gpio_get_direction() local
222 oe = tegra_gpio_readl(tgi, GPIO_OE(tgi, offset)); in tegra_gpio_get_direction()
224 if (oe & pin_mask) in tegra_gpio_get_direction()
473 for (p = 0; p < ARRAY_SIZE(bank->oe); p++) { in tegra_gpio_resume()
488 tegra_gpio_writel(tgi, bank->oe[p], in tegra_gpio_resume()
508 for (p = 0; p < ARRAY_SIZE(bank->oe); p++) { in tegra_gpio_suspend()
515 bank->oe[p] = tegra_gpio_readl(tgi, in tegra_gpio_suspend()
/Linux-v6.1/Documentation/devicetree/bindings/mips/cavium/
Dbootbus.txt36 - cavium,t-oe: A cell specifying the OE timing (in nS).
90 cavium,t-oe = <60>;
110 cavium,t-oe = <270>;

12345