/openbmc/linux/include/linux/ |
H A D | vmstat.h | 64 static inline void __count_vm_event(enum vm_event_item item) in __count_vm_event() argument 66 raw_cpu_inc(vm_event_states.event[item]); in __count_vm_event() 69 static inline void count_vm_event(enum vm_event_item item) in count_vm_event() argument 71 this_cpu_inc(vm_event_states.event[item]); in count_vm_event() 74 static inline void __count_vm_events(enum vm_event_item item, long delta) in __count_vm_events() argument 76 raw_cpu_add(vm_event_states.event[item], delta); in __count_vm_events() 79 static inline void count_vm_events(enum vm_event_item item, long delta) in count_vm_events() argument 81 this_cpu_add(vm_event_states.event[item], delta); in count_vm_events() 91 static inline void count_vm_event(enum vm_event_item item) in count_vm_event() argument 94 static inline void count_vm_events(enum vm_event_item item, long delta) in count_vm_events() argument [all …]
|
/openbmc/linux/fs/configfs/ |
H A D | item.c | 34 static void config_item_init(struct config_item *item) in config_item_init() argument 36 kref_init(&item->ci_kref); in config_item_init() 37 INIT_LIST_HEAD(&item->ci_entry); in config_item_init() 49 int config_item_set_name(struct config_item *item, const char *fmt, ...) in config_item_set_name() argument 60 need = vsnprintf(item->ci_namebuf, limit, fmt, args); in config_item_set_name() 63 name = item->ci_namebuf; in config_item_set_name() 73 if (item->ci_name && item->ci_name != item->ci_namebuf) in config_item_set_name() 74 kfree(item->ci_name); in config_item_set_name() 77 item->ci_name = name; in config_item_set_name() 82 void config_item_init_type_name(struct config_item *item, in config_item_init_type_name() argument [all …]
|
/openbmc/linux/include/trace/stages/ |
H A D | stage1_struct_define.h | 6 #define __field(type, item) type item; argument 9 #define __field_ext(type, item, filter_type) type item; argument 12 #define __field_struct(type, item) type item; argument 15 #define __field_struct_ext(type, item, filter_type) type item; argument 18 #define __array(type, item, len) type item[len]; argument 21 #define __dynamic_array(type, item, len) u32 __data_loc_##item; argument 24 #define __string(item, src) __dynamic_array(char, item, -1) argument 27 #define __string_len(item, src, len) __dynamic_array(char, item, -1) argument 30 #define __vstring(item, fmt, ap) __dynamic_array(char, item, -1) argument 33 #define __bitmask(item, nr_bits) __dynamic_array(char, item, -1) argument [all …]
|
H A D | stage5_get_offsets.h | 22 #define __field(type, item) \ argument 23 { (void)sizeof(struct _test_no_array_##item *); } 26 #define __field_ext(type, item, filter_type) \ argument 27 { (void)sizeof(struct _test_no_array_##item *); } 30 #define __field_struct(type, item) \ argument 31 { (void)sizeof(struct _test_no_array_##item *); } 34 #define __field_struct_ext(type, item, filter_type) \ argument 35 { (void)sizeof(struct _test_no_array_##item *); } 38 #define __array(type, item, len) argument 41 #define __dynamic_array(type, item, len) \ argument [all …]
|
H A D | stage2_data_offsets.h | 12 #define __field(type, item) argument 15 #define __field_ext(type, item, filter_type) argument 18 #define __field_struct(type, item) argument 21 #define __field_struct_ext(type, item, filter_type) argument 24 #define __array(type, item, len) argument 27 #define __dynamic_array(type, item, len) u32 item; argument 30 #define __string(item, src) __dynamic_array(char, item, -1) argument 33 #define __string_len(item, src, len) __dynamic_array(char, item, -1) argument 36 #define __vstring(item, fmt, ap) __dynamic_array(char, item, -1) argument 39 #define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1) argument [all …]
|
H A D | stage4_event_fields.h | 20 #define __field(type, item) __field_ext(type, item, FILTER_OTHER) argument 23 #define __field_struct(type, item) __field_struct_ext(type, item, FILTER_OTHER) argument 39 #define __string(item, src) __dynamic_array(char, item, -1) argument 42 #define __string_len(item, src, len) __dynamic_array(char, item, -1) argument 45 #define __vstring(item, fmt, ap) __dynamic_array(char, item, -1) argument 48 #define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1) argument 51 #define __cpumask(item) { \ argument 52 .type = "__data_loc cpumask_t", .name = #item, \ 66 #define __rel_string(item, src) __rel_dynamic_array(char, item, -1) argument 69 #define __rel_string_len(item, src, len) __rel_dynamic_array(char, item, -1) argument [all …]
|
H A D | stage6_event_callback.h | 12 #define __field(type, item) argument 15 #define __field_struct(type, item) argument 18 #define __array(type, item, len) argument 21 #define __dynamic_array(type, item, len) \ argument 22 __entry->__data_loc_##item = __data_offsets.item; 25 #define __string(item, src) __dynamic_array(char, item, -1) argument 28 #define __string_len(item, src, len) __dynamic_array(char, item, -1) argument 31 #define __vstring(item, fmt, ap) __dynamic_array(char, item, -1) argument 54 #define __bitmask(item, nr_bits) __dynamic_array(unsigned long, item, -1) argument 64 #define __cpumask(item) __dynamic_array(unsigned long, item, -1) argument [all …]
|
/openbmc/u-boot/fs/btrfs/ |
H A D | dir-item.c | 10 static int verify_dir_item(struct btrfs_dir_item *item, u32 start, u32 total) in verify_dir_item() argument 15 if (item->type >= BTRFS_FT_MAX) { in verify_dir_item() 16 printf("%s: invalid dir item type: %i\n", __func__, item->type); in verify_dir_item() 20 if (item->type == BTRFS_FT_XATTR) in verify_dir_item() 23 end = start + sizeof(*item) + item->name_len; in verify_dir_item() 24 if (item->name_len > max_len || end > total) { in verify_dir_item() 26 item->name_len); in verify_dir_item() 37 struct btrfs_dir_item *item; in btrfs_match_dir_item_name() local 41 item = btrfs_path_item_ptr(path, struct btrfs_dir_item); in btrfs_match_dir_item_name() 46 btrfs_dir_item_to_cpu(item); in btrfs_match_dir_item_name() [all …]
|
/openbmc/phosphor-mrw-tools/ |
H A D | inventory.pl | 18 my @items, my %item, my %inventory; 63 $item{name} = $target; 64 $item{orig_name} = $target; 65 $item{fru_type} = $type; 66 $item{target_type} = $targetType; 69 $item{is_fru} = 1; 71 $item{is_fru} = 0; 73 push @items, { %item }; 159 for my $item (@$items) { 160 my @segments = split('/', $item->{orig_name}); [all …]
|
H A D | Inventory.pm | 62 my %item; 63 $item{TARGET} = $target; 64 $item{OBMC_NAME} = $target; #Will fixup later 65 push @$inventory, { %item }; 86 for my $item (@$inventory) { 88 if (exists $MODULE_TYPES{$targetObj->getType($item->{TARGET})}) { 89 my $card = $targetObj->getTargetParent($item->{TARGET}); 154 for my $item (@$inventory) { 159 my @segments = split('/', $item->{TARGET}); 175 $item->{OBMC_NAME} =~ s/\b$segment-\d+\b\///; [all …]
|
/openbmc/linux/tools/testing/radix-tree/ |
H A D | test.c | 11 struct item * 17 struct item * 28 struct item *item_create(unsigned long index, unsigned int order) in item_create() 30 struct item *ret = malloc(sizeof(*ret)); in item_create() 39 struct item *item = item_create(index, 0); in item_insert() local 40 int err = radix_tree_insert(root, item->index, item); in item_insert() 42 free(item); in item_insert() 46 void item_sanity(struct item *item, unsigned long index) in item_sanity() argument 49 assert(!radix_tree_is_internal_node(item)); in item_sanity() 50 assert(item->order < BITS_PER_LONG); in item_sanity() [all …]
|
/openbmc/linux/drivers/target/ |
H A D | target_core_stat.c | 41 static struct se_device *to_stat_dev(struct config_item *item) in to_stat_dev() argument 43 struct se_dev_stat_grps *sgrps = container_of(to_config_group(item), in to_stat_dev() 48 static ssize_t target_stat_inst_show(struct config_item *item, char *page) in target_stat_inst_show() argument 50 struct se_hba *hba = to_stat_dev(item)->se_hba; in target_stat_inst_show() 55 static ssize_t target_stat_indx_show(struct config_item *item, char *page) in target_stat_indx_show() argument 57 return snprintf(page, PAGE_SIZE, "%u\n", to_stat_dev(item)->dev_index); in target_stat_indx_show() 60 static ssize_t target_stat_role_show(struct config_item *item, char *page) in target_stat_role_show() argument 65 static ssize_t target_stat_ports_show(struct config_item *item, char *page) in target_stat_ports_show() argument 67 return snprintf(page, PAGE_SIZE, "%u\n", to_stat_dev(item)->export_count); in target_stat_ports_show() 91 static struct se_device *to_stat_tgt_dev(struct config_item *item) in to_stat_tgt_dev() argument [all …]
|
/openbmc/linux/drivers/target/iscsi/ |
H A D | iscsi_target_stat.c | 43 static struct iscsi_tiqn *iscsi_instance_tiqn(struct config_item *item) in iscsi_instance_tiqn() argument 45 struct iscsi_wwn_stat_grps *igrps = container_of(to_config_group(item), in iscsi_instance_tiqn() 50 static ssize_t iscsi_stat_instance_inst_show(struct config_item *item, in iscsi_stat_instance_inst_show() argument 54 iscsi_instance_tiqn(item)->tiqn_index); in iscsi_stat_instance_inst_show() 57 static ssize_t iscsi_stat_instance_min_ver_show(struct config_item *item, in iscsi_stat_instance_min_ver_show() argument 63 static ssize_t iscsi_stat_instance_max_ver_show(struct config_item *item, in iscsi_stat_instance_max_ver_show() argument 69 static ssize_t iscsi_stat_instance_portals_show(struct config_item *item, in iscsi_stat_instance_portals_show() argument 73 iscsi_instance_tiqn(item)->tiqn_num_tpg_nps); in iscsi_stat_instance_portals_show() 76 static ssize_t iscsi_stat_instance_nodes_show(struct config_item *item, in iscsi_stat_instance_nodes_show() argument 82 static ssize_t iscsi_stat_instance_sessions_show(struct config_item *item, in iscsi_stat_instance_sessions_show() argument [all …]
|
/openbmc/linux/drivers/input/rmi4/ |
H A D | rmi_f12.c | 65 const struct rmi_register_desc_item *item; in rmi_f12_read_sensor_tuning() local 77 item = rmi_get_register_desc_item(&f12->control_reg_desc, 8); in rmi_f12_read_sensor_tuning() 78 if (!item) { in rmi_f12_read_sensor_tuning() 86 if (item->reg_size > sizeof(buf)) { in rmi_f12_read_sensor_tuning() 89 sizeof(buf), item->reg_size); in rmi_f12_read_sensor_tuning() 94 item->reg_size); in rmi_f12_read_sensor_tuning() 99 if (rmi_register_desc_has_subpacket(item, 0)) { in rmi_f12_read_sensor_tuning() 108 if (rmi_register_desc_has_subpacket(item, 1)) { in rmi_f12_read_sensor_tuning() 114 if (rmi_register_desc_has_subpacket(item, 2)) { in rmi_f12_read_sensor_tuning() 125 if (rmi_register_desc_has_subpacket(item, 3)) { in rmi_f12_read_sensor_tuning() [all …]
|
/openbmc/u-boot/common/ |
H A D | menu.c | 57 struct menu_item *item; in menu_items_iter() local 61 item = list_entry(pos, struct menu_item, list); in menu_items_iter() 63 ret = callback(m, item, extra); in menu_items_iter() 78 struct menu_item *item, in menu_item_print() argument 82 puts(item->key); in menu_item_print() 85 m->item_data_print(item->data); in menu_item_print() 96 struct menu_item *item, in menu_item_destroy() argument 99 if (item->key) in menu_item_destroy() 100 free(item->key); in menu_item_destroy() 102 free(item); in menu_item_destroy() [all …]
|
/openbmc/linux/drivers/net/wireless/st/cw1200/ |
H A D | queue.c | 70 struct cw1200_queue_item *item, *tmp; in cw1200_queue_post_gc() local 72 list_for_each_entry_safe(item, tmp, gc_list, head) { in cw1200_queue_post_gc() 73 list_del(&item->head); in cw1200_queue_post_gc() 74 stats->skb_dtor(stats->priv, item->skb, &item->txpriv); in cw1200_queue_post_gc() 75 kfree(item); in cw1200_queue_post_gc() 80 struct cw1200_queue_item *item) in cw1200_queue_register_post_gc() argument 83 gc_item = kmemdup(item, sizeof(struct cw1200_queue_item), in cw1200_queue_register_post_gc() 94 struct cw1200_queue_item *item = NULL, *iter, *tmp; in __cw1200_queue_gc() local 99 item = iter; in __cw1200_queue_gc() 123 } else if (item) { in __cw1200_queue_gc() [all …]
|
/openbmc/linux/drivers/net/ethernet/mellanox/mlxsw/ |
H A D | item.h | 26 __mlxsw_item_offset(const struct mlxsw_item *item, unsigned short index, in __mlxsw_item_offset() argument 29 BUG_ON(index && !item->step); in __mlxsw_item_offset() 30 if (item->offset % typesize != 0 || in __mlxsw_item_offset() 31 item->step % typesize != 0 || in __mlxsw_item_offset() 32 item->in_step_offset % typesize != 0) { in __mlxsw_item_offset() 34 item->name, item->offset, item->step, in __mlxsw_item_offset() 35 item->in_step_offset, typesize); in __mlxsw_item_offset() 39 return ((item->offset + item->step * index + item->in_step_offset) / in __mlxsw_item_offset() 44 const struct mlxsw_item *item, in __mlxsw_item_get8() argument 47 unsigned int offset = __mlxsw_item_offset(item, index, sizeof(u8)); in __mlxsw_item_get8() [all …]
|
/openbmc/linux/drivers/usb/gadget/function/ |
H A D | uvc_configfs.h | 19 static inline struct f_uvc_opts *to_f_uvc_opts(struct config_item *item) in to_f_uvc_opts() argument 21 return container_of(to_config_group(item), struct f_uvc_opts, in to_f_uvc_opts() 30 struct config_item item; member 35 static inline struct uvcg_control_header *to_uvcg_control_header(struct config_item *item) in to_uvcg_control_header() argument 37 return container_of(item, struct uvcg_control_header, item); in to_uvcg_control_header() 69 static inline struct uvcg_format *to_uvcg_format(struct config_item *item) in to_uvcg_format() argument 71 return container_of(to_config_group(item), struct uvcg_format, group); in to_uvcg_format() 75 struct config_item item; member 82 static inline struct uvcg_streaming_header *to_uvcg_streaming_header(struct config_item *item) in to_uvcg_streaming_header() argument 84 return container_of(item, struct uvcg_streaming_header, item); in to_uvcg_streaming_header() [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
H A D | testexport.py | 91 …tive_rpm_file_list = [item for item in os.listdir(native_rpm_dir) if re.search("nativesdk-" + para… 95 …for item in native_rpm_file_list:# will copy all versions of package. Used version will be selecte… 96 bb.plain("Copying native package file: %s" % item) 97 …sh.copy(os.path.join(rpm_deploy_dir, native_rpm_dir, item), os.path.join(d.getVar("TEST_EXPORT_DIR… 104 …target_rpm_file_list = [item for item in os.listdir(arch_rpm_dir) if re.search(param_list[0] + "-(… 110 …for item in target_rpm_file_list: # copying all related rpm packages. "Intuition" reasons, someone… 111 bb.plain("Copying target specific packaged file: %s" % item) 112 sh.copy(os.path.join(arch_rpm_dir, item), packaged_bin_dir) 116 for item in target_rpm_file_list: 117 if re.match(".*-{}-.*\.rpm".format(param_list[1]), item): [all …]
|
/openbmc/linux/fs/nfs/ |
H A D | dns_resolve.c | 106 struct nfs_dns_ent *item; in nfs_dns_ent_free_rcu() local 108 item = container_of(head, struct nfs_dns_ent, rcu_head); in nfs_dns_ent_free_rcu() 109 kfree(item->hostname); in nfs_dns_ent_free_rcu() 110 kfree(item); in nfs_dns_ent_free_rcu() 115 struct nfs_dns_ent *item; in nfs_dns_ent_put() local 117 item = container_of(ref, struct nfs_dns_ent, h.ref); in nfs_dns_ent_put() 118 call_rcu(&item->rcu_head, nfs_dns_ent_free_rcu); in nfs_dns_ent_put() 123 struct nfs_dns_ent *item = kmalloc(sizeof(*item), GFP_KERNEL); in nfs_dns_ent_alloc() local 125 if (item != NULL) { in nfs_dns_ent_alloc() 126 item->hostname = NULL; in nfs_dns_ent_alloc() [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | taskdata.py | 206 def add_build_target(self, fn, item): argument 211 if item in self.build_targets: 212 if fn in self.build_targets[item]: 214 self.build_targets[item].append(fn) 216 self.build_targets[item] = [fn] 225 def add_runtime_target(self, fn, item): argument 230 if item in self.run_targets: 231 if fn in self.run_targets[item]: 233 self.run_targets[item].append(fn) 235 self.run_targets[item] = [fn] [all …]
|
/openbmc/linux/drivers/nvme/target/ |
H A D | configfs.c | 63 static ssize_t nvmet_addr_adrfam_show(struct config_item *item, char *page) in nvmet_addr_adrfam_show() argument 65 u8 adrfam = to_nvmet_port(item)->disc_addr.adrfam; in nvmet_addr_adrfam_show() 77 static ssize_t nvmet_addr_adrfam_store(struct config_item *item, in nvmet_addr_adrfam_store() argument 80 struct nvmet_port *port = to_nvmet_port(item); in nvmet_addr_adrfam_store() 101 static ssize_t nvmet_addr_portid_show(struct config_item *item, in nvmet_addr_portid_show() argument 104 __le16 portid = to_nvmet_port(item)->disc_addr.portid; in nvmet_addr_portid_show() 109 static ssize_t nvmet_addr_portid_store(struct config_item *item, in nvmet_addr_portid_store() argument 112 struct nvmet_port *port = to_nvmet_port(item); in nvmet_addr_portid_store() 129 static ssize_t nvmet_addr_traddr_show(struct config_item *item, in nvmet_addr_traddr_show() argument 132 struct nvmet_port *port = to_nvmet_port(item); in nvmet_addr_traddr_show() [all …]
|
/openbmc/linux/drivers/platform/mellanox/ |
H A D | mlxreg-hotplug.c | 212 struct mlxreg_core_item *item; in mlxreg_hotplug_attr_show() local 218 item = pdata->items + nr; in mlxreg_hotplug_attr_show() 219 data = item->data + index; in mlxreg_hotplug_attr_show() 225 if (item->health) { in mlxreg_hotplug_attr_show() 229 if (item->inversed) in mlxreg_hotplug_attr_show() 255 struct mlxreg_core_item *item; in mlxreg_hotplug_attr_init() local 262 item = pdata->items; in mlxreg_hotplug_attr_init() 265 for (i = 0; i < pdata->counter; i++, item++) { in mlxreg_hotplug_attr_init() 266 if (item->capability) { in mlxreg_hotplug_attr_init() 272 ret = regmap_read(priv->regmap, item->capability, in mlxreg_hotplug_attr_init() [all …]
|
/openbmc/linux/drivers/most/ |
H A D | configfs.c | 18 struct config_item item; member 90 static struct mdev_link *to_mdev_link(struct config_item *item) in to_mdev_link() argument 92 return container_of(item, struct mdev_link, item); in to_mdev_link() 113 static ssize_t mdev_link_create_link_store(struct config_item *item, in mdev_link_create_link_store() argument 116 struct mdev_link *mdev_link = to_mdev_link(item); in mdev_link_create_link_store() 135 static ssize_t mdev_link_destroy_link_store(struct config_item *item, in mdev_link_destroy_link_store() argument 138 struct mdev_link *mdev_link = to_mdev_link(item); in mdev_link_destroy_link_store() 160 static ssize_t mdev_link_direction_show(struct config_item *item, char *page) in mdev_link_direction_show() argument 162 return snprintf(page, PAGE_SIZE, "%s\n", to_mdev_link(item)->direction); in mdev_link_direction_show() 165 static ssize_t mdev_link_direction_store(struct config_item *item, in mdev_link_direction_store() argument [all …]
|
/openbmc/linux/samples/configfs/ |
H A D | configfs_sample.c | 37 static inline struct childless *to_childless(struct config_item *item) in to_childless() argument 39 return container_of(to_configfs_subsystem(to_config_group(item)), in to_childless() 43 static ssize_t childless_showme_show(struct config_item *item, char *page) in childless_showme_show() argument 45 struct childless *childless = to_childless(item); in childless_showme_show() 54 static ssize_t childless_storeme_show(struct config_item *item, char *page) in childless_storeme_show() argument 56 return sprintf(page, "%d\n", to_childless(item)->storeme); in childless_storeme_show() 59 static ssize_t childless_storeme_store(struct config_item *item, in childless_storeme_store() argument 62 struct childless *childless = to_childless(item); in childless_storeme_store() 72 static ssize_t childless_description_show(struct config_item *item, char *page) in childless_description_show() argument 122 struct config_item item; member [all …]
|