Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[OxygenOS] 9.0.4 - Incorrect swappiness value / Frequent lag on Oneplus 5 #50

Open
sxravan opened this issue Apr 12, 2020 · 3 comments
Open

Comments

@sxravan
Copy link

sxravan commented Apr 12, 2020

Hello,

I have rooted my OnePlus with with OxygenOS 9.0.4. I was navigating through all files and found that the value for the swappiness is 100.

$ su -c "cat /proc/sys/vm/swappiness"
100

To be noted that swappiness is the value which affects how aggressively a Linux system should use swap. 100 => always use swap, 0=> swap, but less aggressively.

Can you please add the value of 0 as default for your future OxygenOS release ?

I have made a quick fix on my phone, adding this code to a bashrc on termux. Everytime I reboot my phone, the first thing to do is open Termux to change the swappiness value.

$ cat .bashrc
ACTUALVAL=$(su -c "cat /proc/sys/vm/swappiness")
if [ $ACTUALVAL -ne 0 ]; then
        su -c "sysctl -w vm.swappiness=0"
fi

Since then, my device has stopped being laggy, playing games (Asphalt 9), still no swap is being used.

$ uptime
 14:32:24 up 1 day, 18:13,  load average: 4.33, 4.65, 5.01
$ free -h
              total        used        free      shared  buff/cache   available
Mem:          7.5Gi       4.8Gi       103Mi        20Mi       2.7Gi       2.6Gi
Swap:         1.0Gi          0B       1.0Gi

Regards,
Shravan

@sxravan
Copy link
Author

sxravan commented Apr 12, 2020

With the .bashrc fix, my swappiness is always 0.

$ su -c "cat /proc/sys/vm/swappiness"
0

Is there any way to persist this change? On Linux platforms (servers, desktop), the change can be persisted in /etc/sysctl.conf, is there an equivalent for OxygenOS ?

Regards,
Shravan

@vaahi
Copy link

vaahi commented Apr 12, 2020

I did the same thing and wowwwwwwwwwwwwwwwwwww no more lags now :) My oneplus works perfectly fine ^^

@GirishMahabir
Copy link

Only got positive results till now!!
Working just fine.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants