In the Linux kernel, the following vulnerability has been resolved: netfilter: nftables: Fix potential data-race in _nftobjtypeget() nftunregisterobj() can concurrent with _nftobjtypeget(), and there is not any protection when iterate over nftablesobjects list in _nftobjtypeget(). Therefore, there is potential data-race of nftablesobjects list entry. Use listforeachentryrcu() to iterate over nftablesobjects list in _nftobjtypeget(), and use rcureadlock() in the caller nftobjtypeget() to protect the entire type query process.