On 04/03/2013 01:21 PM, Benjamin ESTRABAUD wrote: > It seems that you are running random 4K writes on this array (unless you > are running the test on the SSD directly here?). If so, you are writing > lots of 4K sectors on independant 192KB stripes. This means that the > whole 192KB of stripe needs to be first read, copied to memory, modified > with the new 4K of data, have its parity calculated and the new stripe > rewritten to the underlying disks. That's not strictly necessary. For each 4k block to be written, it's sufficient to read the data block and the corresponding parity block (2x4k), calculate the changes in the parity block from the difference between the old and new data block, and write both data and parity (2x4k). Thus for every write IOP, 4 RAID IOPS are needed (2x read, 2x write). Doesn't MD do it this way? Martin -- To unsubscribe from this list: send the line "unsubscribe linux-raid" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html