highmem: Add folio_release_kmap()
authorMatthew Wilcox (Oracle) <willy@infradead.org>
Thu, 21 Sep 2023 20:07:38 +0000 (21:07 +0100)
committerJan Kara <jack@suse.cz>
Wed, 25 Oct 2023 18:19:00 +0000 (20:19 +0200)
This is the folio equivalent of unmap_and_put_page(), which remains as
a wrapper for it.

Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Signed-off-by: Jan Kara <jack@suse.cz>
Message-Id: <20230921200746.3303942-1-willy@infradead.org>

include/linux/highmem.h

index 99c474de800ddc3b034a7b929684b9fb9f791479..4cacc0e43b5139863d86c4dbcd85488b8fd9a7a4 100644 (file)
@@ -551,10 +551,24 @@ static inline void folio_zero_range(struct folio *folio,
        zero_user_segments(&folio->page, start, start + length, 0, 0);
 }
 
-static inline void unmap_and_put_page(struct page *page, void *addr)
+/**
+ * folio_release_kmap - Unmap a folio and drop a refcount.
+ * @folio: The folio to release.
+ * @addr: The address previously returned by a call to kmap_local_folio().
+ *
+ * It is common, eg in directory handling to kmap a folio.  This function
+ * unmaps the folio and drops the refcount that was being held to keep the
+ * folio alive while we accessed it.
+ */
+static inline void folio_release_kmap(struct folio *folio, void *addr)
 {
        kunmap_local(addr);
-       put_page(page);
+       folio_put(folio);
+}
+
+static inline void unmap_and_put_page(struct page *page, void *addr)
+{
+       folio_release_kmap(page_folio(page), addr);
 }
 
 #endif /* _LINUX_HIGHMEM_H */