]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
memory-failure: remove calls to page_mapping()
authorMatthew Wilcox (Oracle) <willy@infradead.org>
Tue, 23 Apr 2024 22:55:34 +0000 (23:55 +0100)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 6 May 2024 00:53:48 +0000 (17:53 -0700)
This is mostly just inlining page_mapping() into the two callers.

Link: https://lkml.kernel.org/r/20240423225552.4113447-4-willy@infradead.org
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Reviewed-by: Sidhartha Kumar <sidhartha.kumar@oracle.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Acked-by: Miaohe Lin <linmiaohe@huawei.com>
Cc: Eric Biggers <ebiggers@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/memory-failure.c

index ec30611ec5ad0ebf77789e278cc6d2f9567ff30d..16ada4fb02b799517fb65c93c833b4920f781974 100644 (file)
@@ -216,6 +216,7 @@ EXPORT_SYMBOL_GPL(hwpoison_filter_flags_value);
 
 static int hwpoison_filter_dev(struct page *p)
 {
+       struct folio *folio = page_folio(p);
        struct address_space *mapping;
        dev_t dev;
 
@@ -223,7 +224,7 @@ static int hwpoison_filter_dev(struct page *p)
            hwpoison_filter_dev_minor == ~0U)
                return 0;
 
-       mapping = page_mapping(p);
+       mapping = folio_mapping(folio);
        if (mapping == NULL || mapping->host == NULL)
                return -EINVAL;
 
@@ -1090,7 +1091,8 @@ out:
  */
 static int me_pagecache_dirty(struct page_state *ps, struct page *p)
 {
-       struct address_space *mapping = page_mapping(p);
+       struct folio *folio = page_folio(p);
+       struct address_space *mapping = folio_mapping(folio);
 
        SetPageError(p);
        /* TBD: print more information about the file. */