blk-timeout.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. /*
  2. * Functions related to generic timeout handling of requests.
  3. */
  4. #include <linux/kernel.h>
  5. #include <linux/module.h>
  6. #include <linux/blkdev.h>
  7. #include <linux/fault-inject.h>
  8. #include "blk.h"
  9. #include "blk-mq.h"
  10. #ifdef CONFIG_FAIL_IO_TIMEOUT
  11. static DECLARE_FAULT_ATTR(fail_io_timeout);
  12. static int __init setup_fail_io_timeout(char *str)
  13. {
  14. return setup_fault_attr(&fail_io_timeout, str);
  15. }
  16. __setup("fail_io_timeout=", setup_fail_io_timeout);
  17. int blk_should_fake_timeout(struct request_queue *q)
  18. {
  19. if (!test_bit(QUEUE_FLAG_FAIL_IO, &q->queue_flags))
  20. return 0;
  21. return should_fail(&fail_io_timeout, 1);
  22. }
  23. static int __init fail_io_timeout_debugfs(void)
  24. {
  25. struct dentry *dir = fault_create_debugfs_attr("fail_io_timeout",
  26. NULL, &fail_io_timeout);
  27. return PTR_ERR_OR_ZERO(dir);
  28. }
  29. late_initcall(fail_io_timeout_debugfs);
  30. ssize_t part_timeout_show(struct device *dev, struct device_attribute *attr,
  31. char *buf)
  32. {
  33. struct gendisk *disk = dev_to_disk(dev);
  34. int set = test_bit(QUEUE_FLAG_FAIL_IO, &disk->queue->queue_flags);
  35. return sprintf(buf, "%d\n", set != 0);
  36. }
  37. ssize_t part_timeout_store(struct device *dev, struct device_attribute *attr,
  38. const char *buf, size_t count)
  39. {
  40. struct gendisk *disk = dev_to_disk(dev);
  41. int val;
  42. if (count) {
  43. struct request_queue *q = disk->queue;
  44. char *p = (char *) buf;
  45. val = simple_strtoul(p, &p, 10);
  46. spin_lock_irq(q->queue_lock);
  47. if (val)
  48. queue_flag_set(QUEUE_FLAG_FAIL_IO, q);
  49. else
  50. queue_flag_clear(QUEUE_FLAG_FAIL_IO, q);
  51. spin_unlock_irq(q->queue_lock);
  52. }
  53. return count;
  54. }
  55. #endif /* CONFIG_FAIL_IO_TIMEOUT */
  56. /*
  57. * blk_delete_timer - Delete/cancel timer for a given function.
  58. * @req: request that we are canceling timer for
  59. *
  60. */
  61. void blk_delete_timer(struct request *req)
  62. {
  63. list_del_init(&req->timeout_list);
  64. }
  65. static void blk_rq_timed_out(struct request *req)
  66. {
  67. struct request_queue *q = req->q;
  68. enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
  69. if (q->rq_timed_out_fn)
  70. ret = q->rq_timed_out_fn(req);
  71. switch (ret) {
  72. case BLK_EH_HANDLED:
  73. /* Can we use req->errors here? */
  74. __blk_complete_request(req);
  75. break;
  76. case BLK_EH_RESET_TIMER:
  77. blk_add_timer(req);
  78. blk_clear_rq_complete(req);
  79. break;
  80. case BLK_EH_NOT_HANDLED:
  81. /*
  82. * LLD handles this for now but in the future
  83. * we can send a request msg to abort the command
  84. * and we can move more of the generic scsi eh code to
  85. * the blk layer.
  86. */
  87. break;
  88. default:
  89. printk(KERN_ERR "block: bad eh return: %d\n", ret);
  90. break;
  91. }
  92. }
  93. static void blk_rq_check_expired(struct request *rq, unsigned long *next_timeout,
  94. unsigned int *next_set)
  95. {
  96. if (time_after_eq(jiffies, rq->deadline)) {
  97. list_del_init(&rq->timeout_list);
  98. /*
  99. * Check if we raced with end io completion
  100. */
  101. if (!blk_mark_rq_complete(rq))
  102. blk_rq_timed_out(rq);
  103. } else if (!*next_set || time_after(*next_timeout, rq->deadline)) {
  104. *next_timeout = rq->deadline;
  105. *next_set = 1;
  106. }
  107. }
  108. void blk_rq_timed_out_timer(unsigned long data)
  109. {
  110. struct request_queue *q = (struct request_queue *) data;
  111. unsigned long flags, next = 0;
  112. struct request *rq, *tmp;
  113. int next_set = 0;
  114. spin_lock_irqsave(q->queue_lock, flags);
  115. list_for_each_entry_safe(rq, tmp, &q->timeout_list, timeout_list)
  116. blk_rq_check_expired(rq, &next, &next_set);
  117. if (next_set)
  118. mod_timer(&q->timeout, round_jiffies_up(next));
  119. spin_unlock_irqrestore(q->queue_lock, flags);
  120. }
  121. /**
  122. * blk_abort_request -- Request request recovery for the specified command
  123. * @req: pointer to the request of interest
  124. *
  125. * This function requests that the block layer start recovery for the
  126. * request by deleting the timer and calling the q's timeout function.
  127. * LLDDs who implement their own error recovery MAY ignore the timeout
  128. * event if they generated blk_abort_req. Must hold queue lock.
  129. */
  130. void blk_abort_request(struct request *req)
  131. {
  132. if (blk_mark_rq_complete(req))
  133. return;
  134. if (req->q->mq_ops) {
  135. blk_mq_rq_timed_out(req, false);
  136. } else {
  137. blk_delete_timer(req);
  138. blk_rq_timed_out(req);
  139. }
  140. }
  141. EXPORT_SYMBOL_GPL(blk_abort_request);
  142. unsigned long blk_rq_timeout(unsigned long timeout)
  143. {
  144. unsigned long maxt;
  145. maxt = round_jiffies_up(jiffies + BLK_MAX_TIMEOUT);
  146. if (time_after(timeout, maxt))
  147. timeout = maxt;
  148. return timeout;
  149. }
  150. /**
  151. * blk_add_timer - Start timeout timer for a single request
  152. * @req: request that is about to start running.
  153. *
  154. * Notes:
  155. * Each request has its own timer, and as it is added to the queue, we
  156. * set up the timer. When the request completes, we cancel the timer.
  157. */
  158. void blk_add_timer(struct request *req)
  159. {
  160. struct request_queue *q = req->q;
  161. unsigned long expiry;
  162. if (req->cmd_flags & REQ_NO_TIMEOUT)
  163. return;
  164. /* blk-mq has its own handler, so we don't need ->rq_timed_out_fn */
  165. if (!q->mq_ops && !q->rq_timed_out_fn)
  166. return;
  167. BUG_ON(!list_empty(&req->timeout_list));
  168. /*
  169. * Some LLDs, like scsi, peek at the timeout to prevent a
  170. * command from being retried forever.
  171. */
  172. if (!req->timeout)
  173. req->timeout = q->rq_timeout;
  174. req->deadline = jiffies + req->timeout;
  175. if (!q->mq_ops)
  176. list_add_tail(&req->timeout_list, &req->q->timeout_list);
  177. /*
  178. * If the timer isn't already pending or this timeout is earlier
  179. * than an existing one, modify the timer. Round up to next nearest
  180. * second.
  181. */
  182. expiry = blk_rq_timeout(round_jiffies_up(req->deadline));
  183. if (!timer_pending(&q->timeout) ||
  184. time_before(expiry, q->timeout.expires)) {
  185. unsigned long diff = q->timeout.expires - expiry;
  186. /*
  187. * Due to added timer slack to group timers, the timer
  188. * will often be a little in front of what we asked for.
  189. * So apply some tolerance here too, otherwise we keep
  190. * modifying the timer because expires for value X
  191. * will be X + something.
  192. */
  193. if (!timer_pending(&q->timeout) || (diff >= HZ / 2))
  194. mod_timer(&q->timeout, expiry);
  195. }
  196. }