blob: aeea3b7f3d5e0128c8b39c74c329ae906d9fe1e8 [file] [log] [blame]
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +01001/*
2 * Copyright (C) 2004-2005 IBM Corp. All Rights Reserved.
3 * Copyright (C) 2006-2009 NEC Corporation.
4 *
5 * dm-queue-length.c
6 *
7 * Module Author: Stefan Bader, IBM
8 * Modified by: Kiyoshi Ueda, NEC
9 *
10 * This file is released under the GPL.
11 *
12 * queue-length path selector - choose a path with the least number of
13 * in-flight I/Os.
14 */
15
16#include "dm.h"
17#include "dm-path-selector.h"
18
19#include <linux/slab.h>
20#include <linux/ctype.h>
21#include <linux/errno.h>
22#include <linux/module.h>
Arun Sharma600634972011-07-26 16:09:06 -070023#include <linux/atomic.h>
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +010024
25#define DM_MSG_PREFIX "multipath queue-length"
Mike Snitzer21136f82016-02-10 11:58:45 -050026#define QL_MIN_IO 1
27#define QL_VERSION "0.2.0"
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +010028
29struct selector {
30 struct list_head valid_paths;
31 struct list_head failed_paths;
Mike Snitzer9659f812016-02-15 14:25:00 -050032 spinlock_t lock;
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +010033};
34
35struct path_info {
36 struct list_head list;
37 struct dm_path *path;
38 unsigned repeat_count;
39 atomic_t qlen; /* the number of in-flight I/Os */
40};
41
42static struct selector *alloc_selector(void)
43{
44 struct selector *s = kmalloc(sizeof(*s), GFP_KERNEL);
45
46 if (s) {
47 INIT_LIST_HEAD(&s->valid_paths);
48 INIT_LIST_HEAD(&s->failed_paths);
Mike Snitzer9659f812016-02-15 14:25:00 -050049 spin_lock_init(&s->lock);
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +010050 }
51
52 return s;
53}
54
55static int ql_create(struct path_selector *ps, unsigned argc, char **argv)
56{
57 struct selector *s = alloc_selector();
58
59 if (!s)
60 return -ENOMEM;
61
62 ps->context = s;
63 return 0;
64}
65
66static void ql_free_paths(struct list_head *paths)
67{
68 struct path_info *pi, *next;
69
70 list_for_each_entry_safe(pi, next, paths, list) {
71 list_del(&pi->list);
72 kfree(pi);
73 }
74}
75
76static void ql_destroy(struct path_selector *ps)
77{
78 struct selector *s = ps->context;
79
80 ql_free_paths(&s->valid_paths);
81 ql_free_paths(&s->failed_paths);
82 kfree(s);
83 ps->context = NULL;
84}
85
86static int ql_status(struct path_selector *ps, struct dm_path *path,
87 status_type_t type, char *result, unsigned maxlen)
88{
89 unsigned sz = 0;
90 struct path_info *pi;
91
92 /* When called with NULL path, return selector status/args. */
93 if (!path)
94 DMEMIT("0 ");
95 else {
96 pi = path->pscontext;
97
98 switch (type) {
99 case STATUSTYPE_INFO:
100 DMEMIT("%d ", atomic_read(&pi->qlen));
101 break;
102 case STATUSTYPE_TABLE:
103 DMEMIT("%u ", pi->repeat_count);
104 break;
105 }
106 }
107
108 return sz;
109}
110
111static int ql_add_path(struct path_selector *ps, struct dm_path *path,
112 int argc, char **argv, char **error)
113{
114 struct selector *s = ps->context;
115 struct path_info *pi;
116 unsigned repeat_count = QL_MIN_IO;
Mikulas Patocka31998ef2012-03-28 18:41:26 +0100117 char dummy;
Mike Snitzer9659f812016-02-15 14:25:00 -0500118 unsigned long flags;
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +0100119
120 /*
121 * Arguments: [<repeat_count>]
122 * <repeat_count>: The number of I/Os before switching path.
123 * If not given, default (QL_MIN_IO) is used.
124 */
125 if (argc > 1) {
126 *error = "queue-length ps: incorrect number of arguments";
127 return -EINVAL;
128 }
129
Mikulas Patocka31998ef2012-03-28 18:41:26 +0100130 if ((argc == 1) && (sscanf(argv[0], "%u%c", &repeat_count, &dummy) != 1)) {
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +0100131 *error = "queue-length ps: invalid repeat count";
132 return -EINVAL;
133 }
134
Mike Snitzer21136f82016-02-10 11:58:45 -0500135 if (repeat_count > 1) {
136 DMWARN_LIMIT("repeat_count > 1 is deprecated, using 1 instead");
137 repeat_count = 1;
138 }
139
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +0100140 /* Allocate the path information structure */
141 pi = kmalloc(sizeof(*pi), GFP_KERNEL);
142 if (!pi) {
143 *error = "queue-length ps: Error allocating path information";
144 return -ENOMEM;
145 }
146
147 pi->path = path;
148 pi->repeat_count = repeat_count;
149 atomic_set(&pi->qlen, 0);
150
151 path->pscontext = pi;
152
Mike Snitzer9659f812016-02-15 14:25:00 -0500153 spin_lock_irqsave(&s->lock, flags);
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +0100154 list_add_tail(&pi->list, &s->valid_paths);
Mike Snitzer9659f812016-02-15 14:25:00 -0500155 spin_unlock_irqrestore(&s->lock, flags);
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +0100156
157 return 0;
158}
159
160static void ql_fail_path(struct path_selector *ps, struct dm_path *path)
161{
162 struct selector *s = ps->context;
163 struct path_info *pi = path->pscontext;
Mike Snitzer9659f812016-02-15 14:25:00 -0500164 unsigned long flags;
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +0100165
Mike Snitzer9659f812016-02-15 14:25:00 -0500166 spin_lock_irqsave(&s->lock, flags);
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +0100167 list_move(&pi->list, &s->failed_paths);
Mike Snitzer9659f812016-02-15 14:25:00 -0500168 spin_unlock_irqrestore(&s->lock, flags);
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +0100169}
170
171static int ql_reinstate_path(struct path_selector *ps, struct dm_path *path)
172{
173 struct selector *s = ps->context;
174 struct path_info *pi = path->pscontext;
Mike Snitzer9659f812016-02-15 14:25:00 -0500175 unsigned long flags;
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +0100176
Mike Snitzer9659f812016-02-15 14:25:00 -0500177 spin_lock_irqsave(&s->lock, flags);
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +0100178 list_move_tail(&pi->list, &s->valid_paths);
Mike Snitzer9659f812016-02-15 14:25:00 -0500179 spin_unlock_irqrestore(&s->lock, flags);
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +0100180
181 return 0;
182}
183
184/*
185 * Select a path having the minimum number of in-flight I/Os
186 */
187static struct dm_path *ql_select_path(struct path_selector *ps,
188 unsigned *repeat_count, size_t nr_bytes)
189{
190 struct selector *s = ps->context;
191 struct path_info *pi = NULL, *best = NULL;
Mike Snitzer9659f812016-02-15 14:25:00 -0500192 struct dm_path *ret = NULL;
193 unsigned long flags;
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +0100194
Mike Snitzer9659f812016-02-15 14:25:00 -0500195 spin_lock_irqsave(&s->lock, flags);
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +0100196 if (list_empty(&s->valid_paths))
Mike Snitzer9659f812016-02-15 14:25:00 -0500197 goto out;
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +0100198
199 /* Change preferred (first in list) path to evenly balance. */
200 list_move_tail(s->valid_paths.next, &s->valid_paths);
201
202 list_for_each_entry(pi, &s->valid_paths, list) {
203 if (!best ||
204 (atomic_read(&pi->qlen) < atomic_read(&best->qlen)))
205 best = pi;
206
207 if (!atomic_read(&best->qlen))
208 break;
209 }
210
211 if (!best)
Mike Snitzer9659f812016-02-15 14:25:00 -0500212 goto out;
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +0100213
214 *repeat_count = best->repeat_count;
215
Mike Snitzer9659f812016-02-15 14:25:00 -0500216 ret = best->path;
217out:
218 spin_unlock_irqrestore(&s->lock, flags);
219 return ret;
Kiyoshi Uedafd5e0332009-06-22 10:12:27 +0100220}
221
222static int ql_start_io(struct path_selector *ps, struct dm_path *path,
223 size_t nr_bytes)
224{
225 struct path_info *pi = path->pscontext;
226
227 atomic_inc(&pi->qlen);
228
229 return 0;
230}
231
232static int ql_end_io(struct path_selector *ps, struct dm_path *path,
233 size_t nr_bytes)
234{
235 struct path_info *pi = path->pscontext;
236
237 atomic_dec(&pi->qlen);
238
239 return 0;
240}
241
242static struct path_selector_type ql_ps = {
243 .name = "queue-length",
244 .module = THIS_MODULE,
245 .table_args = 1,
246 .info_args = 1,
247 .create = ql_create,
248 .destroy = ql_destroy,
249 .status = ql_status,
250 .add_path = ql_add_path,
251 .fail_path = ql_fail_path,
252 .reinstate_path = ql_reinstate_path,
253 .select_path = ql_select_path,
254 .start_io = ql_start_io,
255 .end_io = ql_end_io,
256};
257
258static int __init dm_ql_init(void)
259{
260 int r = dm_register_path_selector(&ql_ps);
261
262 if (r < 0)
263 DMERR("register failed %d", r);
264
265 DMINFO("version " QL_VERSION " loaded");
266
267 return r;
268}
269
270static void __exit dm_ql_exit(void)
271{
272 int r = dm_unregister_path_selector(&ql_ps);
273
274 if (r < 0)
275 DMERR("unregister failed %d", r);
276}
277
278module_init(dm_ql_init);
279module_exit(dm_ql_exit);
280
281MODULE_AUTHOR("Stefan Bader <Stefan.Bader at de.ibm.com>");
282MODULE_DESCRIPTION(
283 "(C) Copyright IBM Corp. 2004,2005 All Rights Reserved.\n"
284 DM_NAME " path selector to balance the number of in-flight I/Os"
285);
286MODULE_LICENSE("GPL");