diff options
author | Nathan Hintz <nlhintz@hotmail.com> | 2015-01-24 04:36:47 +0100 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-01-28 10:46:37 +0100 |
commit | 7676df3226da5391c2dfda2ed29a40500e04e15b (patch) | |
tree | 4ca8b0104d191e7e5bc98792d17c67664c02827b /initd | |
parent | 7e6045fe4558e442e97e4a8967f08689d53f2cc4 (diff) | |
download | unitd-7676df3226da5391c2dfda2ed29a40500e04e15b.tar unitd-7676df3226da5391c2dfda2ed29a40500e04e15b.zip |
procd: increase memory allocated for tmpfs on zram
Devices with <= 32MB of ram get half of memory allocated to zram (up to 16MB).
Devices with > 32MB of ram get just 8MB of memory allocated to zram.
Increase memory allocated to devices with > 32MB ram to 16MB.
Signed-off-by: Nathan Hintz <nlhintz@hotmail.com>
Diffstat (limited to 'initd')
-rw-r--r-- | initd/zram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/initd/zram.c b/initd/zram.c index 4dc1d2e..49480af 100644 --- a/initd/zram.c +++ b/initd/zram.c @@ -44,7 +44,7 @@ proc_meminfo(void) fclose(fp); if (val > KB(32)) - val = KB(16); + val = KB(32); return val; } |