2 * Copyright (C) 2008 Red Hat, Inc. All rights reserved.
4 * This file is released under the GPL.
7 #include <linux/sysfs.h>
8 #include <linux/dm-ioctl.h>
11 struct dm_sysfs_attr {
12 struct attribute attr;
13 ssize_t (*show)(struct mapped_device *, char *);
14 ssize_t (*store)(struct mapped_device *, const char *, size_t count);
17 #define DM_ATTR_RO(_name) \
18 struct dm_sysfs_attr dm_attr_##_name = \
19 __ATTR(_name, S_IRUGO, dm_attr_##_name##_show, NULL)
21 static ssize_t dm_attr_show(struct kobject *kobj, struct attribute *attr,
24 struct dm_sysfs_attr *dm_attr;
25 struct mapped_device *md;
28 dm_attr = container_of(attr, struct dm_sysfs_attr, attr);
32 md = dm_get_from_kobject(kobj);
36 ret = dm_attr->show(md, page);
42 #define DM_ATTR_RW(_name) \
43 struct dm_sysfs_attr dm_attr_##_name = \
44 __ATTR(_name, S_IRUGO | S_IWUSR, dm_attr_##_name##_show, dm_attr_##_name##_store)
46 static ssize_t dm_attr_store(struct kobject *kobj, struct attribute *attr,
47 const char *page, size_t count)
49 struct dm_sysfs_attr *dm_attr;
50 struct mapped_device *md;
53 dm_attr = container_of(attr, struct dm_sysfs_attr, attr);
57 md = dm_get_from_kobject(kobj);
61 ret = dm_attr->store(md, page, count);
67 static ssize_t dm_attr_name_show(struct mapped_device *md, char *buf)
69 if (dm_copy_name_and_uuid(md, buf, NULL))
76 static ssize_t dm_attr_uuid_show(struct mapped_device *md, char *buf)
78 if (dm_copy_name_and_uuid(md, NULL, buf))
85 static ssize_t dm_attr_suspended_show(struct mapped_device *md, char *buf)
87 sprintf(buf, "%d\n", dm_suspended_md(md));
92 static ssize_t dm_attr_use_blk_mq_show(struct mapped_device *md, char *buf)
94 sprintf(buf, "%d\n", dm_use_blk_mq(md));
99 static DM_ATTR_RO(name);
100 static DM_ATTR_RO(uuid);
101 static DM_ATTR_RO(suspended);
102 static DM_ATTR_RO(use_blk_mq);
103 static DM_ATTR_RW(rq_based_seq_io_merge_deadline);
105 static struct attribute *dm_attrs[] = {
108 &dm_attr_suspended.attr,
109 &dm_attr_use_blk_mq.attr,
110 &dm_attr_rq_based_seq_io_merge_deadline.attr,
114 static const struct sysfs_ops dm_sysfs_ops = {
115 .show = dm_attr_show,
116 .store = dm_attr_store,
119 static struct kobj_type dm_ktype = {
120 .sysfs_ops = &dm_sysfs_ops,
121 .default_attrs = dm_attrs,
122 .release = dm_kobject_release,
127 * because nobody using md yet, no need to call explicit dm_get/put
129 int dm_sysfs_init(struct mapped_device *md)
131 return kobject_init_and_add(dm_kobject(md), &dm_ktype,
132 &disk_to_dev(dm_disk(md))->kobj,
137 * Remove kobj, called after all references removed
139 void dm_sysfs_exit(struct mapped_device *md)
141 struct kobject *kobj = dm_kobject(md);
143 wait_for_completion(dm_get_completion_from_kobject(kobj));