/linux-6.3-rc2/tools/perf/util/ |
A D | ordered-events.c | 25 oe->last = new; in queue_event() 69 if (oe->cur_alloc_size < oe->max_alloc_size) { in __dup_event() 144 new = &oe->buffer->event[oe->buffer_idx]; in alloc_event() 155 oe->cur_alloc_size, size, oe->max_alloc_size); in alloc_event() 158 list_add(&oe->buffer->list, &oe->to_free); in alloc_event() 229 u64 last_ts = oe->last ? oe->last->timestamp : 0ULL; in do_flush() 245 ret = oe->deliver(oe, iter); in do_flush() 328 oe->next_flush = oe->max_timestamp; in __ordered_events__flush() 400 ordered_events_buffer__free(oe->buffer, oe->buffer_idx, oe); in ordered_events__free() 415 memset(oe, '\0', sizeof(*oe)); in ordered_events__reinit() [all …]
|
A D | ordered-events.h | 28 typedef int (*ordered_events__deliver_t)(struct ordered_events *oe, 56 int ordered_events__queue(struct ordered_events *oe, union perf_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); 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 70 oe->max_alloc_size = size; in ordered_events__set_alloc_size() 76 oe->copy_on_queue = copy; in ordered_events__set_copy_on_queue() [all …]
|
/linux-6.3-rc2/fs/omfs/ |
A D | file.c | 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() 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 70 next = be64_to_cpu(oe->e_next); in omfs_shrink_inode() 71 entry = &oe->e_entry; in omfs_shrink_inode() 179 be32_add_cpu(&oe->e_extent_count, 1); in omfs_grow_extent() 226 struct omfs_extent *oe; in omfs_get_block() local 247 next = be64_to_cpu(oe->e_next); in omfs_get_block() [all …]
|
/linux-6.3-rc2/include/net/tc_act/ |
A D | tc_gate.h | 111 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-6.3-rc2/fs/overlayfs/ |
A D | util.c | 91 if (oe) in ovl_alloc_entry() 94 return oe; in ovl_alloc_entry() 139 if (oe->numlower) { in ovl_path_type() 147 if (oe->numlower > 1) in ovl_path_type() 165 if (oe->numlower) { in ovl_path_lower() 177 if (oe->numlower) { in ovl_path_lowerdata() 178 path->mnt = oe->lowerstack[oe->numlower - 1].layer->mnt; in ovl_path_lowerdata() 179 path->dentry = oe->lowerstack[oe->numlower - 1].dentry; in ovl_path_lowerdata() 220 return oe->numlower ? oe->lowerstack[0].dentry : NULL; in ovl_dentry_lower() 227 return oe->numlower ? oe->lowerstack[0].layer : NULL; in ovl_layer_lower() [all …]
|
A D | export.c | 79 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() 325 dentry->d_fsdata = oe; in ovl_obtain_alias() 345 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_real_at() local 351 for (i = 0; i < oe->numlower; i++) { in ovl_dentry_real_at() [all …]
|
A D | super.c | 74 if (oe) { in ovl_dentry_release() 76 kfree_rcu(oe, rcu); in ovl_dentry_release() 1729 struct ovl_entry *oe; in ovl_get_lowerstack() local 1762 if (!oe) in ovl_get_lowerstack() 1775 return oe; in ovl_get_lowerstack() 1778 oe = ERR_PTR(err); in ovl_get_lowerstack() 1872 root->d_fsdata = oe; in ovl_get_root() 1897 struct ovl_entry *oe; in ovl_fill_super() local 2011 err = PTR_ERR(oe); in ovl_fill_super() 2012 if (IS_ERR(oe)) in ovl_fill_super() [all …]
|
A D | namei.c | 793 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_next() local 799 return oe->numlower ? 1 : -1; in ovl_path_next() 802 BUG_ON(idx > oe->numlower); in ovl_path_next() 803 path->dentry = oe->lowerstack[idx - 1].dentry; in ovl_path_next() 804 path->mnt = oe->lowerstack[idx - 1].layer->mnt; in ovl_path_next() 806 return (idx < oe->numlower) ? idx + 1 : -1; in ovl_path_next() 833 struct ovl_entry *oe; in ovl_lookup() local 1070 oe = ovl_alloc_entry(ctr); in ovl_lookup() 1072 if (!oe) in ovl_lookup() 1076 dentry->d_fsdata = oe; in ovl_lookup() [all …]
|
/linux-6.3-rc2/drivers/comedi/drivers/ |
A D | dt2817.c | 39 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-6.3-rc2/lib/lzo/ |
A D | lzo1x_decompress_safe.c | 98 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-6.3-rc2/drivers/gpu/drm/bridge/ |
A D | thc63lvd1024.c | 32 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-6.3-rc2/fs/ntfs3/ |
A D | fslog.c | 2952 while ((oe = enum_rstbl(log->open_attr_tbl, oe))) { in find_loaded_attr() 3047 oa = oe->ptr; in do_action() 4302 oe = NULL; in log_replay() 4303 while ((oe = enum_rstbl(oatbl, oe))) { in log_replay() 4560 if (!oe) { in log_replay() 4681 oe = NULL; in log_replay() 4684 oe = enum_rstbl(oatbl, oe); in log_replay() 4685 if (!oe) { in log_replay() 4724 attr = ni_find_attr(ni_oe, NULL, NULL, oe->type, oe->ptr, oe->name_len, in log_replay() 5157 oe = NULL; in log_replay() [all …]
|
/linux-6.3-rc2/arch/arm/boot/dts/ |
A D | omap3430-sdp.dts | 69 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>;
|
A D | omap2420-h4.dts | 37 gpmc,oe-on-ns = <60>; 38 gpmc,oe-off-ns = <120>;
|
A D | omap3-overo-tobiduo-common.dtsi | 32 gpmc,oe-on-ns = <0>; 33 gpmc,oe-off-ns = <42>;
|
A D | omap-gpmc-smsc911x.dtsi | 36 gpmc,oe-on-ns = <45>; 37 gpmc,oe-off-ns = <140>;
|
A D | omap-gpmc-smsc9221.dtsi | 39 gpmc,oe-on-ns = <0>; 40 gpmc,oe-off-ns = <42>;
|
A D | omap2430-sdp.dts | 54 gpmc,oe-on-ns = <60>; 55 gpmc,oe-off-ns = <169>;
|
A D | omap2420-n8x0-common.dtsi | 70 gpmc,oe-on-ns = <27>; 71 gpmc,oe-off-ns = <127>;
|
A D | omap-zoom-common.dtsi | 38 gpmc,oe-on-ns = <45>; 39 gpmc,oe-off-ns = <145>;
|
/linux-6.3-rc2/arch/mips/boot/dts/cavium-octeon/ |
A D | octeon_3xxx.dtsi | 133 cavium,t-oe = <60>; 150 cavium,t-oe = <320>; 167 cavium,t-oe = <125>; 184 cavium,t-oe = <270>;
|
/linux-6.3-rc2/fs/ext2/ |
A D | xattr.c | 525 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-6.3-rc2/Documentation/devicetree/bindings/memory-controllers/ |
A D | ti,gpmc-child.yaml | 76 gpmc,oe-on-ns: 80 gpmc,oe-off-ns: 84 gpmc,oe-aad-mux-on-ns: 88 gpmc,oe-aad-mux-off-ns: 148 gpmc,oe-extra-delay:
|
/linux-6.3-rc2/drivers/gpio/ |
A D | gpio-tegra.c | 77 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-6.3-rc2/Documentation/devicetree/bindings/mips/cavium/ |
A D | bootbus.txt | 36 - cavium,t-oe: A cell specifying the OE timing (in nS). 90 cavium,t-oe = <60>; 110 cavium,t-oe = <270>;
|