From a675cfe4f70747ccc107c04162df6ce72d42b7ad Mon Sep 17 00:00:00 2001 From: Varun Garg Date: Wed, 29 Jan 2020 15:09:40 +0530 Subject: [PATCH] sdm660: post_boot: Update memlat polling to 8 ms on Saipan Update the polling_interval to 8 ms for all memlat devices to inline with 4ms tick Change-Id: I10182bae1771d6f3d75e92a63a8b63025f46bd2c --- rootdir/bin/init.qcom.post_boot.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rootdir/bin/init.qcom.post_boot.sh b/rootdir/bin/init.qcom.post_boot.sh index 6f63c428..6cb7524b 100644 --- a/rootdir/bin/init.qcom.post_boot.sh +++ b/rootdir/bin/init.qcom.post_boot.sh @@ -3643,7 +3643,7 @@ case "$target" in for memlat in $device/*qcom,devfreq-l3/*cpu*-lat/devfreq/*cpu*-lat do echo "mem_latency" > $memlat/governor - echo 10 > $memlat/polling_interval + echo 8 > $memlat/polling_interval echo 400 > $memlat/mem_latency/ratio_ceil done @@ -3657,7 +3657,7 @@ case "$target" in for memlat in $device/*cpu*-lat/devfreq/*cpu*-lat do echo "mem_latency" > $memlat/governor - echo 10 > $memlat/polling_interval + echo 8 > $memlat/polling_interval echo 400 > $memlat/mem_latency/ratio_ceil done @@ -3677,7 +3677,7 @@ case "$target" in for latfloor in $device/*cpu*-ddr-latfloor*/devfreq/*cpu-ddr-latfloor* do echo "compute" > $latfloor/governor - echo 10 > $latfloor/polling_interval + echo 8 > $latfloor/polling_interval done done