This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Simple IO scheduler | |
* Based on Noop, Deadline and V(R) IO schedulers. | |
* | |
* Copyright (C) 2012 Miguel Boton <[email protected]> | |
* | |
* | |
* This algorithm does not do any kind of sorting, as it is aimed for | |
* aleatory access devices, but it does some basic merging. We try to | |
* keep minimum overhead to achieve low latency. |
NewerOlder