Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / drivers / md / dm-ps-queue-length.c
blobe305f05ad1e5e804c663560383fe5ec74b3f4a87
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (C) 2004-2005 IBM Corp. All Rights Reserved.
4 * Copyright (C) 2006-2009 NEC Corporation.
6 * dm-queue-length.c
8 * Module Author: Stefan Bader, IBM
9 * Modified by: Kiyoshi Ueda, NEC
11 * This file is released under the GPL.
13 * queue-length path selector - choose a path with the least number of
14 * in-flight I/Os.
17 #include "dm.h"
18 #include "dm-path-selector.h"
20 #include <linux/slab.h>
21 #include <linux/ctype.h>
22 #include <linux/errno.h>
23 #include <linux/module.h>
24 #include <linux/atomic.h>
26 #define DM_MSG_PREFIX "multipath queue-length"
27 #define QL_MIN_IO 1
28 #define QL_VERSION "0.2.0"
30 struct selector {
31 struct list_head valid_paths;
32 struct list_head failed_paths;
33 spinlock_t lock;
36 struct path_info {
37 struct list_head list;
38 struct dm_path *path;
39 unsigned int repeat_count;
40 atomic_t qlen; /* the number of in-flight I/Os */
43 static struct selector *alloc_selector(void)
45 struct selector *s = kmalloc(sizeof(*s), GFP_KERNEL);
47 if (s) {
48 INIT_LIST_HEAD(&s->valid_paths);
49 INIT_LIST_HEAD(&s->failed_paths);
50 spin_lock_init(&s->lock);
53 return s;
56 static int ql_create(struct path_selector *ps, unsigned int argc, char **argv)
58 struct selector *s = alloc_selector();
60 if (!s)
61 return -ENOMEM;
63 ps->context = s;
64 return 0;
67 static void ql_free_paths(struct list_head *paths)
69 struct path_info *pi, *next;
71 list_for_each_entry_safe(pi, next, paths, list) {
72 list_del(&pi->list);
73 kfree(pi);
77 static void ql_destroy(struct path_selector *ps)
79 struct selector *s = ps->context;
81 ql_free_paths(&s->valid_paths);
82 ql_free_paths(&s->failed_paths);
83 kfree(s);
84 ps->context = NULL;
87 static int ql_status(struct path_selector *ps, struct dm_path *path,
88 status_type_t type, char *result, unsigned int maxlen)
90 unsigned int sz = 0;
91 struct path_info *pi;
93 /* When called with NULL path, return selector status/args. */
94 if (!path)
95 DMEMIT("0 ");
96 else {
97 pi = path->pscontext;
99 switch (type) {
100 case STATUSTYPE_INFO:
101 DMEMIT("%d ", atomic_read(&pi->qlen));
102 break;
103 case STATUSTYPE_TABLE:
104 DMEMIT("%u ", pi->repeat_count);
105 break;
106 case STATUSTYPE_IMA:
107 *result = '\0';
108 break;
112 return sz;
115 static int ql_add_path(struct path_selector *ps, struct dm_path *path,
116 int argc, char **argv, char **error)
118 struct selector *s = ps->context;
119 struct path_info *pi;
120 unsigned int repeat_count = QL_MIN_IO;
121 char dummy;
122 unsigned long flags;
125 * Arguments: [<repeat_count>]
126 * <repeat_count>: The number of I/Os before switching path.
127 * If not given, default (QL_MIN_IO) is used.
129 if (argc > 1) {
130 *error = "queue-length ps: incorrect number of arguments";
131 return -EINVAL;
134 if ((argc == 1) && (sscanf(argv[0], "%u%c", &repeat_count, &dummy) != 1)) {
135 *error = "queue-length ps: invalid repeat count";
136 return -EINVAL;
139 if (repeat_count > 1) {
140 DMWARN_LIMIT("repeat_count > 1 is deprecated, using 1 instead");
141 repeat_count = 1;
144 /* Allocate the path information structure */
145 pi = kmalloc(sizeof(*pi), GFP_KERNEL);
146 if (!pi) {
147 *error = "queue-length ps: Error allocating path information";
148 return -ENOMEM;
151 pi->path = path;
152 pi->repeat_count = repeat_count;
153 atomic_set(&pi->qlen, 0);
155 path->pscontext = pi;
157 spin_lock_irqsave(&s->lock, flags);
158 list_add_tail(&pi->list, &s->valid_paths);
159 spin_unlock_irqrestore(&s->lock, flags);
161 return 0;
164 static void ql_fail_path(struct path_selector *ps, struct dm_path *path)
166 struct selector *s = ps->context;
167 struct path_info *pi = path->pscontext;
168 unsigned long flags;
170 spin_lock_irqsave(&s->lock, flags);
171 list_move(&pi->list, &s->failed_paths);
172 spin_unlock_irqrestore(&s->lock, flags);
175 static int ql_reinstate_path(struct path_selector *ps, struct dm_path *path)
177 struct selector *s = ps->context;
178 struct path_info *pi = path->pscontext;
179 unsigned long flags;
181 spin_lock_irqsave(&s->lock, flags);
182 list_move_tail(&pi->list, &s->valid_paths);
183 spin_unlock_irqrestore(&s->lock, flags);
185 return 0;
189 * Select a path having the minimum number of in-flight I/Os
191 static struct dm_path *ql_select_path(struct path_selector *ps, size_t nr_bytes)
193 struct selector *s = ps->context;
194 struct path_info *pi = NULL, *best = NULL;
195 struct dm_path *ret = NULL;
196 unsigned long flags;
198 spin_lock_irqsave(&s->lock, flags);
199 if (list_empty(&s->valid_paths))
200 goto out;
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;
207 if (!atomic_read(&best->qlen))
208 break;
211 if (!best)
212 goto out;
214 /* Move most recently used to least preferred to evenly balance. */
215 list_move_tail(&best->list, &s->valid_paths);
217 ret = best->path;
218 out:
219 spin_unlock_irqrestore(&s->lock, flags);
220 return ret;
223 static int ql_start_io(struct path_selector *ps, struct dm_path *path,
224 size_t nr_bytes)
226 struct path_info *pi = path->pscontext;
228 atomic_inc(&pi->qlen);
230 return 0;
233 static int ql_end_io(struct path_selector *ps, struct dm_path *path,
234 size_t nr_bytes, u64 start_time)
236 struct path_info *pi = path->pscontext;
238 atomic_dec(&pi->qlen);
240 return 0;
243 static struct path_selector_type ql_ps = {
244 .name = "queue-length",
245 .module = THIS_MODULE,
246 .table_args = 1,
247 .info_args = 1,
248 .create = ql_create,
249 .destroy = ql_destroy,
250 .status = ql_status,
251 .add_path = ql_add_path,
252 .fail_path = ql_fail_path,
253 .reinstate_path = ql_reinstate_path,
254 .select_path = ql_select_path,
255 .start_io = ql_start_io,
256 .end_io = ql_end_io,
259 static int __init dm_ql_init(void)
261 int r = dm_register_path_selector(&ql_ps);
263 if (r < 0)
264 DMERR("register failed %d", r);
266 DMINFO("version " QL_VERSION " loaded");
268 return r;
271 static void __exit dm_ql_exit(void)
273 int r = dm_unregister_path_selector(&ql_ps);
275 if (r < 0)
276 DMERR("unregister failed %d", r);
279 module_init(dm_ql_init);
280 module_exit(dm_ql_exit);
282 MODULE_AUTHOR("Stefan Bader <Stefan.Bader at de.ibm.com>");
283 MODULE_DESCRIPTION(
284 "(C) Copyright IBM Corp. 2004,2005 All Rights Reserved.\n"
285 DM_NAME " path selector to balance the number of in-flight I/Os"
287 MODULE_LICENSE("GPL");