From 584e30216896fd4de6301f9cf937829e16d22c49 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Mon, 30 Mar 2026 02:14:47 +0900 Subject: internal/netlink: set receive buffer size This is done by both systemd sd-device and AOSP ueventd to improve robustness. Rosa OS will still handle ENOBUFS via coldboot but a big buffer should mitigate this as well. Signed-off-by: Ophestra --- container/dispatcher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'container') diff --git a/container/dispatcher.go b/container/dispatcher.go index 9f971fa5..d3ff4f00 100644 --- a/container/dispatcher.go +++ b/container/dispatcher.go @@ -179,7 +179,7 @@ func (direct) mustLoopback(ctx context.Context, msg message.Msg) { lo = ifi.Index } - c, err := netlink.DialRoute() + c, err := netlink.DialRoute(0) if err != nil { msg.GetLogger().Fatalln(err) } -- cgit v1.3.1