From this webpage screenshot, we can extract the following key information about the vulnerability: 1. Vulnerability Description: - Title: - Description: In the poll routine, when traversing the xarray, there is a lack of lock protection. Even though the RCU read lock is held, only the radix tree slots are guaranteed to be locked; the data structures stored in those slots (such as ) are not protected. Since the poll routine traverses the radix tree and references , the RCU read lock is insufficient in this context. A spinlock is required for proper protection. 2. Fix Information: - Fix Commit: - Fix Author: Jingbo Xu - Fix Commit Link: Click here 3. Related Links: - Original Commit - Upstream Commit 4. Code Diff: - File: - Diff Content: 5. Authors and Contributors: - Author: Jingbo Xu - Contributors: Baokun Li , Jeff Layton , Jia Zhu , Gao Xiang , Christian Brauner , Sasha Levin This information helps us understand the vulnerability's background, the fix process, and the code changes, enabling a better comprehension of the vulnerability's nature and the applied remediation.