CVE-2022-49967
Severity CVSS v4.0:
Pending analysis
Type:
Unavailable / Other
Publication date:
18/06/2025
Last modified:
18/06/2025
Description
In the Linux kernel, the following vulnerability has been resolved:<br />
<br />
bpf: Fix a data-race around bpf_jit_limit.<br />
<br />
While reading bpf_jit_limit, it can be changed concurrently via sysctl,<br />
WRITE_ONCE() in __do_proc_doulongvec_minmax(). The size of bpf_jit_limit<br />
is long, so we need to add a paired READ_ONCE() to avoid load-tearing.