@4censord @nazokiyoubinbou @nixCraft There are two forms of secure erase for SSDs.
One involves flushing the key used for the wear leveling encryption. This is extremely fast, but it doesn’t actually erase the data; only makes it unreadable. Due to this, it doesn’t directly help with performance, so it is commonly followed by the second, older type.
The older type involves a voltage spike for about a tenth of a second. This completely wipes all data stored in the chip’s pages. This is the one which restores write performance, since all the pages are blank again (no mode read/erase/program cycle). Since this is a chip-level thing, it even wipes the data stored in spared pages.
@bob_zim @4censord @nixCraft Oh, I misunderstood. I thought that was referring to a simple block erase like what TRIM uses. That restores performance in the same basic way, but this mechanism takes it further by more thoroughly clearing the blocks I see.