From 0645ab8fae98a83aaf1b3244e218ae468d1d1e53 Mon Sep 17 00:00:00 2001 From: "Jan Alexander Steffens (heftig)" Date: Sat, 2 Sep 2023 00:00:59 +0200 Subject: [PATCH] config: Disable ZSWAP_EXCLUSIVE_LOADS_DEFAULT_ON There's been a report that it causes crashes: I've been compiling my own kernels for personal use and noticed that when reconciling with Arch's 6.5 testing commit, it becomes highly unstable in my Linode (1GB RAM). I traced it to the new option: +CONFIG_ZSWAP_EXCLUSIVE_LOADS_DEFAULT_ON=y My docker containers just crashes with various opcode and/or segfaults due to it. Just a notice if you're interested. Not really into filing bug reports unless someone files it in advance and then I just comment with my tests. --- PKGBUILD | 2 +- config | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 7fe7502..528737c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -39,7 +39,7 @@ validpgpkeys=( C7E7849466FE2358343588377258734B41C31549 # David Runge ) b2sums=('SKIP' - '338636f07f103b69df6fa84a80df63c7dfd93ee51753a9272764657ac2106ad44eacd25ad6b099c9edd6e945e66366f3d75a6b11514315c737e3957449e5446a') + 'fd37f5e2f0a687a0023b21fedf50941f23b98e9834ab8176cfe6d387f315442e05fd09caa0cfde184d17abd71bf8643a12cc0b184ec900112b5cdc3e49fa07b1') export KBUILD_BUILD_HOST=archlinux export KBUILD_BUILD_USER=$pkgbase diff --git a/config b/config index e953884..be8fd01 100644 --- a/config +++ b/config @@ -1053,7 +1053,7 @@ CONFIG_ZPOOL=y CONFIG_SWAP=y CONFIG_ZSWAP=y CONFIG_ZSWAP_DEFAULT_ON=y -CONFIG_ZSWAP_EXCLUSIVE_LOADS_DEFAULT_ON=y +# CONFIG_ZSWAP_EXCLUSIVE_LOADS_DEFAULT_ON is not set # CONFIG_ZSWAP_COMPRESSOR_DEFAULT_DEFLATE is not set # CONFIG_ZSWAP_COMPRESSOR_DEFAULT_LZO is not set # CONFIG_ZSWAP_COMPRESSOR_DEFAULT_842 is not set