https://lkml.org/lkml/2020/8/3/780 已被采纳

对于同步IO,例如__blkdev_direct_IO()内核函数中提交的IO可能是long IO(包含多个page的操作的io),完成该同步IO耗时较长,所以需要使用blk_io_schedule()代码代替io_schedule(),来避免出现不必要的task hung检测甚至crash; 对于其他同步IO,也需要使用blk_io_schedule(),防止异常情况出现导致的crash,如本patch的提交。

提交一个内核patch:use blk_io_schedule() for avoiding task hung in sync io

提交一个内核patch:use blk_io_schedule() for avoiding task hung in sync io

相关文章:

  • 2021-08-03
  • 2021-05-10
  • 2022-12-23
  • 2021-09-17
  • 2022-12-23
  • 2022-12-23
  • 2021-08-06
猜你喜欢
  • 2022-12-23
  • 2021-10-06
  • 2022-12-23
  • 2021-05-18
  • 2021-07-14
  • 2021-08-02
  • 2021-07-26
相关资源
相似解决方案