kernel: improve handling of CONFIG_IO_URING
authorTony Ambardar <itugrok@yahoo.com>
Tue, 25 Apr 2023 05:28:44 +0000 (22:28 -0700)
committerTony Ambardar <itugrok@yahoo.com>
Wed, 3 May 2023 17:26:17 +0000 (10:26 -0700)
commit3d66f551611de37b88182c64efa091298a9e7f2c
tree9186ba669b95da45e15d7e20f3d1e3f9b1ce742d
parent3980dfcd05741bd650d0e3d0938bfd071ffa7824
kernel: improve handling of CONFIG_IO_URING

Kernel setting CONFIG_IO_URING supports high-performance I/O for file
access and servers, generally for more performant platforms, and adds
~45 KB to kernel sizes. The need for this on less "beefy" devices is
questionable, as is the size cost considering many platforms have kernel
size limits which require tricky repartitioning if outgrown. The size
cost is also large relative to the ~180 KB bump expected between major
OpenWRT kernel releases.

No OpenWrt packages have hard dependencies on this; samba4 and mariadb
can take advantage if available (+KERNEL_IO_URING:liburing) but
otherwise build and work fine.

Since CONFIG_IO_URING is already managed via the KERNEL_IO_URING setting
in Config-kernel.in (default Y), remove it from those target configs
which unconditionally enable it, and update the defaults to enable it
conditionally only on more powerful 64-bit x86 and arm devices. It may
still be manually enabled as needed for high-performance custom builds.

Signed-off-by: Tony Ambardar <itugrok@yahoo.com>
15 files changed:
config/Config-kernel.in
target/linux/airoha/config-5.15
target/linux/bcm53xx/config-5.10
target/linux/bcm53xx/config-5.15
target/linux/gemini/config-5.10
target/linux/gemini/config-5.15
target/linux/imx/config-5.15
target/linux/ipq40xx/config-5.15
target/linux/mediatek/filogic/config-5.15
target/linux/mediatek/mt7623/config-5.15
target/linux/mediatek/mt7629/config-5.15
target/linux/rockchip/armv8/config-5.10
target/linux/rockchip/armv8/config-5.15
target/linux/x86/config-5.10
target/linux/x86/config-5.15