From: Hyeonggon Yoo <42.hyeyoo@gmail.com>
To: "Matthew Wilcox (Oracle)" <willy@infradead.org>
Cc: Minchan Kim <minchan@kernel.org>,
Sergey Senozhatsky <senozhatsky@chromium.org>,
Alex Shi <alexs@kernel.org>,
linux-mm@kvack.org
Subject: Re: [PATCH v8 06/21] mm/zsmalloc: convert create_page_chain() and its users to use zpdesc
Date: Tue, 10 Dec 2024 22:53:43 +0900 [thread overview]
Message-ID: <Z1hH58Bvbfcfji2J@MacBook-Air-5.local> (raw)
In-Reply-To: <20241205175000.3187069-7-willy@infradead.org>
On Thu, Dec 05, 2024 at 05:49:43PM +0000, Matthew Wilcox (Oracle) wrote:
> From: Alex Shi <alexs@kernel.org>
>
> Introduce a few helper functions for conversion to convert create_page_chain()
> to use zpdesc, then use zpdesc in replace_sub_page() too.
>
> Originally-by: Hyeonggon Yoo <42.hyeyoo@gmail.com>
> Signed-off-by: Alex Shi <alexs@kernel.org>
Reviewed-by: Hyeonggon Yoo <42.hyeyoo@gmail.com>
> ---
> mm/zpdesc.h | 6 +++
> mm/zsmalloc.c | 109 ++++++++++++++++++++++++++++++++------------------
> 2 files changed, 76 insertions(+), 39 deletions(-)
>
> diff --git a/mm/zpdesc.h b/mm/zpdesc.h
> index 937de815a4ac..0387f5771dc6 100644
> --- a/mm/zpdesc.h
> +++ b/mm/zpdesc.h
> @@ -110,4 +110,10 @@ static inline struct zpdesc *pfn_zpdesc(unsigned long pfn)
> {
> return page_zpdesc(pfn_to_page(pfn));
> }
> +
> +static inline void __zpdesc_set_movable(struct zpdesc *zpdesc,
> + const struct movable_operations *mops)
> +{
> + __SetPageMovable(zpdesc_page(zpdesc), mops);
> +}
> #endif
> diff --git a/mm/zsmalloc.c b/mm/zsmalloc.c
> index af8a6cd6b814..6beb7cce4c31 100644
> --- a/mm/zsmalloc.c
> +++ b/mm/zsmalloc.c
> @@ -246,6 +246,35 @@ struct zs_pool {
> atomic_t compaction_in_progress;
> };
>
> +static inline void zpdesc_set_first(struct zpdesc *zpdesc)
> +{
> + SetPagePrivate(zpdesc_page(zpdesc));
> +}
> +
> +static inline void zpdesc_inc_zone_page_state(struct zpdesc *zpdesc)
> +{
> + inc_zone_page_state(zpdesc_page(zpdesc), NR_ZSPAGES);
> +}
> +
> +static inline void zpdesc_dec_zone_page_state(struct zpdesc *zpdesc)
> +{
> + dec_zone_page_state(zpdesc_page(zpdesc), NR_ZSPAGES);
> +}
> +
> +static inline struct zpdesc *alloc_zpdesc(gfp_t gfp)
> +{
> + struct page *page = alloc_page(gfp);
> +
> + return page_zpdesc(page);
> +}
> +
> +static inline void free_zpdesc(struct zpdesc *zpdesc)
> +{
> + struct page *page = zpdesc_page(zpdesc);
> +
> + __free_page(page);
> +}
> +
> struct zspage {
> struct {
> unsigned int huge:HUGE_BITS;
> @@ -955,35 +984,35 @@ static void init_zspage(struct size_class *class, struct zspage *zspage)
> }
>
> static void create_page_chain(struct size_class *class, struct zspage *zspage,
> - struct page *pages[])
> + struct zpdesc *zpdescs[])
> {
> int i;
> - struct page *page;
> - struct page *prev_page = NULL;
> - int nr_pages = class->pages_per_zspage;
> + struct zpdesc *zpdesc;
> + struct zpdesc *prev_zpdesc = NULL;
> + int nr_zpdescs = class->pages_per_zspage;
>
> /*
> * Allocate individual pages and link them together as:
> - * 1. all pages are linked together using page->index
> - * 2. each sub-page point to zspage using page->private
> + * 1. all pages are linked together using zpdesc->next
> + * 2. each sub-page point to zspage using zpdesc->zspage
> *
> - * we set PG_private to identify the first page (i.e. no other sub-page
> + * we set PG_private to identify the first zpdesc (i.e. no other zpdesc
> * has this flag set).
> */
> - for (i = 0; i < nr_pages; i++) {
> - page = pages[i];
> - set_page_private(page, (unsigned long)zspage);
> - page->index = 0;
> + for (i = 0; i < nr_zpdescs; i++) {
> + zpdesc = zpdescs[i];
> + zpdesc->zspage = zspage;
> + zpdesc->next = NULL;
> if (i == 0) {
> - zspage->first_zpdesc = page_zpdesc(page);
> - SetPagePrivate(page);
> + zspage->first_zpdesc = zpdesc;
> + zpdesc_set_first(zpdesc);
> if (unlikely(class->objs_per_zspage == 1 &&
> class->pages_per_zspage == 1))
> SetZsHugePage(zspage);
> } else {
> - prev_page->index = (unsigned long)page;
> + prev_zpdesc->next = zpdesc;
> }
> - prev_page = page;
> + prev_zpdesc = zpdesc;
> }
> }
>
> @@ -995,7 +1024,7 @@ static struct zspage *alloc_zspage(struct zs_pool *pool,
> gfp_t gfp)
> {
> int i;
> - struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE];
> + struct zpdesc *zpdescs[ZS_MAX_PAGES_PER_ZSPAGE];
> struct zspage *zspage = cache_alloc_zspage(pool, gfp);
>
> if (!zspage)
> @@ -1005,25 +1034,25 @@ static struct zspage *alloc_zspage(struct zs_pool *pool,
> migrate_lock_init(zspage);
>
> for (i = 0; i < class->pages_per_zspage; i++) {
> - struct page *page;
> + struct zpdesc *zpdesc;
>
> - page = alloc_page(gfp);
> - if (!page) {
> + zpdesc = alloc_zpdesc(gfp);
> + if (!zpdesc) {
> while (--i >= 0) {
> - dec_zone_page_state(pages[i], NR_ZSPAGES);
> - __ClearPageZsmalloc(pages[i]);
> - __free_page(pages[i]);
> + zpdesc_dec_zone_page_state(zpdescs[i]);
> + __ClearPageZsmalloc(zpdesc_page(zpdescs[i]));
> + free_zpdesc(zpdescs[i]);
> }
> cache_free_zspage(pool, zspage);
> return NULL;
> }
> - __SetPageZsmalloc(page);
> + __SetPageZsmalloc(zpdesc_page(zpdesc));
>
> - inc_zone_page_state(page, NR_ZSPAGES);
> - pages[i] = page;
> + zpdesc_inc_zone_page_state(zpdesc);
> + zpdescs[i] = zpdesc;
> }
>
> - create_page_chain(class, zspage, pages);
> + create_page_chain(class, zspage, zpdescs);
> init_zspage(class, zspage);
> zspage->pool = pool;
> zspage->class = class->index;
> @@ -1744,26 +1773,28 @@ static void migrate_write_unlock(struct zspage *zspage)
> static const struct movable_operations zsmalloc_mops;
>
> static void replace_sub_page(struct size_class *class, struct zspage *zspage,
> - struct page *newpage, struct page *oldpage)
> + struct zpdesc *newzpdesc, struct zpdesc *oldzpdesc)
> {
> - struct page *page;
> - struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE] = {NULL, };
> + struct zpdesc *zpdesc;
> + struct zpdesc *zpdescs[ZS_MAX_PAGES_PER_ZSPAGE] = {NULL, };
> + unsigned int first_obj_offset;
> int idx = 0;
>
> - page = get_first_page(zspage);
> + zpdesc = get_first_zpdesc(zspage);
> do {
> - if (page == oldpage)
> - pages[idx] = newpage;
> + if (zpdesc == oldzpdesc)
> + zpdescs[idx] = newzpdesc;
> else
> - pages[idx] = page;
> + zpdescs[idx] = zpdesc;
> idx++;
> - } while ((page = get_next_page(page)) != NULL);
> + } while ((zpdesc = get_next_zpdesc(zpdesc)) != NULL);
>
> - create_page_chain(class, zspage, pages);
> - set_first_obj_offset(newpage, get_first_obj_offset(oldpage));
> + create_page_chain(class, zspage, zpdescs);
> + first_obj_offset = get_first_obj_offset(zpdesc_page(oldzpdesc));
> + set_first_obj_offset(zpdesc_page(newzpdesc), first_obj_offset);
> if (unlikely(ZsHugePage(zspage)))
> - newpage->index = oldpage->index;
> - __SetPageMovable(newpage, &zsmalloc_mops);
> + newzpdesc->handle = oldzpdesc->handle;
> + __zpdesc_set_movable(newzpdesc, &zsmalloc_mops);
> }
>
> static bool zs_page_isolate(struct page *page, isolate_mode_t mode)
> @@ -1836,7 +1867,7 @@ static int zs_page_migrate(struct page *newpage, struct page *page,
> }
> kunmap_local(s_addr);
>
> - replace_sub_page(class, zspage, newpage, page);
> + replace_sub_page(class, zspage, page_zpdesc(newpage), page_zpdesc(page));
> /*
> * Since we complete the data copy and set up new zspage structure,
> * it's okay to release migration_lock.
> --
> 2.45.2
>
>
next prev parent reply other threads:[~2024-12-10 13:53 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-05 17:49 [PATCH v8 00/21] Add zpdesc memory descriptor for zswap.zpool Matthew Wilcox (Oracle)
2024-12-05 17:49 ` [PATCH v8 01/21] mm/zsmalloc: add " Matthew Wilcox (Oracle)
2024-12-10 13:44 ` Hyeonggon Yoo
2024-12-05 17:49 ` [PATCH v8 02/21] mm/zsmalloc: use zpdesc in trylock_zspage()/lock_zspage() Matthew Wilcox (Oracle)
2024-12-05 17:49 ` [PATCH v8 03/21] mm/zsmalloc: convert __zs_map_object/__zs_unmap_object to use zpdesc Matthew Wilcox (Oracle)
2024-12-05 17:49 ` [PATCH v8 04/21] mm/zsmalloc: add and use pfn/zpdesc seeking funcs Matthew Wilcox (Oracle)
2024-12-05 17:49 ` [PATCH v8 05/21] mm/zsmalloc: convert obj_malloc() to use zpdesc Matthew Wilcox (Oracle)
2024-12-05 17:49 ` [PATCH v8 06/21] mm/zsmalloc: convert create_page_chain() and its users " Matthew Wilcox (Oracle)
2024-12-10 13:53 ` Hyeonggon Yoo [this message]
2024-12-05 17:49 ` [PATCH v8 07/21] mm/zsmalloc: convert obj_allocated() and related helpers " Matthew Wilcox (Oracle)
2024-12-05 17:49 ` [PATCH v8 08/21] mm/zsmalloc: convert init_zspage() " Matthew Wilcox (Oracle)
2024-12-05 17:49 ` [PATCH v8 09/21] mm/zsmalloc: convert obj_to_page() and zs_free() " Matthew Wilcox (Oracle)
2024-12-05 17:49 ` [PATCH v8 10/21] mm/zsmalloc: add zpdesc_is_isolated()/zpdesc_zone() helper for zs_page_migrate() Matthew Wilcox (Oracle)
2024-12-05 17:49 ` [PATCH v8 11/21] mm/zsmalloc: rename reset_page to reset_zpdesc and use zpdesc in it Matthew Wilcox (Oracle)
2024-12-10 14:00 ` Hyeonggon Yoo
2024-12-05 17:49 ` [PATCH v8 12/21] mm/zsmalloc: convert __free_zspage() to use zpdesc Matthew Wilcox (Oracle)
2024-12-05 17:49 ` [PATCH v8 13/21] mm/zsmalloc: convert location_to_obj() to take zpdesc Matthew Wilcox (Oracle)
2024-12-05 17:49 ` [PATCH v8 14/21] mm/zsmalloc: convert migrate_zspage() to use zpdesc Matthew Wilcox (Oracle)
2024-12-05 17:49 ` [PATCH v8 15/21] mm/zsmalloc: convert get_zspage() to take zpdesc Matthew Wilcox (Oracle)
2024-12-05 17:49 ` [PATCH v8 16/21] mm/zsmalloc: convert SetZsPageMovable and remove unused funcs Matthew Wilcox (Oracle)
2024-12-10 14:04 ` Hyeonggon Yoo
2024-12-05 17:49 ` [PATCH v8 17/21] mm/zsmalloc: convert get/set_first_obj_offset() to take zpdesc Matthew Wilcox (Oracle)
2024-12-10 14:10 ` Hyeonggon Yoo
2024-12-05 17:49 ` [PATCH v8 18/21] mm/zsmalloc: introduce __zpdesc_clear_movable Matthew Wilcox (Oracle)
2024-12-05 17:49 ` [PATCH v8 19/21] mm/zsmalloc: introduce __zpdesc_clear/set_zsmalloc() Matthew Wilcox (Oracle)
2024-12-05 17:49 ` [PATCH v8 20/21] mm/zsmalloc: introduce zpdesc_clear_first() helper Matthew Wilcox (Oracle)
2024-12-05 17:49 ` [PATCH v8 21/21] mm/zsmalloc: update comments for page->zpdesc changes Matthew Wilcox (Oracle)
2024-12-10 15:46 ` Hyeonggon Yoo
2024-12-11 4:37 ` Matthew Wilcox
2024-12-12 0:11 ` Hyeonggon Yoo
2024-12-13 2:25 ` Alex Shi
2024-12-09 11:59 ` [PATCH v8 0/21] Add zpdesc memory descriptor for zswap.zpool alexs
2024-12-10 5:54 ` [PATCH v8 00/21] " Sergey Senozhatsky
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=Z1hH58Bvbfcfji2J@MacBook-Air-5.local \
--to=42.hyeyoo@gmail.com \
--cc=alexs@kernel.org \
--cc=linux-mm@kvack.org \
--cc=minchan@kernel.org \
--cc=senozhatsky@chromium.org \
--cc=willy@infradead.org \
/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