View Single Post
Posts: 992 | Thanked: 995 times | Joined on Dec 2009 @ California
#107
Some comments:

Originally Posted by ndi View Post
echo "30" > /proc/sys/vm/swappiness
Tendency to swap. 0 means swap as a last resort, 100 is swap as soon as possible.


More precisely - swapout. With 100 the kernel swaps out anything but it doesn't erase it from memory and uses it if it is still in memory. The value 100 guarantee your a minimal time for your application load or swap in, for exam - in a middle of your video somebody calls you and kernel starts downloading phone application immediately.

As disadvantage, 100 forces a flash channel I/O high usage which decreases a performance of downloading because it services swapout each time. It also decreases battery time life because kernel does a lot of unnecessary work.

page-cluster controls the number of pages which are written to swap in a single attempt. The swap I/O size.
The value "0" provides you a wider I/O channel to download application from flash because kernel uses small blocks for swapping and can put an application load request faster. In over case it may increase your swapout time and wear eMMC much faster.


echo "1" > /proc/sys/vm/laptop_mode
Laptop mode is used to minimize the time that the hard disk needs to be spun up, to conserve battery power on laptops.
It forces a huge time delay (up to 10min) between file system writes. Usually it is OK for N900 but if you have some regular system halts, unexpected reboots etc then you are in danger of losing directory data --> loosing your user files (even old and unchanged) and forcing system problems too.

Actually, it is not good things because "laptop_mode" was designed for disks - it tries to group multiple writes in short time instead of spreading it, so, it is a good for disks spin down. But it has no sense for flash-based systems like N900 and introduces a serious danger of losing old files.
 

The Following 11 Users Say Thank You to egoshin For This Useful Post: