From this webpage screenshot, we can extract the following key information about the vulnerability: 1. Author and Committer: - Author: Heiko Carstens () - Committer: Linus Torvalds () 2. Commit Time: - July 9, 2024, 08:50:56 +0200 3. Commit Message: - s390/mm: Add NULL pointer check to crst_table_free() base_crst_free() - handles NULL pointers, but before conversion to ptdescs. Since can be called with a NULL pointer, added an explicit check. - The same check was also added to for consistency. - In practice, this should not occur, as GFP_KERNEL allocations do not fail unless FAIL_PAGE_ALLOC is enabled and used. 4. Reporter: - Yunseong Kim () 5. Fixed Bug: - 6326c26c1514 ("s390: convert various pgalloc functions to use ptdescs") 6. Signed-off-by: - Heiko Carstens () 7. Acked-by: - Alexander Gordeev () 8. CC: - stable@kernel.org 9. Commit Time: - July 9, 2024, 07:38:39 -0700 10. Diffstat: - 1 file changed, 4 insertions, 0 deletions 11. Diff Content: - Code changes in and adding NULL pointer checks. This information indicates that the commit fixes a vulnerability related to NULL pointer checks, specifically in the and functions within the s390/mm directory.