Android 4.3 Update Brings TRIM to All Nexus Devices
by Brian Klug on July 29, 2013 8:00 PM ESTOne of the common complaints late in the life of the original Nexus 7 was slow storage I/O performance, leading to an inconsistent user experience. After a fresh flash, the Nexus 7 was speedy and performant, but after months of installing applications and using the tablet, things began slowing down. This was a friction point that many hoped would be fixed in the new Nexus 7 (2013) model, which it was. There’s even more to the story though, it turns out Google has fixed that storage I/O aging problem on all Nexus devices with the Android 4.3 update.
In our Nexus 7 (2013) review, I talked about how I had confirmed that Android 4.3 onboard the device had enabled support for fstrim, an application which TRIMs blocks not in used by the filesystem. TRIM is essentially the paging channel through which the OS tells an SSD or eMMC controller that a block is no longer in use, and thus ready for garbage collection. This is critical for maintaining performance on the controllers in use across smartphones and tablets and preventing aging-related I/O performance slowdown.
Although I had searched for direct confirmation before posting the Nexus 7 (2013) review, and had found some references to it, a reader of ours found fstrim inside vold (the volume daemon) and the notes essentially describe what I’ve said already.
I’ve learned a bit more on the conditions underlying when Android 4.3 will TRIM filesystems, as it wasn’t completely clear before. The Android framework will send out a “start idle maintenance window” event that the MountService listens for, and then invokes vold to fstrim filesystems when a few conditions have been met – the device hasn’t been touched for over an hour, no idle maintenance window event has been sent in 24 hours, and the device is either off-charger with 80% battery or on-charger with 30% battery. The goal is to have fstrim run roughly once every 24 hours if you’re in the habit of plugging the device in to charge every night.
Fstrim sends the FITRIM ioctl() command to all writable filesystems when invoked, which discards (TRIMs) blocks on the eMMC not used by the filesystem. Without TRIM the controller will track blocks that have data deleted by the filesystem, but the controller still believes has data it needs to track. TRIM is the signaling pathway through which the filesystem and OS can tell the controller that it can now consider those blocks unused and for garbage collection – different controllers will behave differently since it’s their prerogative to decide what happens next however.
It’s also easy to check and see that fstrim is running on devices over adb, by running and looking for it:
adb logcat -d | grep -i fstrim
Example output from a few Nexus devices I have handy which have been on for over 24 hours and have the Android 4.3 update installed.
Nexus 7 (2013)
┌─[brianklug@MBP] - [~/Downloads/APKs] - [Mon Jul 29, 03:30]└─[$] <> ./adb logcat -d | grep -i fstrimI/fstrim ( 172): Starting fstrim work...I/fstrim ( 172): Invoking FITRIM ioctl on /cacheI/fstrim ( 172): Trimmed 564789248 bytes on /cacheI/fstrim ( 172): Invoking FITRIM ioctl on /dataI/fstrim ( 172): Trimmed 25105637376 bytes on /dataI/fstrim ( 172): Invoking FITRIM ioctl on /persistI/fstrim ( 172): Trimmed 0 bytes on /persistI/fstrim ( 172): Finished fstrim work.I/fstrim ( 172): Starting fstrim work...I/fstrim ( 172): Invoking FITRIM ioctl on /cacheI/fstrim ( 172): Trimmed 0 bytes on /cacheI/fstrim ( 172): Invoking FITRIM ioctl on /dataI/fstrim ( 172): Trimmed 1045696512 bytes on /dataI/fstrim ( 172): Invoking FITRIM ioctl on /persistI/fstrim ( 172): Trimmed 0 bytes on /persistI/fstrim ( 172): Finished fstrim work.
Nexus 7 (2012)
┌─[brianklug@MBP] - [~/Downloads/APKs] - [Mon Jul 29, 03:46]└─[$] <> ./adb logcat -d | grep -i fstrimI/fstrim ( 122): Starting fstrim work...I/fstrim ( 122): Invoking FITRIM ioctl on /cacheI/fstrim ( 122): Trimmed 122961920 bytes on /cacheI/fstrim ( 122): Invoking FITRIM ioctl on /dataI/fstrim ( 122): Trimmed 1087574016 bytes on /dataE/fstrim ( 122): Cannot stat mount point /radioI/fstrim ( 122): Finished fstrim work.I/fstrim ( 122): Starting fstrim work...I/fstrim ( 122): Invoking FITRIM ioctl on /cacheI/fstrim ( 122): Trimmed 118923264 bytes on /cacheI/fstrim ( 122): Invoking FITRIM ioctl on /dataI/fstrim ( 122): Trimmed 782077952 bytes on /dataE/fstrim ( 122): Cannot stat mount point /radioI/fstrim ( 122): Finished fstrim work.
Nexus 4
┌─[brianklug@MBP] - [~/Downloads/APKs] - [Mon Jul 29, 03:47]└─[$] <> ./adb logcat -d | grep -i fstrim- waiting for device -I/fstrim ( 169): Starting fstrim work...I/fstrim ( 169): Invoking FITRIM ioctl on /cacheI/fstrim ( 169): Trimmed 115343360 bytes on /cacheI/fstrim ( 169): Invoking FITRIM ioctl on /dataI/fstrim ( 169): Trimmed 888254464 bytes on /dataI/fstrim ( 169): Invoking FITRIM ioctl on /persistI/fstrim ( 169): Trimmed 0 bytes on /persistI/fstrim ( 169): Finished fstrim work.I/fstrim ( 169): Starting fstrim work...I/fstrim ( 169): Invoking FITRIM ioctl on /cacheI/fstrim ( 169): Trimmed 113246208 bytes on /cacheI/fstrim ( 169): Invoking FITRIM ioctl on /dataI/fstrim ( 169): Trimmed 1431195648 bytes on /dataI/fstrim ( 169): Invoking FITRIM ioctl on /persistI/fstrim ( 169): Trimmed 0 bytes on /persistI/fstrim ( 169): Finished fstrim work.
Users who have been experiencing slow I/O performance should see an improvement after getting the Android 4.3 update and letting fstrim run in the background a few times. Anand (the resident king of SSD and TRIM) is running some tests to investigate how much I/O performance can vary after an fstrim run.
46 Comments
View All Comments
DuckSoup87 - Tuesday, July 30, 2013 - link
I can confirm that after three days running 4.3 on my Galaxy Nexus there's no sign of fstrim in the logcat. Probably I just didn't met the conditions required for starting it.geemaan - Tuesday, July 30, 2013 - link
I charge my gnex in the dock every night so fstrim should've been run by now. I extracted /system/bin/vold and it does contain the fstrim and FITRIM references.DuckSoup87 - Tuesday, July 30, 2013 - link
The fstrim command itself however is not there. I wonder if this new scheduled fstrim functionality calls directly fstrim, or if it re-implements it with system calls. If the former is true then I don't see how it is supposed to work on a gnex that lacks the fstrim executable...geemaan - Wednesday, July 31, 2013 - link
vold has fstrim functionality built in.geemaan - Thursday, August 1, 2013 - link
Well, now I know why fstrim is not invoked: because of the daydream (clock) that is running while the phone is charging in the dock. This night I connected the charger directly to the phone and this morning I found the fstrim references in logcat.tipoo - Monday, July 29, 2013 - link
I wonder if this will be any different from what lagfix already does, apart from being automatic. Lagfix just runs fstrim on pre 4.3, should have the same effect I guess. Its interesting android never had it before, what about other mobile operating systems? Some sure seem to keep their feet longer.arthur449 - Tuesday, July 30, 2013 - link
Thanks for the pointer. I'm stuck on 4.1.2 and lagfix allows me to use TRIM on my internal storage without creating yet another reason to be upset that I'm stuck on 4.1.2.Zingam - Tuesday, July 30, 2013 - link
Amazing! How is this possible at all? I wonder who is designing these technologies and why is this not available by default? Why so many computer technologies are release only half finished? It would be like a car that cannot turn left and the designer: "Go on, will patch it up, when you need to steer."dishayu - Tuesday, July 30, 2013 - link
Because hindsight is always 20/20.piroroadkill - Tuesday, July 30, 2013 - link
Not really, this was just poor design. It's not like TRIM is somehow a new command, only just discovered, or something.