CVE-2022-49572
CVE-2022-49572 affects the Linux kernel tcp path. The issue is a data race around reading the sysctl_tcp_slow_start_after_idle variable, where reads could race with concurrent writes. The published fix adds a READ_ONCE() to the readers to prevent concurrent modification during reads. The vulnerab...