Current-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: -current cloner interfaces broken/gone/unusable



Hi, this is too late reply.

In message <2532e215-e447-edaa-1f7b-5abf5205f8de%netbsd.org@localhost>
	on Tue, 24 Apr 2018 07:30:04 +0200,
	Frank Kardel <kardel%netbsd.org@localhost> wrote:
> There are also 2 other observations with a 8.99.12 userland:
> 
> named has now trouble with interface scanning.
> 
> 2018-04-24T05:13:34.522295+00:00 gateway named 345 - - automatic
> interface scanning terminated: not enough free resources
I found it on NetBSD 8.0_RC1 machine with both base named and
pkgsrc/net/bind910.

Below change seems to fix this problem although 16284 is something
large size without exact reason.  :-)

-- 
Takahiro Kambe <taca%back-street.net@localhost> / <taca%NetBSD.org@localhost>


--- bin/named/interfacemgr.c.orig	2018-03-08 20:55:52.000000000 +0000
+++ bin/named/interfacemgr.c
@@ -84,7 +84,7 @@ struct ns_interfacemgr {
 #ifdef USE_ROUTE_SOCKET
 	isc_task_t *		task;
 	isc_socket_t *		route;
-	unsigned char		buf[2048];
+	unsigned char		buf[16384];
 #endif
 };
 



Home | Main Index | Thread Index | Old Index