Merge "Don't ostensibly back off fstrim but then do it anyway" into mnc-dev

This commit is contained in:
Christopher Tate
2015-04-29 00:22:29 +00:00
committed by Android (Google) Code Review

View File

@@ -580,7 +580,9 @@ class MountService extends IMountService.Stub
case H_FSTRIM: {
if (!isReady()) {
Slog.i(TAG, "fstrim requested, but no daemon connection yet; trying again");
sendMessageDelayed(obtainMessage(H_FSTRIM), DateUtils.SECOND_IN_MILLIS);
sendMessageDelayed(obtainMessage(H_FSTRIM, msg.obj),
DateUtils.SECOND_IN_MILLIS);
break;
}
Slog.i(TAG, "Running fstrim idle maintenance");