From this webpage screenshot, we can extract the following key information about the vulnerability: 1. Vulnerability Description: - File Name: - Issue: Fix a rare race condition in the function. - Issue Description: - If the tree depth needs to be increased, a new node is allocated, and then another thread increases the tree depth before the first thread completes, we may still have a pre-allocated node that could be reused later. - If this node is later used as a new non-root node, it will still point to the old root node instead of being zeroed. This issue is fixed by zeroing the node in the cmpxchg failure path. 2. Author and Commit Information: - Committer: Kent Overstreet - Commit Time: 2024-08-10 21:04:35 -0400 - Committer: Greg Kroah-Hartman - Commit Time: 2024-09-12 11:10:25 +0200 3. Diffstat: - File: - Changes: 1 file changed, 2 insertions, 0 deletions 4. Diff Content: - Modified the code in the function by adding zeroing of the newly allocated node. 5. Signed-off-by: - Kent Overstreet - Sasha Levin This information indicates that this is a fix for a race condition in the Linux kernel's file, addressing a potential misuse of pre-allocated nodes when increasing tree depth.