linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Yosry Ahmed <yosryahmed@google.com>
To: Sergey Senozhatsky <senozhatsky@chromium.org>
Cc: Minchan Kim <minchan@kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	 linux-kernel@vger.kernel.org, linux-mm@kvack.org
Subject: Re: [PATCH 2/2] zsmalloc: fine-grained inuse ratio based fullness grouping
Date: Thu, 9 Feb 2023 22:07:37 -0800	[thread overview]
Message-ID: <CAJD7tkb=Fj7xPQUZ8XOQKG0QXQTd+UcEKMDQSLdU7vs3Wjqg0Q@mail.gmail.com> (raw)
In-Reply-To: <CAJD7tka73PT8ka78rJBnd0JMtfjLY7SAr953MKNbZy5+icHD8g@mail.gmail.com>

On Thu, Feb 9, 2023 at 10:04 PM Yosry Ahmed <yosryahmed@google.com> wrote:
>
> On Thu, Feb 9, 2023 at 9:53 PM Sergey Senozhatsky
> <senozhatsky@chromium.org> wrote:
> >
> > On (23/02/09 21:15), Yosry Ahmed wrote:
> > > > We need to be able to do zs_stat_get(class, CLASS_USAGE_70) or
> > > > zs_stat_get(class, CLASS_USAGE_10) in zs_stats_size_show() to
> > > > show class's fullness stats.
> > >
> > > If we use #define FULLNESS_GROUPS 10 for example, we can break down
> > > struct zs_size_stat from a single array to two arrays, one of the for
> > > fullness groups and the other one for the rest of the stats (e.g.
> > > OBJ_USED). We can have different helpers to update each, the former
> > > taking in a fullness value (0 to FULLNESS_GROUPS-1), and the latter an
> > > enum. WDYT?
> >
> > Wouldn't this be more code to review, maintain though? I mean,
> > what do we gain with this - fewer values in enum?
>
> I don't feel very strongly, but the patch above has a lot of hardcoded
> values, multiple enums & static arrays. If we want to change the
> number of fullness groups to 5 or 20, we modify all of them. Just
> trying to make the code cleaner. If you think it will add a lot more
> code to review/maintain, then maybe it's not worth it. I didn't really
> give it a lot of thought.

We can also do something like:

#define NR_FULLNESS_GROUPS 10

enum class_stat_type {
        OBJ_ALLOCATED = NR_FULLNESS_GROUPS,
        OBJ_USED,
        NR_ZS_STAT_TYPE,
 };

and get rid of enum fullness_group, I think the current stats inc/dec
helpers will work out of the box.


      reply	other threads:[~2023-02-10  6:08 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-02-06  9:25 [PATCH 0/2] zsmalloc: fine-grained " Sergey Senozhatsky
2023-02-06  9:25 ` [PATCH 1/2] zsmalloc: remove insert_zspage() ->inuse optimization Sergey Senozhatsky
2023-02-06  9:25 ` [PATCH 2/2] zsmalloc: fine-grained inuse ratio based fullness grouping Sergey Senozhatsky
2023-02-07  1:02   ` Yosry Ahmed
2023-02-07  1:47     ` Sergey Senozhatsky
2023-02-10  4:24       ` Sergey Senozhatsky
2023-02-10  4:25         ` Yosry Ahmed
2023-02-10  4:29           ` Sergey Senozhatsky
2023-02-10  5:15             ` Yosry Ahmed
2023-02-10  5:47               ` Sergey Senozhatsky
2023-02-10  5:52               ` Sergey Senozhatsky
2023-02-10  6:04                 ` Yosry Ahmed
2023-02-10  6:07                   ` Yosry Ahmed [this message]

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='CAJD7tkb=Fj7xPQUZ8XOQKG0QXQTd+UcEKMDQSLdU7vs3Wjqg0Q@mail.gmail.com' \
    --to=yosryahmed@google.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=minchan@kernel.org \
    --cc=senozhatsky@chromium.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