]> git.puffer.fish Git - mirror/frr.git/commitdiff
zebra: remove netlink buffer size log message 10355/head
authorDavid Lamparter <equinox@opensourcerouting.org>
Sun, 16 Jan 2022 21:26:45 +0000 (22:26 +0100)
committerDavid Lamparter <equinox@opensourcerouting.org>
Mon, 17 Jan 2022 08:46:19 +0000 (09:46 +0100)
... really not much point in printing this.

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
zebra/kernel_netlink.c

index 86e8f65b5f8133200ba2ab1b2d877d75ace97210..d614aa26d0a8f6706d7e75d3a733ecff1df3d2af 100644 (file)
@@ -271,9 +271,6 @@ static int netlink_recvbuf(struct nlsock *nl, uint32_t newsize)
                             safe_strerror(errno));
                return -1;
        }
-
-       zlog_info("Setting netlink socket receive buffer size: %u -> %u",
-                 oldsize, newsize);
        return 0;
 }