dm-service-time.c 8.2 KB

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