From a2af37f08c341a3bd27d2ec4f0071cd571443a10 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 17 Jan 2020 15:07:26 +0100 Subject: prog: increase encodingexec buffer size Some of the programs involving netfilter syscalls produce errors about insufficient buffer size. Bump it more. --- prog/encodingexec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prog/encodingexec.go') diff --git a/prog/encodingexec.go b/prog/encodingexec.go index 45fb2d75e..abcfeffba 100644 --- a/prog/encodingexec.go +++ b/prog/encodingexec.go @@ -49,7 +49,7 @@ const ( ) const ( - ExecBufferSize = 2 << 20 + ExecBufferSize = 4 << 20 ExecNoCopyout = ^uint64(0) ) -- cgit mrf-deployment