aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/at91
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2018-10-09 13:22:46 +0200
committerFelix Fietkau <nbd@nbd.name>2018-10-09 14:29:55 +0200
commit212aa332267641fa9fc9a16d39159decec95b4a1 (patch)
tree6e07eabe3b5aaecad8b70ca925b6f9dbc3a7d898 /target/linux/at91
parent567fe53230d60acadcd8138d7cc5de2f8231fdf9 (diff)
downloadupstream-212aa332267641fa9fc9a16d39159decec95b4a1.tar.gz
upstream-212aa332267641fa9fc9a16d39159decec95b4a1.tar.bz2
upstream-212aa332267641fa9fc9a16d39159decec95b4a1.zip
kernel: enable memory compaction
Compaction is the only memory management component to form high order (larger physically contiguous) memory blocks reliably. The page allocator relies on compaction heavily and the lack of the feature can lead to unexpected OOM killer invocations for high order memory requests. You shouldn't disable this option unless there really is a strong reason for it. Signed-off-by: Felix Fietkau <nbd@nbd.name> Signed-off-by: Michal Hrusecky <michal.hrusecky@nic.cz>
Diffstat (limited to 'target/linux/at91')
-rw-r--r--target/linux/at91/config-4.91
1 files changed, 0 insertions, 1 deletions
diff --git a/target/linux/at91/config-4.9 b/target/linux/at91/config-4.9
index a44d3ac522..926681fb3c 100644
--- a/target/linux/at91/config-4.9
+++ b/target/linux/at91/config-4.9
@@ -69,7 +69,6 @@ CONFIG_CMA_AREAS=7
CONFIG_CMDLINE="console=ttyS0,115200 initrd=0x21100000,25165824 root=/dev/ram0 rw"
CONFIG_COMMON_CLK=y
CONFIG_COMMON_CLK_AT91=y
-CONFIG_COMPACTION=y
CONFIG_COMPAT_BRK=y
CONFIG_CONFIGFS_FS=y
CONFIG_CONSOLE_TRANSLATIONS=y
'>191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265