dm-service-time.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. /*
  2. * Copyright (C) 2007-2009 NEC Corporation. All Rights Reserved.
  3. *
  4. * Module Author: Kiyoshi Ueda
  5. *
  6. * This file is released under the GPL.
  7. *
  8. * Throughput oriented path selector.
  9. */
  10. #include "dm.h"
  11. #include "dm-path-selector.h"
  12. #include <linux/slab.h>
  13. #include <linux/module.h>
  14. #define DM_MSG_PREFIX "multipath service-time"
  15. #define ST_MIN_IO 1
  16. #define ST_MAX_RELATIVE_THROUGHPUT 100
  17. #define ST_MAX_RELATIVE_THROUGHPUT_SHIFT 7
  18. #define ST_MAX_INFLIGHT_SIZE ((size_t)-1 >> ST_MAX_RELATIVE_THROUGHPUT_SHIFT)
  19. #define ST_VERSION "0.2.0"
  20. struct selector {
  21. struct list_head valid_paths;
  22. struct list_head failed_paths;
  23. };
  24. struct path_info {
  25. struct list_head list;
  26. struct dm_path *path;
  27. unsigned repeat_count;
  28. unsigned relative_throughput;
  29. atomic_t in_flight_size; /* Total size of in-flight I/Os */
  30. };
  31. static struct selector *alloc_selector(void)
  32. {
  33. struct selector *s = kmalloc(sizeof(*s), GFP_KERNEL);
  34. if (s) {
  35. INIT_LIST_HEAD(&s->valid_paths);
  36. INIT_LIST_HEAD(&s->failed_paths);
  37. }
  38. return s;
  39. }
  40. static int st_create(struct path_selector *ps, unsigned argc, char **argv)
  41. {
  42. struct selector *s = alloc_selector();
  43. if (!s)
  44. return -ENOMEM;
  45. ps->context = s;
  46. return 0;
  47. }
  48. static void free_paths(struct list_head *paths)
  49. {
  50. struct path_info *pi, *next;
  51. list_for_each_entry_safe(pi, next, paths, list) {
  52. list_del(&pi->list);
  53. kfree(pi);
  54. }
  55. }
  56. static void st_destroy(struct path_selector *ps)
  57. {
  58. struct selector *s = ps->context;
  59. free_paths(&s->valid_paths);
  60. free_paths(&s->failed_paths);
  61. kfree(s);
  62. ps->context = NULL;
  63. }
  64. static int st_status(struct path_selector *ps, struct dm_path *path,
  65. status_type_t type, char *result, unsigned maxlen)
  66. {
  67. unsigned sz = 0;
  68. struct path_info *pi;
  69. if (!path)
  70. DMEMIT("0 ");
  71. else {
  72. pi = path->pscontext;
  73. switch (type) {
  74. case STATUSTYPE_INFO:
  75. DMEMIT("%d %u ", atomic_read(&pi->in_flight_size),
  76. pi->relative_throughput);
  77. break;
  78. case STATUSTYPE_TABLE:
  79. DMEMIT("%u %u ", pi->repeat_count,
  80. pi->relative_throughput);
  81. break;
  82. }
  83. }
  84. return sz;
  85. }
  86. static int st_add_path(struct path_selector *ps, struct dm_path *path,
  87. int argc, char **argv, char **error)
  88. {
  89. struct selector *s = ps->context;
  90. struct path_info *pi;
  91. unsigned repeat_count = ST_MIN_IO;
  92. unsigned relative_throughput = 1;
  93. /*
  94. * Arguments: [<repeat_count> [<relative_throughput>]]
  95. * <repeat_count>: The number of I/Os before switching path.
  96. * If not given, default (ST_MIN_IO) is used.
  97. * <relative_throughput>: The relative throughput value of
  98. * the path among all paths in the path-group.
  99. * The valid range: 0-<ST_MAX_RELATIVE_THROUGHPUT>
  100. * If not given, minimum value '1' is used.
  101. * If '0' is given, the path isn't selected while
  102. * other paths having a positive value are
  103. * available.
  104. */
  105. if (argc > 2) {
  106. *error = "service-time ps: incorrect number of arguments";
  107. return -EINVAL;
  108. }
  109. if (argc && (sscanf(argv[0], "%u", &repeat_count) != 1)) {
  110. *error = "service-time ps: invalid repeat count";
  111. return -EINVAL;
  112. }
  113. if ((argc == 2) &&
  114. (sscanf(argv[1], "%u", &relative_throughput) != 1 ||
  115. relative_throughput > ST_MAX_RELATIVE_THROUGHPUT)) {
  116. *error = "service-time ps: invalid relative_throughput value";
  117. return -EINVAL;
  118. }
  119. /* allocate the path */
  120. pi = kmalloc(sizeof(*pi), GFP_KERNEL);
  121. if (!pi) {
  122. *error = "service-time ps: Error allocating path context";
  123. return -ENOMEM;
  124. }
  125. pi->path = path;
  126. pi->repeat_count = repeat_count;
  127. pi->relative_throughput = relative_throughput;
  128. atomic_set(&pi->in_flight_size, 0);
  129. path->pscontext = pi;
  130. list_add_tail(&pi->list, &s->valid_paths);
  131. return 0;
  132. }
  133. static void st_fail_path(struct path_selector *ps, struct dm_path *path)
  134. {
  135. struct selector *s = ps->context;
  136. struct path_info *pi = path->pscontext;
  137. list_move(&pi->list, &s->failed_paths);
  138. }
  139. static int st_reinstate_path(struct path_selector *ps, struct dm_path *path)
  140. {
  141. struct selector *s = ps->context;
  142. struct path_info *pi = path->pscontext;
  143. list_move_tail(&pi->list, &s->valid_paths);
  144. return 0;
  145. }
  146. /*
  147. * Compare the estimated service time of 2 paths, pi1 and pi2,
  148. * for the incoming I/O.
  149. *
  150. * Returns:
  151. * < 0 : pi1 is better
  152. * 0 : no difference between pi1 and pi2
  153. * > 0 : pi2 is better
  154. *
  155. * Description:
  156. * Basically, the service time is estimated by:
  157. * ('pi->in-flight-size' + 'incoming') / 'pi->relative_throughput'
  158. * To reduce the calculation, some optimizations are made.
  159. * (See comments inline)
  160. */
  161. static int st_compare_load(struct path_info *pi1, struct path_info *pi2,
  162. size_t incoming)
  163. {
  164. size_t sz1, sz2, st1, st2;
  165. sz1 = atomic_read(&pi1->in_flight_size);
  166. sz2 = atomic_read(&pi2->in_flight_size);
  167. /*
  168. * Case 1: Both have same throughput value. Choose less loaded path.
  169. */
  170. if (pi1->relative_throughput == pi2->relative_throughput)
  171. return sz1 - sz2;
  172. /*
  173. * Case 2a: Both have same load. Choose higher throughput path.
  174. * Case 2b: One path has no throughput value. Choose the other one.
  175. */
  176. if (sz1 == sz2 ||
  177. !pi1->relative_throughput || !pi2->relative_throughput)
  178. return pi2->relative_throughput - pi1->relative_throughput;
  179. /*
  180. * Case 3: Calculate service time. Choose faster path.
  181. * Service time using pi1:
  182. * st1 = (sz1 + incoming) / pi1->relative_throughput
  183. * Service time using pi2:
  184. * st2 = (sz2 + incoming) / pi2->relative_throughput
  185. *
  186. * To avoid the division, transform the expression to use
  187. * multiplication.
  188. * Because ->relative_throughput > 0 here, if st1 < st2,
  189. * the expressions below are the same meaning:
  190. * (sz1 + incoming) / pi1->relative_throughput <
  191. * (sz2 + incoming) / pi2->relative_throughput
  192. * (sz1 + incoming) * pi2->relative_throughput <
  193. * (sz2 + incoming) * pi1->relative_throughput
  194. * So use the later one.
  195. */
  196. sz1 += incoming;
  197. sz2 += incoming;
  198. if (unlikely(sz1 >= ST_MAX_INFLIGHT_SIZE ||
  199. sz2 >= ST_MAX_INFLIGHT_SIZE)) {
  200. /*
  201. * Size may be too big for multiplying pi->relative_throughput
  202. * and overflow.
  203. * To avoid the overflow and mis-selection, shift down both.
  204. */
  205. sz1 >>= ST_MAX_RELATIVE_THROUGHPUT_SHIFT;
  206. sz2 >>= ST_MAX_RELATIVE_THROUGHPUT_SHIFT;
  207. }
  208. st1 = sz1 * pi2->relative_throughput;
  209. st2 = sz2 * pi1->relative_throughput;
  210. if (st1 != st2)
  211. return st1 - st2;
  212. /*
  213. * Case 4: Service time is equal. Choose higher throughput path.
  214. */
  215. return pi2->relative_throughput - pi1->relative_throughput;
  216. }
  217. static struct dm_path *st_select_path(struct path_selector *ps,
  218. unsigned *repeat_count, size_t nr_bytes)
  219. {
  220. struct selector *s = ps->context;
  221. struct path_info *pi = NULL, *best = NULL;
  222. if (list_empty(&s->valid_paths))
  223. return NULL;
  224. /* Change preferred (first in list) path to evenly balance. */
  225. list_move_tail(s->valid_paths.next, &s->valid_paths);
  226. list_for_each_entry(pi, &s->valid_paths, list)
  227. if (!best || (st_compare_load(pi, best, nr_bytes) < 0))
  228. best = pi;
  229. if (!best)
  230. return NULL;
  231. *repeat_count = best->repeat_count;
  232. return best->path;
  233. }
  234. static int st_start_io(struct path_selector *ps, struct dm_path *path,
  235. size_t nr_bytes)
  236. {
  237. struct path_info *pi = path->pscontext;
  238. atomic_add(nr_bytes, &pi->in_flight_size);
  239. return 0;
  240. }
  241. static int st_end_io(struct path_selector *ps, struct dm_path *path,
  242. size_t nr_bytes)
  243. {
  244. struct path_info *pi = path->pscontext;
  245. atomic_sub(nr_bytes, &pi->in_flight_size);
  246. return 0;
  247. }
  248. static struct path_selector_type st_ps = {
  249. .name = "service-time",
  250. .module = THIS_MODULE,
  251. .table_args = 2,
  252. .info_args = 2,
  253. .create = st_create,
  254. .destroy = st_destroy,
  255. .status = st_status,
  256. .add_path = st_add_path,
  257. .fail_path = st_fail_path,
  258. .reinstate_path = st_reinstate_path,
  259. .select_path = st_select_path,
  260. .start_io = st_start_io,
  261. .end_io = st_end_io,
  262. };
  263. static int __init dm_st_init(void)
  264. {
  265. int r = dm_register_path_selector(&st_ps);
  266. if (r < 0)
  267. DMERR("register failed %d", r);
  268. DMINFO("version " ST_VERSION " loaded");
  269. return r;
  270. }
  271. static void __exit dm_st_exit(void)
  272. {
  273. int r = dm_unregister_path_selector(&st_ps);
  274. if (r < 0)
  275. DMERR("unregister failed %d", r);
  276. }
  277. module_init(dm_st_init);
  278. module_exit(dm_st_exit);
  279. MODULE_DESCRIPTION(DM_NAME " throughput oriented path selector");
  280. MODULE_AUTHOR("Kiyoshi Ueda <k-ueda@ct.jp.nec.com>");
  281. MODULE_LICENSE("GPL");