return page_ref_dec_and_test(page);
 }
 
+static inline int folio_put_testzero(struct folio *folio)
+{
+       return put_page_testzero(&folio->page);
+}
+
 /*
  * Try to grab a ref unless the page has a refcount of zero, return false if
  * that is the case.
        return true;
 }
 
+/**
+ * folio_put - Decrement the reference count on a folio.
+ * @folio: The folio.
+ *
+ * If the folio's reference count reaches zero, the memory will be
+ * released back to the page allocator and may be used by another
+ * allocation immediately.  Do not access the memory or the struct folio
+ * after calling folio_put() unless you can be sure that it wasn't the
+ * last reference.
+ *
+ * Context: May be called in process or interrupt context, but not in NMI
+ * context.  May be called while holding a spinlock.
+ */
+static inline void folio_put(struct folio *folio)
+{
+       if (folio_put_testzero(folio))
+               __put_page(&folio->page);
+}
+
 static inline void put_page(struct page *page)
 {
-       page = compound_head(page);
+       struct folio *folio = page_folio(page);
 
        /*
         * For devmap managed pages we need to catch refcount transition from
         * need to inform the device driver through callback. See
         * include/linux/memremap.h and HMM for details.
         */
-       if (page_is_devmap_managed(page)) {
-               put_devmap_managed_page(page);
+       if (page_is_devmap_managed(&folio->page)) {
+               put_devmap_managed_page(&folio->page);
                return;
        }
 
-       if (put_page_testzero(page))
-               __put_page(page);
+       folio_put(folio);
 }
 
 /*