BPF JIT?

Questions about Wine on Linux
Locked
LateralShift
Level 2
Level 2
Posts: 27
Joined: Mon Nov 16, 2020 4:06 pm

BPF JIT?

Post by LateralShift »

Every time I start an application with wine (6.0 Staging, Debian 10.7) I get this message:

Code: Select all

002c:err:seh:check_bpf_jit_enable BPF JIT is not enabled in the kernel, enable it to reduce syscall emulation overhead.
I have tried searching around and can't find any info on BPF JIT, so I have several questions:
What is it?
How do I enable it on Debian?
Will it make my kernel less secure?
Is there likely to be significant performance gain?
jkfloris
Level 12
Level 12
Posts: 3201
Joined: Thu Aug 14, 2014 10:10 am

Re: BPF JIT?

Post by jkfloris »

How do I enable it on Debian?

Code: Select all

echo 1 | sudo tee /proc/sys/net/core/bpf_jit_enable
This is enabled in Debian Testing/Sid by default
Locked