As known, the gingerbread is going to adopt ext4 to replace the YAFFS.
The reason seems to be that YAFFS is single-threaded.
Will someone explain what does “single-threaded” mean in the area of file system?
So ext4 is multi-threaded? From what aspect?
thanks.
Merlyn’s comment was the right one. Per that document:
IOW, only one thread can write to the whole partition at once.
Most Linux filesystems, like ext4, allow multiple threads to write at once (though file-level locks may serialize access to individual files).