On Sat, Jan 10, 2015 at 10:56:53AM -0500, Tejun Heo wrote: ... > backpressure propagation. If you start mixing pages from different > cgroups in a single bio, the only options for handling it from the > lower layer is either splitting it into two separate requests and > finish the bio only on completion of both or choosing one victim > cgroup, essentially arbitrarily, both of which can lead to gross > priority inversion in many circumstances. Another aspect to consider here is that cfq-iosched doesn't even issue IOs from different cgroups at the same time. It schedules time slices for different cgroups and at any given time only issues a stream of IOs from a single cgroup. This is mainly because it's impossible to determine how much time the target device to process a specific IO request, especially when it's a write. The only way we can approxmiate the cost with an acceptable level of accuracy is bunching multiple IOs up and then measure the time to finish them in groups so that the the deviations can be spread across multiple requests. This means that we can't issue IOs belonging to different cgroups at the same time because we can't account for the divisions of cost for the different cgroups. Thanks. -- tejun -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>