blk-timeout.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  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. #ifdef CONFIG_FAIL_IO_TIMEOUT
  10. static DECLARE_FAULT_ATTR(fail_io_timeout);
  11. static int __init setup_fail_io_timeout(char *str)
  12. {
  13. return setup_fault_attr(&fail_io_timeout, str);
  14. }
  15. __setup("fail_io_timeout=", setup_fail_io_timeout);
  16. int blk_should_fake_timeout(struct request_queue *q)
  17. {
  18. if (!test_bit(QUEUE_FLAG_FAIL_IO, &q->queue_flags))
  19. return 0;
  20. return should_fail(&fail_io_timeout, 1);
  21. }
  22. static int __init fail_io_timeout_debugfs(void)
  23. {
  24. return init_fault_attr_dentries(&fail_io_timeout, "fail_io_timeout");
  25. }
  26. late_initcall(fail_io_timeout_debugfs);
  27. ssize_t part_timeout_show(struct device *dev, struct device_attribute *attr,
  28. char *buf)
  29. {
  30. struct gendisk *disk = dev_to_disk(dev);
  31. int set = test_bit(QUEUE_FLAG_FAIL_IO, &disk->queue->queue_flags);
  32. return sprintf(buf, "%d\n", set != 0);
  33. }
  34. ssize_t part_timeout_store(struct device *dev, struct device_attribute *attr,
  35. const char *buf, size_t count)
  36. {
  37. struct gendisk *disk = dev_to_disk(dev);
  38. int val;
  39. if (count) {
  40. struct request_queue *q = disk->queue;
  41. char *p = (char *) buf;
  42. val = simple_strtoul(p, &p, 10);
  43. spin_lock_irq(q->queue_lock);
  44. if (val)
  45. queue_flag_set(QUEUE_FLAG_FAIL_IO, q);
  46. else
  47. queue_flag_clear(QUEUE_FLAG_FAIL_IO, q);
  48. spin_unlock_irq(q->queue_lock);
  49. }
  50. return count;
  51. }
  52. #endif /* CONFIG_FAIL_IO_TIMEOUT */
  53. /*
  54. * blk_delete_timer - Delete/cancel timer for a given function.
  55. * @req: request that we are canceling timer for
  56. *
  57. */
  58. void blk_delete_timer(struct request *req)
  59. {
  60. list_del_init(&req->timeout_list);
  61. }
  62. static void blk_rq_timed_out(struct request *req)
  63. {
  64. struct request_queue *q = req->q;
  65. enum blk_eh_timer_return ret;
  66. ret = q->rq_timed_out_fn(req);
  67. switch (ret) {
  68. case BLK_EH_HANDLED:
  69. __blk_complete_request(req);
  70. break;
  71. case BLK_EH_RESET_TIMER:
  72. blk_clear_rq_complete(req);
  73. blk_add_timer(req);
  74. break;
  75. case BLK_EH_NOT_HANDLED:
  76. /*
  77. * LLD handles this for now but in the future
  78. * we can send a request msg to abort the command
  79. * and we can move more of the generic scsi eh code to
  80. * the blk layer.
  81. */
  82. break;
  83. default:
  84. printk(KERN_ERR "block: bad eh return: %d\n", ret);
  85. break;
  86. }
  87. }
  88. void blk_rq_timed_out_timer(unsigned long data)
  89. {
  90. struct request_queue *q = (struct request_queue *) data;
  91. unsigned long flags, next = 0;
  92. struct request *rq, *tmp;
  93. spin_lock_irqsave(q->queue_lock, flags);
  94. list_for_each_entry_safe(rq, tmp, &q->timeout_list, timeout_list) {
  95. if (time_after_eq(jiffies, rq->deadline)) {
  96. list_del_init(&rq->timeout_list);
  97. /*
  98. * Check if we raced with end io completion
  99. */
  100. if (blk_mark_rq_complete(rq))
  101. continue;
  102. blk_rq_timed_out(rq);
  103. } else if (!next || time_after(next, rq->deadline))
  104. next = rq->deadline;
  105. }
  106. /*
  107. * next can never be 0 here with the list non-empty, since we always
  108. * bump ->deadline to 1 so we can detect if the timer was ever added
  109. * or not. See comment in blk_add_timer()
  110. */
  111. if (next)
  112. mod_timer(&q->timeout, round_jiffies_up(next));
  113. spin_unlock_irqrestore(q->queue_lock, flags);
  114. }
  115. /**
  116. * blk_abort_request -- Request request recovery for the specified command
  117. * @req: pointer to the request of interest
  118. *
  119. * This function requests that the block layer start recovery for the
  120. * request by deleting the timer and calling the q's timeout function.
  121. * LLDDs who implement their own error recovery MAY ignore the timeout
  122. * event if they generated blk_abort_req. Must hold queue lock.
  123. */
  124. void blk_abort_request(struct request *req)
  125. {
  126. if (blk_mark_rq_complete(req))
  127. return;
  128. blk_delete_timer(req);
  129. blk_rq_timed_out(req);
  130. }
  131. EXPORT_SYMBOL_GPL(blk_abort_request);
  132. /**
  133. * blk_add_timer - Start timeout timer for a single request
  134. * @req: request that is about to start running.
  135. *
  136. * Notes:
  137. * Each request has its own timer, and as it is added to the queue, we
  138. * set up the timer. When the request completes, we cancel the timer.
  139. */
  140. void blk_add_timer(struct request *req)
  141. {
  142. struct request_queue *q = req->q;
  143. unsigned long expiry;
  144. if (!q->rq_timed_out_fn)
  145. return;
  146. BUG_ON(!list_empty(&req->timeout_list));
  147. BUG_ON(test_bit(REQ_ATOM_COMPLETE, &req->atomic_flags));
  148. /*
  149. * Some LLDs, like scsi, peek at the timeout to prevent a
  150. * command from being retried forever.
  151. */
  152. if (!req->timeout)
  153. req->timeout = q->rq_timeout;
  154. req->deadline = jiffies + req->timeout;
  155. list_add_tail(&req->timeout_list, &q->timeout_list);
  156. /*
  157. * If the timer isn't already pending or this timeout is earlier
  158. * than an existing one, modify the timer. Round up to next nearest
  159. * second.
  160. */
  161. expiry = round_jiffies_up(req->deadline);
  162. if (!timer_pending(&q->timeout) ||
  163. time_before(expiry, q->timeout.expires))
  164. mod_timer(&q->timeout, expiry);
  165. }
  166. /**
  167. * blk_abort_queue -- Abort all request on given queue
  168. * @queue: pointer to queue
  169. *
  170. */
  171. void blk_abort_queue(struct request_queue *q)
  172. {
  173. unsigned long flags;
  174. struct request *rq, *tmp;
  175. LIST_HEAD(list);
  176. /*
  177. * Not a request based block device, nothing to abort
  178. */
  179. if (!q->request_fn)
  180. return;
  181. spin_lock_irqsave(q->queue_lock, flags);
  182. elv_abort_queue(q);
  183. /*
  184. * Splice entries to local list, to avoid deadlocking if entries
  185. * get readded to the timeout list by error handling
  186. */
  187. list_splice_init(&q->timeout_list, &list);
  188. list_for_each_entry_safe(rq, tmp, &list, timeout_list)
  189. blk_abort_request(rq);
  190. /*
  191. * Occasionally, blk_abort_request() will return without
  192. * deleting the element from the list. Make sure we add those back
  193. * instead of leaving them on the local stack list.
  194. */
  195. list_splice(&list, &q->timeout_list);
  196. spin_unlock_irqrestore(q->queue_lock, flags);
  197. }
  198. EXPORT_SYMBOL_GPL(blk_abort_queue);