page always is not NULL, so we may remove this useless check.

Signed-off-by: Kirill Tkhai <[email protected]>
---
 mm/filemap.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mm/filemap.c b/mm/filemap.c
index b1165a311a1f..5da9ce090898 100644
--- a/mm/filemap.c
+++ b/mm/filemap.c
@@ -1601,7 +1601,7 @@ struct page *pagecache_get_page(struct address_space 
*mapping, pgoff_t offset,
                VM_BUG_ON_PAGE(page->index != offset, page);
        }
 
-       if (page && (fgp_flags & FGP_ACCESSED))
+       if (fgp_flags & FGP_ACCESSED)
                mark_page_accessed(page);
 
 no_page:

Reply via email to