Commit 41629f88 authored by Ryan Roberts's avatar Ryan Roberts Committed by Liu Shixin
Browse files

mm: swap: update get_swap_pages() to take folio order

next inclusion
category: feature
bugzilla: https://gitee.com/openeuler/kernel/issues/I9OCYO
CVE: NA

Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=9faaa0f8168bfcd81469b0724b25ba3093097a08

--------------------------------

We are about to allow swap storage of any mTHP size.  To prepare for that,
let's change get_swap_pages() to take a folio order parameter instead of
nr_pages.  This makes the interface self-documenting; a power-of-2 number
of pages must be provided.  We will also need the order internally so this
simplifies accessing it.

Link: https://lkml.kernel.org/r/20240408183946.2991168-5-ryan.roberts@arm.com


Signed-off-by: default avatarRyan Roberts <ryan.roberts@arm.com>
Reviewed-by: default avatar"Huang, Ying" <ying.huang@intel.com>
Reviewed-by: default avatarDavid Hildenbrand <david@redhat.com>
Cc: Barry Song <21cnbao@gmail.com>
Cc: Barry Song <v-songbaohua@oppo.com>
Cc: Chris Li <chrisl@kernel.org>
Cc: Gao Xiang <xiang@kernel.org>
Cc: Kefeng Wang <wangkefeng.wang@huawei.com>
Cc: Lance Yang <ioworker0@gmail.com>
Cc: Matthew Wilcox (Oracle) <willy@infradead.org>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Yang Shi <shy828301@gmail.com>
Cc: Yu Zhao <yuzhao@google.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Conflicts:
	include/linux/swap.h
	mm/swap_slots.c
	mm/swapfile.c
[ Context conflicts with commit c08dff4d. ]
Signed-off-by: default avatarLiu Shixin <liushixin2@huawei.com>
parent f8001b85
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -501,7 +501,7 @@ swp_entry_t folio_alloc_swap(struct folio *folio);
bool folio_free_swap(struct folio *folio);
void put_swap_folio(struct folio *folio, swp_entry_t entry);
extern swp_entry_t get_swap_page_of_type(int);
extern int get_swap_pages(int n, swp_entry_t swp_entries[], int entry_size,
extern int get_swap_pages(int n, swp_entry_t swp_entries[], int order,
			  int type);
extern int add_swap_count_continuation(swp_entry_t, gfp_t);
extern void swap_shmem_alloc(swp_entry_t);
+3 −3
Original line number Diff line number Diff line
@@ -385,7 +385,7 @@ static int refill_swap_slots_cache(struct swap_slots_cache *cache, int type)
	cache->cur = 0;
	if (swap_slot_cache_active)
		cache->nr = get_swap_pages(SWAP_SLOTS_CACHE_SIZE,
					   cache->slots, 1, type);
					   cache->slots, 0, type);

	return cache->nr;
}
@@ -435,7 +435,7 @@ swp_entry_t folio_alloc_swap(struct folio *folio)

	if (folio_test_large(folio)) {
		if (IS_ENABLED(CONFIG_THP_SWAP))
			get_swap_pages(1, &entry, folio_nr_pages(folio), type);
			get_swap_pages(1, &entry, folio_order(folio), type);
		goto out;
	}

@@ -467,7 +467,7 @@ swp_entry_t folio_alloc_swap(struct folio *folio)
			goto out;
	}

	get_swap_pages(1, &entry, 1, type);
	get_swap_pages(1, &entry, 0, type);
out:
	if (mem_cgroup_try_charge_swap(folio, entry)) {
		put_swap_folio(folio, entry);
+7 −6
Original line number Diff line number Diff line
@@ -277,15 +277,15 @@ static void discard_swap_cluster(struct swap_info_struct *si,
#ifdef CONFIG_THP_SWAP
#define SWAPFILE_CLUSTER	HPAGE_PMD_NR

#define swap_entry_size(size)	(size)
#define swap_entry_order(order)	(order)
#else
#define SWAPFILE_CLUSTER	256

/*
 * Define swap_entry_size() as constant to let compiler to optimize
 * Define swap_entry_order() as constant to let compiler to optimize
 * out some code if !CONFIG_THP_SWAP
 */
#define swap_entry_size(size)	1
#define swap_entry_order(order)	0
#endif
#define LATENCY_LIMIT		256

@@ -1120,10 +1120,11 @@ static inline bool should_skip_swap_type(int swap_type, int type)
}
#endif

int get_swap_pages(int n_goal, swp_entry_t swp_entries[], int entry_size,
int get_swap_pages(int n_goal, swp_entry_t swp_entries[], int entry_order,
		   int type)
{
	unsigned long size = swap_entry_size(entry_size);
	int order = swap_entry_order(entry_order);
	unsigned long size = 1 << order;
	struct swap_info_struct *si, *next;
	long avail_pgs;
	int n_ret = 0;
@@ -1433,7 +1434,7 @@ void put_swap_folio(struct folio *folio, swp_entry_t entry)
	unsigned char *map;
	unsigned int i, free_entries = 0;
	unsigned char val;
	int size = swap_entry_size(folio_nr_pages(folio));
	int size = 1 << swap_entry_order(folio_order(folio));

	si = _swap_info_get(entry);
	if (!si)