linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: "Matthew Wilcox (Oracle)" <willy@infradead.org>
To: linux-kernel@vger.kernel.org
Cc: "Matthew Wilcox (Oracle)" <willy@infradead.org>,
	linux-mm@kvack.org, linux-fsdevel@vger.kernel.org,
	Vlastimil Babka <vbabka@suse.cz>,
	William Kucharski <william.kucharski@oracle.com>,
	Christoph Hellwig <hch@lst.de>,
	"Kirill A . Shutemov" <kirill.shutemov@linux.intel.com>
Subject: [PATCH v13 009/137] mm: Add folio_try_get_rcu()
Date: Mon, 12 Jul 2021 04:04:53 +0100	[thread overview]
Message-ID: <20210712030701.4000097-10-willy@infradead.org> (raw)
In-Reply-To: <20210712030701.4000097-1-willy@infradead.org>

This is the equivalent of page_cache_get_speculative().  Also add
folio_ref_try_add_rcu (the equivalent of page_cache_add_speculative)
and folio_get_unless_zero() (the equivalent of get_page_unless_zero()).

The new kernel-doc attempts to explain from the user's point of view
when to use folio_try_get_rcu() and when to use folio_get_unless_zero(),
because there seems to be some confusion currently between the users of
page_cache_get_speculative() and get_page_unless_zero().

Reimplement page_cache_add_speculative() and page_cache_get_speculative()
as wrappers around the folio equivalents, but leave get_page_unless_zero()
alone for now.  This commit reduces text size by 3 bytes due to slightly
different register allocation & instruction selections.

Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
Reviewed-by: William Kucharski <william.kucharski@oracle.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Acked-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
---
 include/linux/page_ref.h | 66 +++++++++++++++++++++++++++++++
 include/linux/pagemap.h  | 84 ++--------------------------------------
 mm/filemap.c             | 20 ++++++++++
 3 files changed, 90 insertions(+), 80 deletions(-)

diff --git a/include/linux/page_ref.h b/include/linux/page_ref.h
index 717d53c9ddf1..2e677e6ad09f 100644
--- a/include/linux/page_ref.h
+++ b/include/linux/page_ref.h
@@ -247,6 +247,72 @@ static inline bool folio_ref_add_unless(struct folio *folio, int nr, int u)
 	return page_ref_add_unless(&folio->page, nr, u);
 }
 
+/**
+ * folio_try_get - Attempt to increase the refcount on a folio.
+ * @folio: The folio.
+ *
+ * If you do not already have a reference to a folio, you can attempt to
+ * get one using this function.  It may fail if, for example, the folio
+ * has been freed since you found a pointer to it, or it is frozen for
+ * the purposes of splitting or migration.
+ *
+ * Return: True if the reference count was successfully incremented.
+ */
+static inline bool folio_try_get(struct folio *folio)
+{
+	return folio_ref_add_unless(folio, 1, 0);
+}
+
+static inline bool folio_ref_try_add_rcu(struct folio *folio, int count)
+{
+#ifdef CONFIG_TINY_RCU
+	/*
+	 * The caller guarantees the folio will not be freed from interrupt
+	 * context, so (on !SMP) we only need preemption to be disabled
+	 * and TINY_RCU does that for us.
+	 */
+# ifdef CONFIG_PREEMPT_COUNT
+	VM_BUG_ON(!in_atomic() && !irqs_disabled());
+# endif
+	VM_BUG_ON_FOLIO(folio_ref_count(folio) == 0, folio);
+	folio_ref_add(folio, count);
+#else
+	if (unlikely(!folio_ref_add_unless(folio, count, 0))) {
+		/* Either the folio has been freed, or will be freed. */
+		return false;
+	}
+#endif
+	return true;
+}
+
+/**
+ * folio_try_get_rcu - Attempt to increase the refcount on a folio.
+ * @folio: The folio.
+ *
+ * This is a version of folio_try_get() optimised for non-SMP kernels.
+ * If you are still holding the rcu_read_lock() after looking up the
+ * page and know that the page cannot have its refcount decreased to
+ * zero in interrupt context, you can use this instead of folio_try_get().
+ *
+ * Example users include get_user_pages_fast() (as pages are not unmapped
+ * from interrupt context) and the page cache lookups (as pages are not
+ * truncated from interrupt context).  We also know that pages are not
+ * frozen in interrupt context for the purposes of splitting or migration.
+ *
+ * You can also use this function if you're holding a lock that prevents
+ * pages being frozen & removed; eg the i_pages lock for the page cache
+ * or the mmap_sem or page table lock for page tables.  In this case,
+ * it will always succeed, and you could have used a plain folio_get(),
+ * but it's sometimes more convenient to have a common function called
+ * from both locked and RCU-protected contexts.
+ *
+ * Return: True if the reference count was successfully incremented.
+ */
+static inline bool folio_try_get_rcu(struct folio *folio)
+{
+	return folio_ref_try_add_rcu(folio, 1);
+}
+
 static inline int page_ref_freeze(struct page *page, int count)
 {
 	int ret = likely(atomic_cmpxchg(&page->_refcount, count, 0) == count);
diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h
index ed02aa522263..db1726b1bc1c 100644
--- a/include/linux/pagemap.h
+++ b/include/linux/pagemap.h
@@ -172,91 +172,15 @@ static inline struct address_space *page_mapping_file(struct page *page)
 	return page_mapping(page);
 }
 
-/*
- * speculatively take a reference to a page.
- * If the page is free (_refcount == 0), then _refcount is untouched, and 0
- * is returned. Otherwise, _refcount is incremented by 1 and 1 is returned.
- *
- * This function must be called inside the same rcu_read_lock() section as has
- * been used to lookup the page in the pagecache radix-tree (or page table):
- * this allows allocators to use a synchronize_rcu() to stabilize _refcount.
- *
- * Unless an RCU grace period has passed, the count of all pages coming out
- * of the allocator must be considered unstable. page_count may return higher
- * than expected, and put_page must be able to do the right thing when the
- * page has been finished with, no matter what it is subsequently allocated
- * for (because put_page is what is used here to drop an invalid speculative
- * reference).
- *
- * This is the interesting part of the lockless pagecache (and lockless
- * get_user_pages) locking protocol, where the lookup-side (eg. find_get_page)
- * has the following pattern:
- * 1. find page in radix tree
- * 2. conditionally increment refcount
- * 3. check the page is still in pagecache (if no, goto 1)
- *
- * Remove-side that cares about stability of _refcount (eg. reclaim) has the
- * following (with the i_pages lock held):
- * A. atomically check refcount is correct and set it to 0 (atomic_cmpxchg)
- * B. remove page from pagecache
- * C. free the page
- *
- * There are 2 critical interleavings that matter:
- * - 2 runs before A: in this case, A sees elevated refcount and bails out
- * - A runs before 2: in this case, 2 sees zero refcount and retries;
- *   subsequently, B will complete and 1 will find no page, causing the
- *   lookup to return NULL.
- *
- * It is possible that between 1 and 2, the page is removed then the exact same
- * page is inserted into the same position in pagecache. That's OK: the
- * old find_get_page using a lock could equally have run before or after
- * such a re-insertion, depending on order that locks are granted.
- *
- * Lookups racing against pagecache insertion isn't a big problem: either 1
- * will find the page or it will not. Likewise, the old find_get_page could run
- * either before the insertion or afterwards, depending on timing.
- */
-static inline int __page_cache_add_speculative(struct page *page, int count)
+static inline bool page_cache_add_speculative(struct page *page, int count)
 {
-#ifdef CONFIG_TINY_RCU
-# ifdef CONFIG_PREEMPT_COUNT
-	VM_BUG_ON(!in_atomic() && !irqs_disabled());
-# endif
-	/*
-	 * Preempt must be disabled here - we rely on rcu_read_lock doing
-	 * this for us.
-	 *
-	 * Pagecache won't be truncated from interrupt context, so if we have
-	 * found a page in the radix tree here, we have pinned its refcount by
-	 * disabling preempt, and hence no need for the "speculative get" that
-	 * SMP requires.
-	 */
-	VM_BUG_ON_PAGE(page_count(page) == 0, page);
-	page_ref_add(page, count);
-
-#else
-	if (unlikely(!page_ref_add_unless(page, count, 0))) {
-		/*
-		 * Either the page has been freed, or will be freed.
-		 * In either case, retry here and the caller should
-		 * do the right thing (see comments above).
-		 */
-		return 0;
-	}
-#endif
 	VM_BUG_ON_PAGE(PageTail(page), page);
-
-	return 1;
-}
-
-static inline int page_cache_get_speculative(struct page *page)
-{
-	return __page_cache_add_speculative(page, 1);
+	return folio_ref_try_add_rcu((struct folio *)page, count);
 }
 
-static inline int page_cache_add_speculative(struct page *page, int count)
+static inline bool page_cache_get_speculative(struct page *page)
 {
-	return __page_cache_add_speculative(page, count);
+	return page_cache_add_speculative(page, 1);
 }
 
 /**
diff --git a/mm/filemap.c b/mm/filemap.c
index d1458ecf2f51..634adeacc4c1 100644
--- a/mm/filemap.c
+++ b/mm/filemap.c
@@ -1746,6 +1746,26 @@ pgoff_t page_cache_prev_miss(struct address_space *mapping,
 }
 EXPORT_SYMBOL(page_cache_prev_miss);
 
+/*
+ * Lockless page cache protocol:
+ * On the lookup side:
+ * 1. Load the folio from i_pages
+ * 2. Increment the refcount if it's not zero
+ * 3. If the folio is not found by xas_reload(), put the refcount and retry
+ *
+ * On the removal side:
+ * A. Freeze the page (by zeroing the refcount if nobody else has a reference)
+ * B. Remove the page from i_pages
+ * C. Return the page to the page allocator
+ *
+ * This means that any page may have its reference count temporarily
+ * increased by a speculative page cache (or fast GUP) lookup as it can
+ * be allocated by another user before the RCU grace period expires.
+ * Because the refcount temporarily acquired here may end up being the
+ * last refcount on the page, any page allocation must be freeable by
+ * put_folio().
+ */
+
 /*
  * mapping_get_entry - Get a page cache entry.
  * @mapping: the address_space to search
-- 
2.30.2



  parent reply	other threads:[~2021-07-12  3:14 UTC|newest]

Thread overview: 151+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-12  3:04 [PATCH v13 000/137] Memory folios Matthew Wilcox (Oracle)
2021-07-12  3:04 ` [PATCH v13 001/137] mm: Convert get_page_unless_zero() to return bool Matthew Wilcox (Oracle)
2021-07-12  3:04 ` [PATCH v13 002/137] mm: Introduce struct folio Matthew Wilcox (Oracle)
2021-07-12  3:04 ` [PATCH v13 003/137] mm: Add folio_pgdat(), folio_zone() and folio_zonenum() Matthew Wilcox (Oracle)
2021-07-12  3:04 ` [PATCH v13 004/137] mm/vmstat: Add functions to account folio statistics Matthew Wilcox (Oracle)
2021-07-12  3:04 ` [PATCH v13 005/137] mm/debug: Add VM_BUG_ON_FOLIO() and VM_WARN_ON_ONCE_FOLIO() Matthew Wilcox (Oracle)
2021-07-12  3:04 ` [PATCH v13 006/137] mm: Add folio reference count functions Matthew Wilcox (Oracle)
2021-07-12  3:04 ` [PATCH v13 007/137] mm: Add folio_put() Matthew Wilcox (Oracle)
2021-07-12  3:04 ` [PATCH v13 008/137] mm: Add folio_get() Matthew Wilcox (Oracle)
2021-07-12  3:04 ` Matthew Wilcox (Oracle) [this message]
2021-07-12  3:04 ` [PATCH v13 010/137] mm: Add folio flag manipulation functions Matthew Wilcox (Oracle)
2021-07-13  0:24   ` Johannes Weiner
2021-07-13  2:15     ` Matthew Wilcox
2021-07-13  9:15       ` Peter Zijlstra
2021-07-13 15:55         ` Johannes Weiner
2021-07-14  1:55           ` Matthew Wilcox
2021-07-14  1:56           ` Andrew Morton
2021-07-14 14:03             ` Matthew Wilcox
2021-07-14  9:18         ` David Howells
2021-07-12  3:04 ` [PATCH v13 011/137] mm/lru: Add folio LRU functions Matthew Wilcox (Oracle)
2021-07-12  3:04 ` [PATCH v13 012/137] mm: Handle per-folio private data Matthew Wilcox (Oracle)
2021-07-12  3:04 ` [PATCH v13 013/137] mm/filemap: Add folio_index(), folio_file_page() and folio_contains() Matthew Wilcox (Oracle)
2021-07-12  3:04 ` [PATCH v13 014/137] mm/filemap: Add folio_next_index() Matthew Wilcox (Oracle)
2021-07-12  3:04 ` [PATCH v13 015/137] mm/filemap: Add folio_pos() and folio_file_pos() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 016/137] mm/util: Add folio_mapping() and folio_file_mapping() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 017/137] mm/filemap: Add folio_unlock() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 018/137] mm/filemap: Add folio_lock() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 019/137] mm/filemap: Add folio_lock_killable() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 020/137] mm/filemap: Add __folio_lock_async() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 021/137] mm/filemap: Add folio_wait_locked() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 022/137] mm/filemap: Add __folio_lock_or_retry() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 023/137] mm/swap: Add folio_rotate_reclaimable() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 024/137] mm/filemap: Add folio_end_writeback() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 025/137] mm/writeback: Add folio_wait_writeback() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 026/137] mm/writeback: Add folio_wait_stable() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 027/137] mm/filemap: Add folio_wait_bit() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 028/137] mm/filemap: Add folio_wake_bit() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 029/137] mm/filemap: Convert page wait queues to be folios Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 030/137] mm/filemap: Add folio private_2 functions Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 031/137] fs/netfs: Add folio fscache functions Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 032/137] mm: Add folio_mapped() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 033/137] mm: Add folio_nid() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 034/137] mm/memcg: Remove 'page' parameter to mem_cgroup_charge_statistics() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 035/137] mm/memcg: Use the node id in mem_cgroup_update_tree() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 036/137] mm/memcg: Remove soft_limit_tree_node() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 037/137] mm/memcg: Convert memcg_check_events to take a node ID Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 038/137] mm/memcg: Add folio_memcg() and related functions Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 039/137] mm/memcg: Convert commit_charge() to take a folio Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 040/137] mm/memcg: Convert mem_cgroup_charge() " Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 041/137] mm/memcg: Convert uncharge_page() to uncharge_folio() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 042/137] mm/memcg: Convert mem_cgroup_uncharge() to take a folio Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 043/137] mm/memcg: Convert mem_cgroup_migrate() to take folios Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 044/137] mm/memcg: Convert mem_cgroup_track_foreign_dirty_slowpath() to folio Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 045/137] mm/memcg: Add folio_memcg_lock() and folio_memcg_unlock() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 046/137] mm/memcg: Convert mem_cgroup_move_account() to use a folio Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 047/137] mm/memcg: Add folio_lruvec() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 048/137] mm/memcg: Add folio_lruvec_lock() and similar functions Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 049/137] mm/memcg: Add folio_lruvec_relock_irq() and folio_lruvec_relock_irqsave() Matthew Wilcox (Oracle)
2021-07-12  7:18   ` kernel test robot
2021-07-12  3:05 ` [PATCH v13 050/137] mm/workingset: Convert workingset_activation to take a folio Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 051/137] mm: Add folio_pfn() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 052/137] mm: Add folio_raw_mapping() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 053/137] mm: Add flush_dcache_folio() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 054/137] mm: Add kmap_local_folio() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 055/137] mm: Add arch_make_folio_accessible() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 056/137] mm: Add folio_young() and folio_idle() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 057/137] mm/swap: Add folio_activate() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 058/137] mm/swap: Add folio_mark_accessed() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 059/137] mm/rmap: Add folio_mkclean() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 060/137] mm/migrate: Add folio_migrate_mapping() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 061/137] mm/migrate: Add folio_migrate_flags() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 062/137] mm/migrate: Add folio_migrate_copy() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 063/137] mm/writeback: Rename __add_wb_stat() to wb_stat_mod() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 064/137] flex_proportions: Allow N events instead of 1 Matthew Wilcox (Oracle)
2021-07-13 14:39   ` Jan Kara
2021-07-12  3:05 ` [PATCH v13 065/137] mm/writeback: Change __wb_writeout_inc() to __wb_writeout_add() Matthew Wilcox (Oracle)
2021-07-13 14:40   ` Jan Kara
2021-07-12  3:05 ` [PATCH v13 066/137] mm/writeback: Add __folio_end_writeback() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 067/137] mm/writeback: Add folio_start_writeback() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 068/137] mm/writeback: Add folio_mark_dirty() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 069/137] mm/writeback: Add __folio_mark_dirty() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 070/137] mm/writeback: Add filemap_dirty_folio() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 071/137] mm/writeback: Add folio_account_cleaned() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 072/137] mm/writeback: Add folio_cancel_dirty() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 073/137] mm/writeback: Add folio_clear_dirty_for_io() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 074/137] mm/writeback: Add folio_account_redirty() Matthew Wilcox (Oracle)
2021-07-12  3:05 ` [PATCH v13 075/137] mm/writeback: Add folio_redirty_for_writepage() Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 076/137] mm/filemap: Add i_blocks_per_folio() Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 077/137] mm/filemap: Add folio_mkwrite_check_truncate() Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 078/137] mm/filemap: Add readahead_folio() Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 079/137] mm/workingset: Convert workingset_refault() to take a folio Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 080/137] mm: Add folio_evictable() Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 081/137] mm/lru: Convert __pagevec_lru_add_fn to take a folio Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 082/137] mm/lru: Add folio_add_lru() Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 083/137] mm/page_alloc: Add folio allocation functions Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 084/137] mm/filemap: Add filemap_alloc_folio Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 085/137] mm/filemap: Add filemap_add_folio() Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 086/137] mm/filemap: Convert mapping_get_entry to return a folio Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 087/137] mm/filemap: Add filemap_get_folio Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 088/137] mm/filemap: Add FGP_STABLE Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 089/137] block: Add bio_add_folio() Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 090/137] block: Add bio_for_each_folio_all() Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 091/137] iomap: Convert to_iomap_page to take a folio Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 092/137] iomap: Convert iomap_page_create " Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 093/137] iomap: Convert iomap_page_release " Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 094/137] iomap: Convert iomap_releasepage to use " Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 095/137] iomap: Convert iomap_invalidatepage " Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 096/137] iomap: Pass the iomap_page into iomap_set_range_uptodate Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 097/137] iomap: Use folio offsets instead of page offsets Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 098/137] iomap: Convert bio completions to use folios Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 099/137] iomap: Convert readahead and readpage to use a folio Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 100/137] iomap: Convert iomap_page_mkwrite " Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 101/137] iomap: Convert iomap_write_begin and iomap_write_end to folios Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 102/137] iomap: Convert iomap_read_inline_data to take a folio Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 103/137] iomap: Convert iomap_write_end_inline " Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 104/137] iomap: Convert iomap_add_to_ioend " Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 105/137] iomap: Convert iomap_do_writepage to use " Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 106/137] iomap: Convert iomap_migrate_page to use folios Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 107/137] mm/filemap: Convert page_cache_delete to take a folio Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 108/137] mm/filemap: Convert unaccount_page_cache_page to filemap_unaccount_folio Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 109/137] mm/filemap: Add filemap_remove_folio and __filemap_remove_folio Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 110/137] mm/filemap: Convert find_get_entry to return a folio Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 111/137] mm/filemap: Convert filemap_get_read_batch to use folios Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 112/137] mm/filemap: Convert find_get_pages_contig to folios Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 113/137] mm/filemap: Convert filemap_read_page to take a folio Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 114/137] mm/filemap: Convert filemap_create_page to folio Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 115/137] mm/filemap: Convert filemap_range_uptodate to folios Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 116/137] mm/filemap: Convert filemap_fault to folio Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 117/137] mm/filemap: Add read_cache_folio and read_mapping_folio Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 118/137] mm/filemap: Convert filemap_get_pages to use folios Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 119/137] mm/filemap: Convert page_cache_delete_batch to folios Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 120/137] mm/filemap: Remove PageHWPoison check from next_uptodate_page() Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 121/137] mm/filemap: Use folios in next_uptodate_page Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 122/137] mm/filemap: Use a folio in filemap_map_pages Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 123/137] fs: Convert vfs_dedupe_file_range_compare to folios Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 124/137] mm/truncate,shmem: Handle truncates that split THPs Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 125/137] mm/filemap: Return only head pages from find_get_entries Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 126/137] mm: Use multi-index entries in the page cache Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 127/137] iomap: Support multi-page folios in invalidatepage Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 128/137] xfs: Support THPs Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 129/137] mm/truncate: Convert invalidate_inode_pages2_range to folios Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 130/137] mm/truncate: Fix invalidate_complete_page2 for THPs Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 131/137] mm/vmscan: Free non-shmem THPs without splitting them Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 132/137] mm: Fix READ_ONLY_THP warning Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 133/137] mm: Support arbitrary THP sizes Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 134/137] mm/filemap: Allow multi-page folios to be added to the page cache Matthew Wilcox (Oracle)
2021-07-12  3:06 ` [PATCH v13 135/137] mm/vmscan: Optimise shrink_page_list for smaller THPs Matthew Wilcox (Oracle)
2021-07-12  3:07 ` [PATCH v13 136/137] mm/readahead: Convert page_cache_async_ra() to take a folio Matthew Wilcox (Oracle)
2021-07-12  3:07 ` [PATCH v13 137/137] mm/readahead: Add multi-page folio readahead Matthew Wilcox (Oracle)
2021-07-12  5:46 ` [PATCH v13 000/137] Memory folios Christoph Hellwig
2021-07-12 11:35   ` Matthew Wilcox

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210712030701.4000097-10-willy@infradead.org \
    --to=willy@infradead.org \
    --cc=hch@lst.de \
    --cc=kirill.shutemov@linux.intel.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=vbabka@suse.cz \
    --cc=william.kucharski@oracle.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).