diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-01-17 15:07:26 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-01-18 21:02:24 +0100 |
| commit | a2af37f08c341a3bd27d2ec4f0071cd571443a10 (patch) | |
| tree | 9e5cc4ea121d50653afc07b19f16a89627f835e9 | |
| parent | 3de7aabbb79a6c2267f5d7ee8a8aaa83f63305b7 (diff) | |
prog: increase encodingexec buffer size
Some of the programs involving netfilter syscalls
produce errors about insufficient buffer size. Bump it more.
| -rw-r--r-- | prog/encodingexec.go | 2 |
1 files changed, 1 insertions, 1 deletions
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) ) |
