blk-timeout.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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. if (q->mq_ops)
  75. __blk_mq_complete_request(req);
  76. else
  77. __blk_complete_request(req);
  78. break;
  79. case BLK_EH_RESET_TIMER:
  80. blk_add_timer(req);
  81. blk_clear_rq_complete(req);
  82. break;
  83. case BLK_EH_NOT_HANDLED:
  84. /*
  85. * LLD handles this for now but in the future
  86. * we can send a request msg to abort the command
  87. * and we can move more of the generic scsi eh code to
  88. * the blk layer.
  89. */
  90. break;
  91. default:
  92. printk(KERN_ERR "block: bad eh return: %d\n", ret);
  93. break;
  94. }
  95. }
  96. void blk_rq_check_expired(struct request *rq, unsigned long *next_timeout,
  97. unsigned int *next_set)
  98. {
  99. if (time_after_eq(jiffies, rq->deadline)) {
  100. list_del_init(&rq->timeout_list);
  101. /*
  102. * Check if we raced with end io completion
  103. */
  104. if (!blk_mark_rq_complete(rq))
  105. blk_rq_timed_out(rq);
  106. } else if (!*next_set || time_after(*next_timeout, rq->deadline)) {
  107. *next_timeout = rq->deadline;
  108. *next_set = 1;
  109. }
  110. }
  111. void blk_rq_timed_out_timer(unsigned long data)
  112. {
  113. struct request_queue *q = (struct request_queue *) data;
  114. unsigned long flags, next = 0;
  115. struct request *rq, *tmp;
  116. int next_set = 0;
  117. spin_lock_irqsave(q->queue_lock, flags);
  118. list_for_each_entry_safe(rq, tmp, &q->timeout_list, timeout_list)
  119. blk_rq_check_expired(rq, &next, &next_set);
  120. if (next_set)
  121. mod_timer(&q->timeout, round_jiffies_up(next));
  122. spin_unlock_irqrestore(q->queue_lock, flags);
  123. }
  124. /**
  125. * blk_abort_request -- Request request recovery for the specified command
  126. * @req: pointer to the request of interest
  127. *
  128. * This function requests that the block layer start recovery for the
  129. * request by deleting the timer and calling the q's timeout function.
  130. * LLDDs who implement their own error recovery MAY ignore the timeout
  131. * event if they generated blk_abort_req. Must hold queue lock.
  132. */
  133. void blk_abort_request(struct request *req)
  134. {
  135. if (blk_mark_rq_complete(req))
  136. return;
  137. blk_delete_timer(req);
  138. blk_rq_timed_out(req);
  139. }
  140. EXPORT_SYMBOL_GPL(blk_abort_request);
  141. unsigned long blk_rq_timeout(unsigned long timeout)
  142. {
  143. unsigned long maxt;
  144. maxt = round_jiffies_up(jiffies + BLK_MAX_TIMEOUT);
  145. if (time_after(timeout, maxt))
  146. timeout = maxt;
  147. return timeout;
  148. }
  149. /**
  150. * blk_add_timer - Start timeout timer for a single request
  151. * @req: request that is about to start running.
  152. *
  153. * Notes:
  154. * Each request has its own timer, and as it is added to the queue, we
  155. * set up the timer. When the request completes, we cancel the timer.
  156. */
  157. void blk_add_timer(struct request *req)
  158. {
  159. struct request_queue *q = req->q;
  160. unsigned long expiry;
  161. if (!q->rq_timed_out_fn)
  162. return;
  163. BUG_ON(!list_empty(&req->timeout_list));
  164. /*
  165. * Some LLDs, like scsi, peek at the timeout to prevent a
  166. * command from being retried forever.
  167. */
  168. if (!req->timeout)
  169. req->timeout = q->rq_timeout;
  170. req->deadline = jiffies + req->timeout;
  171. if (!q->mq_ops)
  172. list_add_tail(&req->timeout_list, &req->q->timeout_list);
  173. /*
  174. * If the timer isn't already pending or this timeout is earlier
  175. * than an existing one, modify the timer. Round up to next nearest
  176. * second.
  177. */
  178. expiry = blk_rq_timeout(round_jiffies_up(req->deadline));
  179. if (!timer_pending(&q->timeout) ||
  180. time_before(expiry, q->timeout.expires)) {
  181. unsigned long diff = q->timeout.expires - expiry;
  182. /*
  183. * Due to added timer slack to group timers, the timer
  184. * will often be a little in front of what we asked for.
  185. * So apply some tolerance here too, otherwise we keep
  186. * modifying the timer because expires for value X
  187. * will be X + something.
  188. */
  189. if (!timer_pending(&q->timeout) || (diff >= HZ / 2))
  190. mod_timer(&q->timeout, expiry);
  191. }
  192. }