Blame view

drivers/md/dm-sysfs.c 3.13 KB
784aae735   Milan Broz   dm: add name and ...
1
2
3
4
5
6
7
8
  /*
   * Copyright (C) 2008 Red Hat, Inc. All rights reserved.
   *
   * This file is released under the GPL.
   */
  
  #include <linux/sysfs.h>
  #include <linux/dm-ioctl.h>
4cc96131a   Mike Snitzer   dm: move request-...
9
10
  #include "dm-core.h"
  #include "dm-rq.h"
784aae735   Milan Broz   dm: add name and ...
11
12
13
14
  
  struct dm_sysfs_attr {
  	struct attribute attr;
  	ssize_t (*show)(struct mapped_device *, char *);
b898320d6   Mike Snitzer   dm sysfs: introdu...
15
  	ssize_t (*store)(struct mapped_device *, const char *, size_t count);
784aae735   Milan Broz   dm: add name and ...
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  };
  
  #define DM_ATTR_RO(_name) \
  struct dm_sysfs_attr dm_attr_##_name = \
  	__ATTR(_name, S_IRUGO, dm_attr_##_name##_show, NULL)
  
  static ssize_t dm_attr_show(struct kobject *kobj, struct attribute *attr,
  			    char *page)
  {
  	struct dm_sysfs_attr *dm_attr;
  	struct mapped_device *md;
  	ssize_t ret;
  
  	dm_attr = container_of(attr, struct dm_sysfs_attr, attr);
  	if (!dm_attr->show)
  		return -EIO;
  
  	md = dm_get_from_kobject(kobj);
  	if (!md)
  		return -EINVAL;
  
  	ret = dm_attr->show(md, page);
  	dm_put(md);
  
  	return ret;
  }
b898320d6   Mike Snitzer   dm sysfs: introdu...
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
  #define DM_ATTR_RW(_name) \
  struct dm_sysfs_attr dm_attr_##_name = \
  	__ATTR(_name, S_IRUGO | S_IWUSR, dm_attr_##_name##_show, dm_attr_##_name##_store)
  
  static ssize_t dm_attr_store(struct kobject *kobj, struct attribute *attr,
  			     const char *page, size_t count)
  {
  	struct dm_sysfs_attr *dm_attr;
  	struct mapped_device *md;
  	ssize_t ret;
  
  	dm_attr = container_of(attr, struct dm_sysfs_attr, attr);
  	if (!dm_attr->store)
  		return -EIO;
  
  	md = dm_get_from_kobject(kobj);
  	if (!md)
  		return -EINVAL;
  
  	ret = dm_attr->store(md, page, count);
  	dm_put(md);
  
  	return ret;
  }
784aae735   Milan Broz   dm: add name and ...
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
  static ssize_t dm_attr_name_show(struct mapped_device *md, char *buf)
  {
  	if (dm_copy_name_and_uuid(md, buf, NULL))
  		return -EIO;
  
  	strcat(buf, "
  ");
  	return strlen(buf);
  }
  
  static ssize_t dm_attr_uuid_show(struct mapped_device *md, char *buf)
  {
  	if (dm_copy_name_and_uuid(md, NULL, buf))
  		return -EIO;
  
  	strcat(buf, "
  ");
  	return strlen(buf);
  }
486d220fe   Peter Rajnoha   dm: sysfs add sus...
85
86
  static ssize_t dm_attr_suspended_show(struct mapped_device *md, char *buf)
  {
4f186f8bb   Kiyoshi Ueda   dm: rename dm_sus...
87
88
  	sprintf(buf, "%d
  ", dm_suspended_md(md));
486d220fe   Peter Rajnoha   dm: sysfs add sus...
89
90
91
  
  	return strlen(buf);
  }
17e149b8f   Mike Snitzer   dm: add 'use_blk_...
92
93
  static ssize_t dm_attr_use_blk_mq_show(struct mapped_device *md, char *buf)
  {
6a23e05c2   Jens Axboe   dm: remove legacy...
94
95
96
  	/* Purely for userspace compatibility */
  	sprintf(buf, "%d
  ", true);
17e149b8f   Mike Snitzer   dm: add 'use_blk_...
97
98
99
  
  	return strlen(buf);
  }
784aae735   Milan Broz   dm: add name and ...
100
101
  static DM_ATTR_RO(name);
  static DM_ATTR_RO(uuid);
486d220fe   Peter Rajnoha   dm: sysfs add sus...
102
  static DM_ATTR_RO(suspended);
17e149b8f   Mike Snitzer   dm: add 'use_blk_...
103
  static DM_ATTR_RO(use_blk_mq);
0ce65797a   Mike Snitzer   dm: impose config...
104
  static DM_ATTR_RW(rq_based_seq_io_merge_deadline);
784aae735   Milan Broz   dm: add name and ...
105
106
107
108
  
  static struct attribute *dm_attrs[] = {
  	&dm_attr_name.attr,
  	&dm_attr_uuid.attr,
486d220fe   Peter Rajnoha   dm: sysfs add sus...
109
  	&dm_attr_suspended.attr,
17e149b8f   Mike Snitzer   dm: add 'use_blk_...
110
  	&dm_attr_use_blk_mq.attr,
0ce65797a   Mike Snitzer   dm: impose config...
111
  	&dm_attr_rq_based_seq_io_merge_deadline.attr,
784aae735   Milan Broz   dm: add name and ...
112
113
  	NULL,
  };
52cf25d0a   Emese Revfy   Driver core: Cons...
114
  static const struct sysfs_ops dm_sysfs_ops = {
784aae735   Milan Broz   dm: add name and ...
115
  	.show	= dm_attr_show,
b898320d6   Mike Snitzer   dm sysfs: introdu...
116
  	.store	= dm_attr_store,
784aae735   Milan Broz   dm: add name and ...
117
  };
784aae735   Milan Broz   dm: add name and ...
118
119
120
  static struct kobj_type dm_ktype = {
  	.sysfs_ops	= &dm_sysfs_ops,
  	.default_attrs	= dm_attrs,
be35f4861   Mikulas Patocka   dm: wait until em...
121
  	.release	= dm_kobject_release,
784aae735   Milan Broz   dm: add name and ...
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
  };
  
  /*
   * Initialize kobj
   * because nobody using md yet, no need to call explicit dm_get/put
   */
  int dm_sysfs_init(struct mapped_device *md)
  {
  	return kobject_init_and_add(dm_kobject(md), &dm_ktype,
  				    &disk_to_dev(dm_disk(md))->kobj,
  				    "%s", "dm");
  }
  
  /*
   * Remove kobj, called after all references removed
   */
  void dm_sysfs_exit(struct mapped_device *md)
  {
be35f4861   Mikulas Patocka   dm: wait until em...
140
141
142
  	struct kobject *kobj = dm_kobject(md);
  	kobject_put(kobj);
  	wait_for_completion(dm_get_completion_from_kobject(kobj));
784aae735   Milan Broz   dm: add name and ...
143
  }