Make two more changes to the ata request queue sorting code.
* Do not try to sort write requests. There's no point, the hard drive
has a write cache and a much better understanding of the media topology
and will sort the requests for us.
* Move the freeze point every 16 requests instead of every 128 to further
reduce the amount of reordering we allow to prevent older requests from
being delayed indefinitely by newer requests.
Note: the original ata code didn't code any limits at all, causing insanely
long latencies during heavy disk I/O for no good reason.
Reported-by: Hasso Tepper <hasso@estpak.ee>