2 * Copyright (C) 2007-2009 NEC Corporation. All Rights Reserved.
4 * Module Author: Kiyoshi Ueda
6 * This file is released under the GPL.
8 * Throughput oriented path selector.
12 #include "dm-path-selector.h"
14 #include <linux/slab.h>
16 #define DM_MSG_PREFIX "multipath service-time"
18 #define ST_MAX_RELATIVE_THROUGHPUT 100
19 #define ST_MAX_RELATIVE_THROUGHPUT_SHIFT 7
20 #define ST_MAX_INFLIGHT_SIZE ((size_t)-1 >> ST_MAX_RELATIVE_THROUGHPUT_SHIFT)
21 #define ST_VERSION "0.2.0"
24 struct list_head valid_paths
;
25 struct list_head failed_paths
;
29 struct list_head list
;
31 unsigned repeat_count
;
32 unsigned relative_throughput
;
33 atomic_t in_flight_size
; /* Total size of in-flight I/Os */
36 static struct selector
*alloc_selector(void)
38 struct selector
*s
= kmalloc(sizeof(*s
), GFP_KERNEL
);
41 INIT_LIST_HEAD(&s
->valid_paths
);
42 INIT_LIST_HEAD(&s
->failed_paths
);
48 static int st_create(struct path_selector
*ps
, unsigned argc
, char **argv
)
50 struct selector
*s
= alloc_selector();
59 static void free_paths(struct list_head
*paths
)
61 struct path_info
*pi
, *next
;
63 list_for_each_entry_safe(pi
, next
, paths
, list
) {
69 static void st_destroy(struct path_selector
*ps
)
71 struct selector
*s
= ps
->context
;
73 free_paths(&s
->valid_paths
);
74 free_paths(&s
->failed_paths
);
79 static int st_status(struct path_selector
*ps
, struct dm_path
*path
,
80 status_type_t type
, char *result
, unsigned maxlen
)
92 DMEMIT("%d %u ", atomic_read(&pi
->in_flight_size
),
93 pi
->relative_throughput
);
95 case STATUSTYPE_TABLE
:
96 DMEMIT("%u %u ", pi
->repeat_count
,
97 pi
->relative_throughput
);
105 static int st_add_path(struct path_selector
*ps
, struct dm_path
*path
,
106 int argc
, char **argv
, char **error
)
108 struct selector
*s
= ps
->context
;
109 struct path_info
*pi
;
110 unsigned repeat_count
= ST_MIN_IO
;
111 unsigned relative_throughput
= 1;
114 * Arguments: [<repeat_count> [<relative_throughput>]]
115 * <repeat_count>: The number of I/Os before switching path.
116 * If not given, default (ST_MIN_IO) is used.
117 * <relative_throughput>: The relative throughput value of
118 * the path among all paths in the path-group.
119 * The valid range: 0-<ST_MAX_RELATIVE_THROUGHPUT>
120 * If not given, minimum value '1' is used.
121 * If '0' is given, the path isn't selected while
122 * other paths having a positive value are
126 *error
= "service-time ps: incorrect number of arguments";
130 if (argc
&& (sscanf(argv
[0], "%u", &repeat_count
) != 1)) {
131 *error
= "service-time ps: invalid repeat count";
136 (sscanf(argv
[1], "%u", &relative_throughput
) != 1 ||
137 relative_throughput
> ST_MAX_RELATIVE_THROUGHPUT
)) {
138 *error
= "service-time ps: invalid relative_throughput value";
142 /* allocate the path */
143 pi
= kmalloc(sizeof(*pi
), GFP_KERNEL
);
145 *error
= "service-time ps: Error allocating path context";
150 pi
->repeat_count
= repeat_count
;
151 pi
->relative_throughput
= relative_throughput
;
152 atomic_set(&pi
->in_flight_size
, 0);
154 path
->pscontext
= pi
;
156 list_add_tail(&pi
->list
, &s
->valid_paths
);
161 static void st_fail_path(struct path_selector
*ps
, struct dm_path
*path
)
163 struct selector
*s
= ps
->context
;
164 struct path_info
*pi
= path
->pscontext
;
166 list_move(&pi
->list
, &s
->failed_paths
);
169 static int st_reinstate_path(struct path_selector
*ps
, struct dm_path
*path
)
171 struct selector
*s
= ps
->context
;
172 struct path_info
*pi
= path
->pscontext
;
174 list_move_tail(&pi
->list
, &s
->valid_paths
);
180 * Compare the estimated service time of 2 paths, pi1 and pi2,
181 * for the incoming I/O.
184 * < 0 : pi1 is better
185 * 0 : no difference between pi1 and pi2
186 * > 0 : pi2 is better
189 * Basically, the service time is estimated by:
190 * ('pi->in-flight-size' + 'incoming') / 'pi->relative_throughput'
191 * To reduce the calculation, some optimizations are made.
192 * (See comments inline)
194 static int st_compare_load(struct path_info
*pi1
, struct path_info
*pi2
,
197 size_t sz1
, sz2
, st1
, st2
;
199 sz1
= atomic_read(&pi1
->in_flight_size
);
200 sz2
= atomic_read(&pi2
->in_flight_size
);
203 * Case 1: Both have same throughput value. Choose less loaded path.
205 if (pi1
->relative_throughput
== pi2
->relative_throughput
)
209 * Case 2a: Both have same load. Choose higher throughput path.
210 * Case 2b: One path has no throughput value. Choose the other one.
213 !pi1
->relative_throughput
|| !pi2
->relative_throughput
)
214 return pi2
->relative_throughput
- pi1
->relative_throughput
;
217 * Case 3: Calculate service time. Choose faster path.
218 * Service time using pi1:
219 * st1 = (sz1 + incoming) / pi1->relative_throughput
220 * Service time using pi2:
221 * st2 = (sz2 + incoming) / pi2->relative_throughput
223 * To avoid the division, transform the expression to use
225 * Because ->relative_throughput > 0 here, if st1 < st2,
226 * the expressions below are the same meaning:
227 * (sz1 + incoming) / pi1->relative_throughput <
228 * (sz2 + incoming) / pi2->relative_throughput
229 * (sz1 + incoming) * pi2->relative_throughput <
230 * (sz2 + incoming) * pi1->relative_throughput
231 * So use the later one.
235 if (unlikely(sz1
>= ST_MAX_INFLIGHT_SIZE
||
236 sz2
>= ST_MAX_INFLIGHT_SIZE
)) {
238 * Size may be too big for multiplying pi->relative_throughput
240 * To avoid the overflow and mis-selection, shift down both.
242 sz1
>>= ST_MAX_RELATIVE_THROUGHPUT_SHIFT
;
243 sz2
>>= ST_MAX_RELATIVE_THROUGHPUT_SHIFT
;
245 st1
= sz1
* pi2
->relative_throughput
;
246 st2
= sz2
* pi1
->relative_throughput
;
251 * Case 4: Service time is equal. Choose higher throughput path.
253 return pi2
->relative_throughput
- pi1
->relative_throughput
;
256 static struct dm_path
*st_select_path(struct path_selector
*ps
,
257 unsigned *repeat_count
, size_t nr_bytes
)
259 struct selector
*s
= ps
->context
;
260 struct path_info
*pi
= NULL
, *best
= NULL
;
262 if (list_empty(&s
->valid_paths
))
265 /* Change preferred (first in list) path to evenly balance. */
266 list_move_tail(s
->valid_paths
.next
, &s
->valid_paths
);
268 list_for_each_entry(pi
, &s
->valid_paths
, list
)
269 if (!best
|| (st_compare_load(pi
, best
, nr_bytes
) < 0))
275 *repeat_count
= best
->repeat_count
;
280 static int st_start_io(struct path_selector
*ps
, struct dm_path
*path
,
283 struct path_info
*pi
= path
->pscontext
;
285 atomic_add(nr_bytes
, &pi
->in_flight_size
);
290 static int st_end_io(struct path_selector
*ps
, struct dm_path
*path
,
293 struct path_info
*pi
= path
->pscontext
;
295 atomic_sub(nr_bytes
, &pi
->in_flight_size
);
300 static struct path_selector_type st_ps
= {
301 .name
= "service-time",
302 .module
= THIS_MODULE
,
306 .destroy
= st_destroy
,
308 .add_path
= st_add_path
,
309 .fail_path
= st_fail_path
,
310 .reinstate_path
= st_reinstate_path
,
311 .select_path
= st_select_path
,
312 .start_io
= st_start_io
,
316 static int __init
dm_st_init(void)
318 int r
= dm_register_path_selector(&st_ps
);
321 DMERR("register failed %d", r
);
323 DMINFO("version " ST_VERSION
" loaded");
328 static void __exit
dm_st_exit(void)
330 int r
= dm_unregister_path_selector(&st_ps
);
333 DMERR("unregister failed %d", r
);
336 module_init(dm_st_init
);
337 module_exit(dm_st_exit
);
339 MODULE_DESCRIPTION(DM_NAME
" throughput oriented path selector");
340 MODULE_AUTHOR("Kiyoshi Ueda <k-ueda@ct.jp.nec.com>");
341 MODULE_LICENSE("GPL");