Hello, On Thu, Mar 28, 2013 at 04:38:08PM -0400, Vivek Goyal wrote: > If timing of unordered IO is an issue, then dm-crypt can try > to batch IO submission using blk_start_plug()/blk_finish_plug(). That way > dm-crypt can batch bio and control submission and there should not > be a need to put specific ordering logic in dm-crypt. Yes, it has to preserve and propagate the plugging boundaries and if you think about the implementation, maintaining issue order don't really need to be "sorted" per-se. Just keep the list of bios received but still going through encryption in the received order with a counter of in-progress bios in the plugging boundary. Link the outputs to the source bios somehow and when the counter hits zero, issue them in the same order. While keeping the specific order itself might not be essential, it's not gonna add any significant complexity or runtime overhead and I think it generally is a good idea for stacking drivers to preserve as much information and context as possible in general. Thanks. -- tejun -- dm-devel mailing list dm-devel@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/dm-devel