CVE-2026-64189
The CVE-2026-64189 issue is a Linux kernel netfilter/ipset race where ip_set_dump_do() reads inst->ip_set_list without an RCU read-side critical section while a concurrent ip_set_create() can resize and free the old array. The fix adds an rcu_read_lock() around the array access to align with i...