prog: increase encodingexec buffer size

Some of the programs involving netfilter syscalls
produce errors about insufficient buffer size. Bump it more.
This commit is contained in:
Dmitry Vyukov 2020-01-17 15:07:26 +01:00
parent 3de7aabbb7
commit a2af37f08c

View File

@ -49,7 +49,7 @@ const (
)
const (
ExecBufferSize = 2 << 20
ExecBufferSize = 4 << 20
ExecNoCopyout = ^uint64(0)
)