diff options
author | Ken Sumrall <ksumrall@android.com> | 2011-08-24 17:58:01 -0700 |
---|---|---|
committer | Ken Sumrall <ksumrall@android.com> | 2011-08-24 17:58:01 -0700 |
commit | 9beafefd9b7dc5462b4d73479b20a8370d7fac71 (patch) | |
tree | dbb27ff59f466ea6a4986b795d0a8f72f71f00c9 /init.herring.rc | |
parent | 974dd04b73cefb74d88279e530b8c15a24fd0e02 (diff) | |
download | device_samsung_crespo-9beafefd9b7dc5462b4d73479b20a8370d7fac71.zip device_samsung_crespo-9beafefd9b7dc5462b4d73479b20a8370d7fac71.tar.gz device_samsung_crespo-9beafefd9b7dc5462b4d73479b20a8370d7fac71.tar.bz2 |
Enable nomblk_io_submit mount option for read-write ext4 filesystems.
The new mblk_io_submit code was turned on by default in 2.6.39, but it seems
have a bug that we hit on stingray. The new code was to improve performance
on 48-way systems, which we don't need on Android, so turn it off and use the
previous method by mounting with nomblk_io_submit.
Change-Id: I865d3ef8a94263b17d48a24c5352c6944637b0d1
Diffstat (limited to 'init.herring.rc')
-rwxr-xr-x | init.herring.rc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.herring.rc b/init.herring.rc index 85fa312..bdca209 100755 --- a/init.herring.rc +++ b/init.herring.rc @@ -35,7 +35,7 @@ on fs chmod 770 /efs/bluetooth chmod 770 /efs/imei mount ext4 /dev/block/platform/s3c-sdhci.0/by-name/system /system wait ro - mount ext4 /dev/block/platform/s3c-sdhci.0/by-name/userdata /data wait noatime nosuid nodev + mount ext4 /dev/block/platform/s3c-sdhci.0/by-name/userdata /data wait noatime nosuid nodev nomblk_io_submit export EXTERNAL_STORAGE /mnt/sdcard mkdir /mnt/sdcard 0000 system system |