Mark Knecht writes:
I'm currently just using a single large partition & ext3. I didn't do anything special in fdisk so the partition might not be aligned as best it could be. I don't know.
See if the partition's starting block is 63 as it used to be in the past. In this case the alignment is wrong, as SSDs have 4K (or even 8K) sectors consisting of 8 (or 16) 512 byte blocks. The starting block should be divisible by 8 (or 16) because of the large sector size, if not, a file system sector spans over two drive sectors, and both heed to be accessed when reading a file system sector.
The size of an erasable block of SSDs is even larger, usually 512K, it would be best to align to that, too. A partition offset of 512K or 1M would avoid this.
Wonko