Security Advisory

CVE-2022-49967

CVE vulnerability detail — eXtreme Datacenter Security Operations

Published 2025-06-18 11:00:31
Last updated 2026-05-23 15:23:23
Assigner Linux
State PUBLISHED

Description

In the Linux kernel, the following vulnerability has been resolved: bpf: Fix a data-race around bpf_jit_limit. While reading bpf_jit_limit, it can be changed concurrently via sysctl, WRITE_ONCE() in __do_proc_doulongvec_minmax(). The size of bpf_jit_limit is long, so we need to add a paired READ_ONCE() to avoid load-tearing.