From 45920482da59e5171f902dcb666b1bf350292622 Mon Sep 17 00:00:00 2001 From: Vivek Kumar Dutta Date: Fri, 5 Dec 2025 10:04:24 +0530 Subject: [PATCH] ubus: increase max ipc len to 20M to accomodate dm data --- ...-msglen-to-10M.patch => 0002-update-max-msglen-to-20M.patch} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename package/system/ubus/patches/{0002-update-max-msglen-to-10M.patch => 0002-update-max-msglen-to-20M.patch} (94%) diff --git a/package/system/ubus/patches/0002-update-max-msglen-to-10M.patch b/package/system/ubus/patches/0002-update-max-msglen-to-20M.patch similarity index 94% rename from package/system/ubus/patches/0002-update-max-msglen-to-10M.patch rename to package/system/ubus/patches/0002-update-max-msglen-to-20M.patch index 2ccbadfd26..ab44df624b 100644 --- a/package/system/ubus/patches/0002-update-max-msglen-to-10M.patch +++ b/package/system/ubus/patches/0002-update-max-msglen-to-20M.patch @@ -7,7 +7,7 @@ Index: ubus-2021-02-15-2537be01/CMakeLists.txt SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") SET(UBUS_UNIX_SOCKET "/var/run/ubus/ubus.sock") -SET(UBUS_MAX_MSGLEN 1048576) -+SET(UBUS_MAX_MSGLEN 10485760) ++SET(UBUS_MAX_MSGLEN 20971520) ADD_DEFINITIONS( -DUBUS_UNIX_SOCKET="${UBUS_UNIX_SOCKET}") ADD_DEFINITIONS( -DUBUS_MAX_MSGLEN=${UBUS_MAX_MSGLEN})