mirror of
https://github.com/torvalds/linux.git
synced 2026-09-14 16:10:02 +02:00
mm/swap: rename subpage->page in folio_dup_swap/folio_put_swap
Patch series "mm: drop "sub" prefix from various places". Patch 1 converts subpage->page : folios have pages, not subpages. Patch 2 drops "sub" from a function and a variable because the context is clear enough. This patch (of 2): Folios have pages, not subpages. Rename 'subpage' parameters to 'page'. Link: https://lore.kernel.org/20260623125723.2503832-1-dev.jain@arm.com Link: https://lore.kernel.org/20260623125723.2503832-2-dev.jain@arm.com Signed-off-by: Dev Jain <dev.jain@arm.com> Acked-by: David Hildenbrand (Arm) <david@kernel.org> Reviewed-by: Lance Yang <lance.yang@linux.dev> Acked-by: Pedro Falcato <pfalcato@suse.de> Reviewed-by: Lorenzo Stoakes <ljs@kernel.org> Reviewed-by: Nhat Pham <nphamcs@gmail.com> Reviewed-by: Kairui Song <kasong@tencent.com> Reviewed-by: Barry Song <baohua@kernel.org> Cc: Anshuman Khandual <anshuman.khandual@arm.com> Cc: Baoquan He <baoquan.he@linux.dev> Cc: Chris Li <chrisl@kernel.org> Cc: Jann Horn <jannh@google.com> Cc: Kemeng Shi <shikemeng@huaweicloud.com> Cc: Liam R. Howlett <liam@infradead.org> Cc: Ryan Roberts <ryan.roberts@arm.com> Cc: Vlastimil Babka <vbabka@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
7698d52e33
commit
3ade884239
|
|
@ -230,8 +230,8 @@ extern int swap_retry_table_alloc(swp_entry_t entry, gfp_t gfp);
|
|||
* folio_put_swap(): does the opposite thing of folio_dup_swap().
|
||||
*/
|
||||
int folio_alloc_swap(struct folio *folio);
|
||||
int folio_dup_swap(struct folio *folio, struct page *subpage);
|
||||
void folio_put_swap(struct folio *folio, struct page *subpage);
|
||||
int folio_dup_swap(struct folio *folio, struct page *page);
|
||||
void folio_put_swap(struct folio *folio, struct page *page);
|
||||
|
||||
/* For internal use */
|
||||
extern void __swap_cluster_free_entries(struct swap_info_struct *si,
|
||||
|
|
|
|||
|
|
@ -1781,7 +1781,7 @@ int folio_alloc_swap(struct folio *folio)
|
|||
/**
|
||||
* folio_dup_swap() - Increase swap count of swap entries of a folio.
|
||||
* @folio: folio with swap entries bounded.
|
||||
* @subpage: if not NULL, only increase the swap count of this subpage.
|
||||
* @page: if not NULL, only increase the swap count of this page.
|
||||
*
|
||||
* Typically called when the folio is unmapped and have its swap entry to
|
||||
* take its place: Swap entries allocated to a folio has count == 0 and pinned
|
||||
|
|
@ -1795,7 +1795,7 @@ int folio_alloc_swap(struct folio *folio)
|
|||
* swap_put_entries_direct on its swap entry before this helper returns, or
|
||||
* the swap count may underflow.
|
||||
*/
|
||||
int folio_dup_swap(struct folio *folio, struct page *subpage)
|
||||
int folio_dup_swap(struct folio *folio, struct page *page)
|
||||
{
|
||||
swp_entry_t entry = folio->swap;
|
||||
unsigned long nr_pages = folio_nr_pages(folio);
|
||||
|
|
@ -1803,8 +1803,8 @@ int folio_dup_swap(struct folio *folio, struct page *subpage)
|
|||
VM_WARN_ON_FOLIO(!folio_test_locked(folio), folio);
|
||||
VM_WARN_ON_FOLIO(!folio_test_swapcache(folio), folio);
|
||||
|
||||
if (subpage) {
|
||||
entry.val += folio_page_idx(folio, subpage);
|
||||
if (page) {
|
||||
entry.val += folio_page_idx(folio, page);
|
||||
nr_pages = 1;
|
||||
}
|
||||
|
||||
|
|
@ -1815,13 +1815,13 @@ int folio_dup_swap(struct folio *folio, struct page *subpage)
|
|||
/**
|
||||
* folio_put_swap() - Decrease swap count of swap entries of a folio.
|
||||
* @folio: folio with swap entries bounded, must be in swap cache and locked.
|
||||
* @subpage: if not NULL, only decrease the swap count of this subpage.
|
||||
* @page: if not NULL, only decrease the swap count of this page.
|
||||
*
|
||||
* This won't free the swap slots even if swap count drops to zero, they are
|
||||
* still pinned by the swap cache. User may call folio_free_swap to free them.
|
||||
* Context: Caller must ensure the folio is locked and in the swap cache.
|
||||
*/
|
||||
void folio_put_swap(struct folio *folio, struct page *subpage)
|
||||
void folio_put_swap(struct folio *folio, struct page *page)
|
||||
{
|
||||
swp_entry_t entry = folio->swap;
|
||||
unsigned long nr_pages = folio_nr_pages(folio);
|
||||
|
|
@ -1830,8 +1830,8 @@ void folio_put_swap(struct folio *folio, struct page *subpage)
|
|||
VM_WARN_ON_FOLIO(!folio_test_locked(folio), folio);
|
||||
VM_WARN_ON_FOLIO(!folio_test_swapcache(folio), folio);
|
||||
|
||||
if (subpage) {
|
||||
entry.val += folio_page_idx(folio, subpage);
|
||||
if (page) {
|
||||
entry.val += folio_page_idx(folio, page);
|
||||
nr_pages = 1;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user