Every 20 descriptors turns out to be to few append commands with
newer/faster CPUs.  Pushing every 4 still cuts down on MMIO writes to an
acceptable level without letting the DMA engine run out of work.
Signed-off-by: Chris Leech <christopher.leech@intel.com>
        list_splice_init(&new_chain, ioat_chan->used_desc.prev);
 
        ioat_chan->pending += desc_count;
-       if (ioat_chan->pending >= 20) {
+       if (ioat_chan->pending >= 4) {
                append = 1;
                ioat_chan->pending = 0;
        }
 }
 
 /* MODULE API */
-MODULE_VERSION("1.7");
+MODULE_VERSION("1.9");
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("Intel Corporation");