| /linux/lib/ |
| H A D | kobject.c | 30 const void *kobject_namespace(const struct kobject *kobj) in kobject_namespace() argument 32 const struct kobj_ns_type_operations *ns_ops = kobj_ns_ops(kobj); in kobject_namespace() 37 return kobj->ktype->namespace(kobj); in kobject_namespace() 50 void kobject_get_ownership(const struct kobject *kobj, kuid_t *uid, kgid_t *gid) in kobject_get_ownership() argument 55 if (kobj->ktype->get_ownership) in kobject_get_ownership() 56 kobj->ktype->get_ownership(kobj, uid, gid); in kobject_get_ownership() 67 static int create_dir(struct kobject *kobj) in create_dir() argument 69 const struct kobj_type *ktype = get_ktype(kobj); in create_dir() 73 error = sysfs_create_dir_ns(kobj, kobject_namespace(kobj)); in create_dir() 78 error = sysfs_create_groups(kobj, ktype->default_groups); in create_dir() [all …]
|
| /linux/mm/damon/ |
| H A D | sysfs-schemes.c | 18 struct kobject kobj; member 33 sysfs_region->kobj = (struct kobject){}; in damon_sysfs_scheme_region_alloc() 41 static ssize_t start_show(struct kobject *kobj, struct kobj_attribute *attr, in start_show() argument 44 struct damon_sysfs_scheme_region *region = container_of(kobj, in start_show() 45 struct damon_sysfs_scheme_region, kobj); in start_show() 50 static ssize_t end_show(struct kobject *kobj, struct kobj_attribute *attr, in end_show() argument 53 struct damon_sysfs_scheme_region *region = container_of(kobj, in end_show() 54 struct damon_sysfs_scheme_region, kobj); in end_show() 59 static ssize_t nr_accesses_show(struct kobject *kobj, in nr_accesses_show() argument 62 struct damon_sysfs_scheme_region *region = container_of(kobj, in nr_accesses_show() [all …]
|
| H A D | sysfs.c | 19 struct kobject kobj; member 28 static ssize_t start_show(struct kobject *kobj, struct kobj_attribute *attr, in start_show() argument 31 struct damon_sysfs_region *region = container_of(kobj, in start_show() 32 struct damon_sysfs_region, kobj); in start_show() 37 static ssize_t start_store(struct kobject *kobj, struct kobj_attribute *attr, in start_store() argument 40 struct damon_sysfs_region *region = container_of(kobj, in start_store() 41 struct damon_sysfs_region, kobj); in start_store() 47 static ssize_t end_show(struct kobject *kobj, struct kobj_attribute *attr, in end_show() argument 50 struct damon_sysfs_region *region = container_of(kobj, in end_show() 51 struct damon_sysfs_region, kobj); in end_show() [all …]
|
| H A D | sysfs-common.c | 26 range->kobj = (struct kobject){}; in damon_sysfs_ul_range_alloc() 33 static ssize_t min_show(struct kobject *kobj, struct kobj_attribute *attr, in min_show() argument 36 struct damon_sysfs_ul_range *range = container_of(kobj, in min_show() 37 struct damon_sysfs_ul_range, kobj); in min_show() 42 static ssize_t min_store(struct kobject *kobj, struct kobj_attribute *attr, in min_store() argument 45 struct damon_sysfs_ul_range *range = container_of(kobj, in min_store() 46 struct damon_sysfs_ul_range, kobj); in min_store() 58 static ssize_t max_show(struct kobject *kobj, struct kobj_attribute *attr, in max_show() argument 61 struct damon_sysfs_ul_range *range = container_of(kobj, in max_show() 62 struct damon_sysfs_ul_range, kobj); in max_show() [all …]
|
| /linux/include/linux/ |
| H A D | sysfs.h | 170 struct kobject *kobj, struct attribute *attr, int n) \ 172 if (n == 0 && !name##_group_visible(kobj)) \ 174 return name##_attr_visible(kobj, attr, n); \ 202 struct kobject *kobj, struct attribute *a, int n) \ 204 if (n == 0 && !name##_group_visible(kobj)) \ 217 struct kobject *kobj, const struct bin_attribute *attr, int n) \ 219 if (n == 0 && !name##_group_visible(kobj)) \ 221 return name##_attr_visible(kobj, attr, n); \ 226 struct kobject *kobj, const struct bin_attribute *a, int n) \ 228 if (n == 0 && !name##_group_visible(kobj)) \ [all …]
|
| H A D | kobject.h | 84 __printf(2, 3) int kobject_set_name(struct kobject *kobj, const char *name, ...); 85 __printf(2, 0) int kobject_set_name_vargs(struct kobject *kobj, const char *fmt, va_list vargs); 87 static inline const char *kobject_name(const struct kobject *kobj) in kobject_name() argument 89 return kobj->name; in kobject_name() 92 void kobject_init(struct kobject *kobj, const struct kobj_type *ktype); 93 __printf(3, 4) __must_check int kobject_add(struct kobject *kobj, 96 __printf(4, 5) __must_check int kobject_init_and_add(struct kobject *kobj, 101 void kobject_del(struct kobject *kobj); 108 struct kobject *kobject_get(struct kobject *kobj); 109 struct kobject * __must_check kobject_get_unless_zero(struct kobject *kobj); [all …]
|
| /linux/drivers/gpu/drm/xe/ |
| H A D | xe_hw_engine_class_sysfs.c | 35 static void xe_hw_engine_sysfs_kobj_release(struct kobject *kobj) in xe_hw_engine_sysfs_kobj_release() argument 37 kfree(kobj); in xe_hw_engine_sysfs_kobj_release() 40 static ssize_t xe_hw_engine_class_sysfs_attr_show(struct kobject *kobj, in xe_hw_engine_class_sysfs_attr_show() argument 44 struct xe_device *xe = kobj_to_xe(kobj); in xe_hw_engine_class_sysfs_attr_show() 50 return kattr->show(kobj, kattr, buf); in xe_hw_engine_class_sysfs_attr_show() 56 static ssize_t xe_hw_engine_class_sysfs_attr_store(struct kobject *kobj, in xe_hw_engine_class_sysfs_attr_store() argument 61 struct xe_device *xe = kobj_to_xe(kobj); in xe_hw_engine_class_sysfs_attr_store() 67 return kattr->store(kobj, kattr, buf, count); in xe_hw_engine_class_sysfs_attr_store() 88 static ssize_t job_timeout_max_store(struct kobject *kobj, in job_timeout_max_store() argument 92 struct xe_hw_engine_class_intf *eclass = kobj_to_eclass(kobj); in job_timeout_max_store() [all …]
|
| H A D | xe_gt_freq.c | 57 return &kobj_to_gt(dev->kobj.parent)->uc.guc.pc; in dev_to_pc() 63 return gt_to_xe(kobj_to_gt(dev->kobj.parent)); in dev_to_xe() 66 static ssize_t act_freq_show(struct kobject *kobj, in act_freq_show() argument 69 struct device *dev = kobj_to_dev(kobj); in act_freq_show() 80 static ssize_t cur_freq_show(struct kobject *kobj, in cur_freq_show() argument 83 struct device *dev = kobj_to_dev(kobj); in cur_freq_show() 97 static ssize_t rp0_freq_show(struct kobject *kobj, in rp0_freq_show() argument 100 struct device *dev = kobj_to_dev(kobj); in rp0_freq_show() 107 static ssize_t rpe_freq_show(struct kobject *kobj, in rpe_freq_show() argument 110 struct device *dev = kobj_to_dev(kobj); in rpe_freq_show() [all …]
|
| /linux/fs/sysfs/ |
| H A D | group.c | 34 static umode_t __first_visible(const struct attribute_group *grp, struct kobject *kobj) in __first_visible() argument 37 return grp->is_visible(kobj, grp->attrs[0], 0); in __first_visible() 40 return grp->is_visible_const(kobj, grp->attrs[0], 0); in __first_visible() 43 return grp->is_bin_visible(kobj, grp->bin_attrs[0], 0); in __first_visible() 48 static int create_files(struct kernfs_node *parent, struct kobject *kobj, in create_files() argument 69 mode = grp->is_visible(kobj, *attr, i); in create_files() 71 mode = grp->is_visible_const(kobj, *attr, i); in create_files() 102 mode = grp->is_bin_visible(kobj, *bin_attr, i); in create_files() 108 size = grp->bin_size(kobj, *bin_attr, i); in create_files() 129 static int internal_create_group(struct kobject *kobj, int update, in internal_create_group() argument [all …]
|
| H A D | file.c | 34 struct kobject *kobj = sysfs_file_kobj(kn); in sysfs_file_ops() local 38 return kobj->ktype ? kobj->ktype->sysfs_ops : NULL; in sysfs_file_ops() 49 struct kobject *kobj = sysfs_file_kobj(of->kn); in sysfs_kf_seq_show() local 65 count = ops->show(kobj, of->kn->priv, buf); in sysfs_kf_seq_show() 87 struct kobject *kobj = sysfs_file_kobj(of->kn); in sysfs_kf_bin_read() local 103 return battr->read(of->file, kobj, battr, buf, pos, count); in sysfs_kf_bin_read() 111 struct kobject *kobj = sysfs_file_kobj(of->kn); in sysfs_kf_read() local 120 len = ops->show(kobj, of->kn->priv, buf); in sysfs_kf_read() 137 struct kobject *kobj = sysfs_file_kobj(of->kn); in sysfs_kf_write() local 142 return ops->store(kobj, of->kn->priv, buf, count); in sysfs_kf_write() [all …]
|
| H A D | dir.c | 40 int sysfs_create_dir_ns(struct kobject *kobj, const void *ns) in sysfs_create_dir_ns() argument 46 if (WARN_ON(!kobj)) in sysfs_create_dir_ns() 49 if (kobj->parent) in sysfs_create_dir_ns() 50 parent = kobj->parent->sd; in sysfs_create_dir_ns() 57 kobject_get_ownership(kobj, &uid, &gid); in sysfs_create_dir_ns() 59 kn = kernfs_create_dir_ns(parent, kobject_name(kobj), 0755, uid, gid, in sysfs_create_dir_ns() 60 kobj, ns); in sysfs_create_dir_ns() 63 sysfs_warn_dup(parent, kobject_name(kobj)); in sysfs_create_dir_ns() 67 kobj->sd = kn; in sysfs_create_dir_ns() 79 void sysfs_remove_dir(struct kobject *kobj) in sysfs_remove_dir() argument [all …]
|
| /linux/fs/nfs/ |
| H A D | sysfs.c | 24 static void nfs_kset_release(struct kobject *kobj) in nfs_kset_release() argument 26 struct kset *kset = container_of(kobj, struct kset, kobj); in nfs_kset_release() 31 const struct kobject *kobj) in nfs_netns_object_child_ns_type() argument 50 ret = kobject_set_name(&nfs_kset->kobj, "nfs"); in nfs_sysfs_init() 56 nfs_kset->kobj.parent = fs_kobj; in nfs_sysfs_init() 57 nfs_kset->kobj.ktype = &nfs_kset_type; in nfs_sysfs_init() 58 nfs_kset->kobj.kset = NULL; in nfs_sysfs_init() 74 static ssize_t nfs_netns_identifier_show(struct kobject *kobj, in nfs_netns_identifier_show() argument 77 struct nfs_netns_client *c = container_of(kobj, in nfs_netns_identifier_show() 96 static ssize_t nfs_netns_identifier_store(struct kobject *kobj, in nfs_netns_identifier_store() argument [all …]
|
| /linux/drivers/gpu/drm/i915/gt/ |
| H A D | sysfs_engines.c | 20 static struct intel_engine_cs *kobj_to_engine(struct kobject *kobj) in kobj_to_engine() argument 22 return container_of(kobj, struct kobj_engine, base)->engine; in kobj_to_engine() 26 name_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf) in name_show() argument 28 return sysfs_emit(buf, "%s\n", kobj_to_engine(kobj)->name); in name_show() 35 class_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf) in class_show() argument 37 return sysfs_emit(buf, "%d\n", kobj_to_engine(kobj)->uabi_class); in class_show() 44 inst_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf) in inst_show() argument 46 return sysfs_emit(buf, "%d\n", kobj_to_engine(kobj)->uabi_instance); in inst_show() 53 mmio_show(struct kobject *kobj, struct kobj_attribute *attr, char *buf) in mmio_show() argument 55 return sysfs_emit(buf, "0x%x\n", kobj_to_engine(kobj)->mmio_base); in mmio_show() [all …]
|
| H A D | intel_gt_sysfs_pm.c | 28 sysfs_gt_attribute_w_func(struct kobject *kobj, struct attribute *attr, in sysfs_gt_attribute_w_func() argument 34 if (!is_object_gt(kobj)) { in sysfs_gt_attribute_w_func() 36 struct device *dev = kobj_to_dev(kobj); in sysfs_gt_attribute_w_func() 45 gt = intel_gt_sysfs_get_drvdata(kobj, attr->name); in sysfs_gt_attribute_w_func() 53 sysfs_gt_attribute_r_func(struct kobject *kobj, struct attribute *attr, in sysfs_gt_attribute_r_func() argument 62 if (!is_object_gt(kobj)) { in sysfs_gt_attribute_r_func() 64 struct device *dev = kobj_to_dev(kobj); in sysfs_gt_attribute_r_func() 83 gt = intel_gt_sysfs_get_drvdata(kobj, attr->name); in sysfs_gt_attribute_r_func() 99 static ssize_t _name##_show_common(struct kobject *kobj, \ 102 u32 val = sysfs_gt_attribute_r_##_attr_type##_func(kobj, attr, \ [all …]
|
| /linux/drivers/edac/ |
| H A D | edac_device_sysfs.c | 23 #define to_edacdev(k) container_of(k, struct edac_device_ctl_info, kobj) 113 #define to_ctl_info(k) container_of(k, struct edac_device_ctl_info, kobj) 117 static ssize_t edac_dev_ctl_info_show(struct kobject *kobj, in edac_dev_ctl_info_show() argument 120 struct edac_device_ctl_info *edac_dev = to_ctl_info(kobj); in edac_dev_ctl_info_show() 129 static ssize_t edac_dev_ctl_info_store(struct kobject *kobj, in edac_dev_ctl_info_store() argument 133 struct edac_device_ctl_info *edac_dev = to_ctl_info(kobj); in edac_dev_ctl_info_store() 202 static void edac_device_ctrl_master_release(struct kobject *kobj) in edac_device_ctrl_master_release() argument 204 struct edac_device_ctl_info *edac_dev = to_edacdev(kobj); in edac_device_ctrl_master_release() 244 memset(&edac_dev->kobj, 0, sizeof(struct kobject)); in edac_device_register_sysfs_main_kobj() 257 err = kobject_init_and_add(&edac_dev->kobj, &ktype_device_ctrl, in edac_device_register_sysfs_main_kobj() [all …]
|
| /linux/drivers/cpuidle/ |
| H A D | sysfs.c | 131 retval = sysfs_create_group(&dev_root->kobj, &cpuidle_attr_group); in cpuidle_add_interface() 142 sysfs_remove_group(&dev->kobj, &cpuidle_attr_group); in cpuidle_remove_interface() 156 struct kobject kobj; member 159 static inline struct cpuidle_device *to_cpuidle_device(struct kobject *kobj) in to_cpuidle_device() argument 162 container_of(kobj, struct cpuidle_device_kobj, kobj); in to_cpuidle_device() 167 static ssize_t cpuidle_show(struct kobject *kobj, struct attribute *attr, in cpuidle_show() argument 171 struct cpuidle_device *dev = to_cpuidle_device(kobj); in cpuidle_show() 182 static ssize_t cpuidle_store(struct kobject *kobj, struct attribute *attr, in cpuidle_store() argument 186 struct cpuidle_device *dev = to_cpuidle_device(kobj); in cpuidle_store() 202 static void cpuidle_sysfs_release(struct kobject *kobj) in cpuidle_sysfs_release() argument [all …]
|
| /linux/drivers/block/rnbd/ |
| H A D | rnbd-srv-sysfs.c | 27 static void rnbd_srv_dev_release(struct kobject *kobj) in rnbd_srv_dev_release() argument 31 dev = container_of(kobj, struct rnbd_srv_dev, dev_kobj); in rnbd_srv_dev_release() 61 bdev_kobj = &disk_to_dev(bdev->bd_disk)->kobj; in rnbd_srv_create_dev_sysfs() 85 static ssize_t read_only_show(struct kobject *kobj, struct kobj_attribute *attr, in read_only_show() argument 90 sess_dev = container_of(kobj, struct rnbd_srv_sess_dev, kobj); in read_only_show() 98 static ssize_t access_mode_show(struct kobject *kobj, in access_mode_show() argument 104 sess_dev = container_of(kobj, struct rnbd_srv_sess_dev, kobj); in access_mode_show() 113 static ssize_t mapping_path_show(struct kobject *kobj, in mapping_path_show() argument 118 sess_dev = container_of(kobj, struct rnbd_srv_sess_dev, kobj); in mapping_path_show() 126 static ssize_t rnbd_srv_dev_session_force_close_show(struct kobject *kobj, in rnbd_srv_dev_session_force_close_show() argument [all …]
|
| /linux/fs/btrfs/ |
| H A D | sysfs.c | 58 struct kobject kobj; member 101 static inline struct btrfs_fs_info *to_fs_info(struct kobject *kobj); 102 static inline struct btrfs_fs_devices *to_fs_devs(struct kobject *kobj); 103 static struct kobject *get_btrfs_kobj(struct kobject *kobj); 175 static ssize_t btrfs_feature_attr_show(struct kobject *kobj, in btrfs_feature_attr_show() argument 179 struct btrfs_fs_info *fs_info = to_fs_info(kobj); in btrfs_feature_attr_show() 191 static ssize_t btrfs_feature_attr_store(struct kobject *kobj, in btrfs_feature_attr_store() argument 201 fs_info = to_fs_info(kobj); in btrfs_feature_attr_store() 259 static umode_t btrfs_feature_visible(struct kobject *kobj, in btrfs_feature_visible() argument 262 struct btrfs_fs_info *fs_info = to_fs_info(kobj); in btrfs_feature_visible() [all …]
|
| /linux/drivers/infiniband/ulp/rtrs/ |
| H A D | rtrs-clt-sysfs.c | 19 static void rtrs_clt_path_release(struct kobject *kobj) in rtrs_clt_path_release() argument 23 clt_path = container_of(kobj, struct rtrs_clt_path, kobj); in rtrs_clt_path_release() 33 static void rtrs_clt_path_stats_release(struct kobject *kobj) in rtrs_clt_path_stats_release() argument 37 stats = container_of(kobj, struct rtrs_clt_stats, kobj_stats); in rtrs_clt_path_stats_release() 198 static ssize_t rtrs_clt_state_show(struct kobject *kobj, in rtrs_clt_state_show() argument 203 clt_path = container_of(kobj, struct rtrs_clt_path, kobj); in rtrs_clt_state_show() 213 static ssize_t rtrs_clt_reconnect_show(struct kobject *kobj, in rtrs_clt_reconnect_show() argument 219 static ssize_t rtrs_clt_reconnect_store(struct kobject *kobj, in rtrs_clt_reconnect_store() argument 226 clt_path = container_of(kobj, struct rtrs_clt_path, kobj); in rtrs_clt_reconnect_store() 243 static ssize_t rtrs_clt_disconnect_show(struct kobject *kobj, in rtrs_clt_disconnect_show() argument [all …]
|
| H A D | rtrs-srv-sysfs.c | 16 static void rtrs_srv_release(struct kobject *kobj) in rtrs_srv_release() argument 20 srv_path = container_of(kobj, struct rtrs_srv_path, kobj); in rtrs_srv_release() 29 static ssize_t rtrs_srv_disconnect_show(struct kobject *kobj, in rtrs_srv_disconnect_show() argument 35 static ssize_t rtrs_srv_disconnect_store(struct kobject *kobj, in rtrs_srv_disconnect_store() argument 43 srv_path = container_of(kobj, struct rtrs_srv_path, kobj); in rtrs_srv_disconnect_store() 56 sysfs_remove_file_self(&srv_path->kobj, &attr->attr); in rtrs_srv_disconnect_store() 66 static ssize_t rtrs_srv_hca_port_show(struct kobject *kobj, in rtrs_srv_hca_port_show() argument 73 srv_path = container_of(kobj, typeof(*srv_path), kobj); in rtrs_srv_hca_port_show() 82 static ssize_t rtrs_srv_hca_name_show(struct kobject *kobj, in rtrs_srv_hca_name_show() argument 88 srv_path = container_of(kobj, struct rtrs_srv_path, kobj); in rtrs_srv_hca_name_show() [all …]
|
| /linux/arch/powerpc/kernel/ |
| H A D | secvar-sysfs.c | 22 static ssize_t format_show(struct kobject *kobj, struct kobj_attribute *attr, in format_show() argument 39 static ssize_t size_show(struct kobject *kobj, struct kobj_attribute *attr, in size_show() argument 45 rc = secvar_ops->get(kobj->name, strlen(kobj->name) + 1, NULL, &dsize); in size_show() 48 pr_err("Error retrieving %s variable size %d\n", kobj->name, rc); in size_show() 55 static ssize_t data_read(struct file *filep, struct kobject *kobj, in data_read() argument 63 rc = secvar_ops->get(kobj->name, strlen(kobj->name) + 1, NULL, &dsize); in data_read() 66 pr_err("Error getting %s variable size %d\n", kobj->name, rc); in data_read() 75 rc = secvar_ops->get(kobj->name, strlen(kobj->name) + 1, data, &dsize); in data_read() 77 pr_err("Error getting %s variable %d\n", kobj->name, rc); in data_read() 88 static ssize_t update_write(struct file *filep, struct kobject *kobj, in update_write() argument [all …]
|
| /linux/net/sunrpc/ |
| H A D | sysfs.c | 28 static void rpc_sysfs_object_release(struct kobject *kobj) in rpc_sysfs_object_release() argument 30 kfree(kobj); in rpc_sysfs_object_release() 34 rpc_sysfs_object_child_ns_type(const struct kobject *kobj) in rpc_sysfs_object_child_ns_type() argument 49 struct kobject *kobj; in rpc_sysfs_object_alloc() local 51 kobj = kzalloc_obj(*kobj); in rpc_sysfs_object_alloc() 52 if (kobj) { in rpc_sysfs_object_alloc() 53 kobj->kset = kset; in rpc_sysfs_object_alloc() 54 if (kobject_init_and_add(kobj, &rpc_sysfs_object_type, in rpc_sysfs_object_alloc() 56 return kobj; in rpc_sysfs_object_alloc() 57 kobject_put(kobj); in rpc_sysfs_object_alloc() [all …]
|
| /linux/mm/ |
| H A D | hugetlb_sysfs.c | 26 static struct hstate *kobj_to_node_hstate(struct kobject *kobj, int *nidp); 28 static struct hstate *kobj_to_hstate(struct kobject *kobj, int *nidp) in kobj_to_hstate() argument 33 if (hstate_kobjs[i] == kobj) { in kobj_to_hstate() 39 return kobj_to_node_hstate(kobj, nidp); in kobj_to_hstate() 42 static ssize_t nr_hugepages_show_common(struct kobject *kobj, in nr_hugepages_show_common() argument 49 h = kobj_to_hstate(kobj, &nid); in nr_hugepages_show_common() 59 struct kobject *kobj, const char *buf, in nr_hugepages_store_common() argument 71 h = kobj_to_hstate(kobj, &nid); in nr_hugepages_store_common() 75 static ssize_t nr_hugepages_show(struct kobject *kobj, in nr_hugepages_show() argument 78 return nr_hugepages_show_common(kobj, attr, buf); in nr_hugepages_show() [all …]
|
| H A D | cma_sysfs.c | 32 static inline struct cma *cma_from_kobj(struct kobject *kobj) in cma_from_kobj() argument 34 return container_of(kobj, struct cma_kobject, kobj)->cma; in cma_from_kobj() 37 static ssize_t alloc_pages_success_show(struct kobject *kobj, in alloc_pages_success_show() argument 40 struct cma *cma = cma_from_kobj(kobj); in alloc_pages_success_show() 47 static ssize_t alloc_pages_fail_show(struct kobject *kobj, in alloc_pages_fail_show() argument 50 struct cma *cma = cma_from_kobj(kobj); in alloc_pages_fail_show() 56 static ssize_t release_pages_success_show(struct kobject *kobj, in release_pages_success_show() argument 59 struct cma *cma = cma_from_kobj(kobj); in release_pages_success_show() 65 static ssize_t total_pages_show(struct kobject *kobj, in total_pages_show() argument 68 struct cma *cma = cma_from_kobj(kobj); in total_pages_show() [all …]
|
| /linux/block/ |
| H A D | blk-mq-sysfs.c | 16 static void blk_mq_sysfs_release(struct kobject *kobj) in blk_mq_sysfs_release() argument 18 struct blk_mq_ctxs *ctxs = container_of(kobj, struct blk_mq_ctxs, kobj); in blk_mq_sysfs_release() 24 static void blk_mq_ctx_sysfs_release(struct kobject *kobj) in blk_mq_ctx_sysfs_release() argument 26 struct blk_mq_ctx *ctx = container_of(kobj, struct blk_mq_ctx, kobj); in blk_mq_ctx_sysfs_release() 29 kobject_put(&ctx->ctxs->kobj); in blk_mq_ctx_sysfs_release() 32 static void blk_mq_hw_sysfs_release(struct kobject *kobj) in blk_mq_hw_sysfs_release() argument 34 struct blk_mq_hw_ctx *hctx = container_of(kobj, struct blk_mq_hw_ctx, in blk_mq_hw_sysfs_release() 35 kobj); in blk_mq_hw_sysfs_release() 48 static ssize_t blk_mq_hw_sysfs_show(struct kobject *kobj, in blk_mq_hw_sysfs_show() argument 57 hctx = container_of(kobj, struct blk_mq_hw_ctx, kobj); in blk_mq_hw_sysfs_show() [all …]
|