Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9bb1a208 authored by Alexei Starovoitov's avatar Alexei Starovoitov Committed by David S. Miller
Browse files

tools: bpf_jit_disasm: increase image buffer size



JITed seccomp filters can be quite large if they check a lot of syscalls
Simply increase buffer size

Signed-off-by: default avatarAlexei Starovoitov <ast@plumgrid.com>
Acked-by: default avatarDaniel Borkmann <dborkman@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ed4afd45
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -171,7 +171,7 @@ int main(int argc, char **argv)
{
	int len, klen, opcodes = 0;
	char *kbuff;
	uint8_t image[4096];
	static uint8_t image[32768];

	if (argc > 1) {
		if (!strncmp("-o", argv[argc - 1], 2)) {