Merge "fixes mStartedUsers shoule be locked by mLock, not mVolumes" am: 1cd6248012

am: 130cb9232a

Change-Id: Ia3d8581e5641e2da8a5d84222edb81829edbc6d0
This commit is contained in:
yuanhuihui
2016-09-06 21:42:46 +00:00
committed by android-build-merger

View File

@@ -922,7 +922,7 @@ class MountService extends IMountService.Stub
// Record user as started so newly mounted volumes kick off events
// correctly, then synthesize events for any already-mounted volumes.
synchronized (mVolumes) {
synchronized (mLock) {
for (int i = 0; i < mVolumes.size(); i++) {
final VolumeInfo vol = mVolumes.valueAt(i);
if (vol.isVisibleForRead(userId) && vol.isMountedReadable()) {
@@ -945,7 +945,7 @@ class MountService extends IMountService.Stub
} catch (NativeDaemonConnectorException ignored) {
}
synchronized (mVolumes) {
synchronized (mLock) {
mSystemUnlockedUsers = ArrayUtils.removeInt(mSystemUnlockedUsers, userId);
}
}