Changelog in Linux kernel 6.12.99

 
Linux: Linux 6.12.99 [+ + +]
Author: Greg Kroah-Hartman <[email protected]>
Date:   Wed Jul 29 17:49:03 2026 +0200

    Linux 6.12.99
    
    Signed-off-by: Greg Kroah-Hartman <[email protected]>

 
mm: refactor mm_access() to not return NULL [+ + +]
Author: Lorenzo Stoakes <[email protected]>
Date:   Tue Sep 24 21:10:23 2024 +0100

    mm: refactor mm_access() to not return NULL
    
    [ Upstream commit cd3f8467afd470ccab0de2fbc7c76664af4a0bac ]
    
    mm_access() can return NULL if the mm is not found, but this is handled
    the same as an error in all callers, with some translating this into an
    -ESRCH error.
    
    Only proc_mem_open() returns NULL if no mm is found, however in this case
    it is clearer and makes more sense to explicitly handle the error.
    Additionally we take the opportunity to refactor the function to eliminate
    unnecessary nesting.
    
    Simplify things by simply returning -ESRCH if no mm is found - this both
    eliminates confusing use of the IS_ERR_OR_NULL() macro, and simplifies
    callers which would return -ESRCH by returning this error directly.
    
    [[email protected]: prefer neater pointer error comparison]
      Link: https://lkml.kernel.org/r/[email protected]
    Link: https://lkml.kernel.org/r/[email protected]
    Signed-off-by: Lorenzo Stoakes <[email protected]>
    Suggested-by: Arnd Bergmann <[email protected]>
    Cc: Al Viro <[email protected]>
    Signed-off-by: Andrew Morton <[email protected]>
    Signed-off-by: Sasha Levin <[email protected]>