diff options
author | San Mehat <san@google.com> | 2009-06-02 10:33:28 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-06-02 10:33:28 -0700 |
commit | efc0c13b522ce33252bff02048c2bff9cd95658f (patch) | |
tree | 1dc711a9f1ce23674ae8762930c4106c2a4f8218 /vold | |
parent | c4c8d0ec3fcfbd9cf69152fba12ce248db989aa5 (diff) | |
parent | f754f740a3e06212836f7465001edb0fe5157ba8 (diff) | |
download | core-efc0c13b522ce33252bff02048c2bff9cd95658f.tar.gz core-efc0c13b522ce33252bff02048c2bff9cd95658f.tar.bz2 core-efc0c13b522ce33252bff02048c2bff9cd95658f.zip |
am f754f740: Revert "Mount SD card synchronous. This is an experimental change intended to"
Merge commit 'f754f740a3e06212836f7465001edb0fe5157ba8'
* commit 'f754f740a3e06212836f7465001edb0fe5157ba8':
Revert "Mount SD card synchronous. This is an experimental change intended to"
Diffstat (limited to 'vold')
-rw-r--r-- | vold/volmgr_vfat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vold/volmgr_vfat.c b/vold/volmgr_vfat.c index 4013df889..2b0e1fa1e 100644 --- a/vold/volmgr_vfat.c +++ b/vold/volmgr_vfat.c @@ -110,7 +110,7 @@ int vfat_mount(blkdev_t *dev, volume_t *vol, boolean safe_mode) LOG_VOL("vfat_mount(%d:%d, %s, %d):", dev->major, dev->minor, vol->mount_point, safe_mode); #endif - flags = MS_NODEV | MS_NOEXEC | MS_NOSUID | MS_DIRSYNC | MS_SYNCHRONOUS; + flags = MS_NODEV | MS_NOEXEC | MS_NOSUID | MS_DIRSYNC; if (vol->state == volstate_mounted) { LOG_VOL("Remounting %d:%d on %s, safe mode %d", dev->major, |