linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Minchan Kim <minchan@kernel.org>
To: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
Cc: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: Re: [RFC][PATCHv3 7/7] zsmalloc: register a shrinker to trigger auto-compaction
Date: Mon, 29 Jun 2015 22:39:56 +0900	[thread overview]
Message-ID: <20150629133956.GA15331@blaptop> (raw)
In-Reply-To: <20150629085744.GA549@swordfish>

Hi Sergey,

Sorry for too late reply.

On Mon, Jun 29, 2015 at 05:57:44PM +0900, Sergey Senozhatsky wrote:
> Hello,
> 
> thanks for review.
> 
> On (06/29/15 16:07), Minchan Kim wrote:
> [..]
> > >  			if (!migrate_zspage(pool, class, &cc))
> > > -				break;
> > > +				goto out;
> > 
> > It should retry with another target_page instead of going out.
> 
> yep.
> 
> [..]
> > > +static unsigned long zs_shrinker_scan(struct shrinker *shrinker,
> > > +		struct shrink_control *sc)
> > > +{
> [..]
> > 
> > Returns migrated object count.
> > 
> [..]
> > > +static unsigned long zs_shrinker_count(struct shrinker *shrinker,
> > > +		struct shrink_control *sc)
> > > +{
> [..]
> > 
> > But it returns wasted_obj / max_obj_per_zspage?
> > 
> 
> Good catch.
> So,  __zs_compact() and zs_shrinker_count() are ok. Returning
> "wasted_obj / max_obj_per_zspage" from zs_can_compact() makes
> sense there. The only place is zs_shrinker_scan()->zs_compact().

I want to make zs_can_compact return freeable page unit.

ie,

        return obj_wasted * class->pages_per_zspage;
  
and let's make __zs_compact returns the number of freed pages.

IOW, I like your (c).

> 
> Hm, I can think of:
> 
> (a) We can change zs_compact() to return the total number of
> freed zspages. That will not really change a user visible
> interface. We export (fwiw) the number of compacted objects
> in mm_stat. Basically, this is internal zsmalloc() counter and
> no user space program can ever do anything with that data. From
> that prospective we will just replace one senseless number with
> another (equally meaningless) one.
> 
> 
> (b) replace zs_compact() call in zs_shrinker_scan() with a class loop
> 
> 1764         int i;
> 1765         unsigned long nr_migrated = 0;
> 1766         struct size_class *class;
> 1767
> 1768         for (i = zs_size_classes - 1; i >= 0; i--) {
> 1769                 class = pool->size_class[i];
> 1770                 if (!class)
> 1771                         continue;
> 1772                 if (class->index != i)
> 1773                         continue;
> 1774                 nr_migrated += __zs_compact(pool, class);
> 1775         }
> 1776
> 1777         return nr_migrated;
> 
> But on every iteration increment nr_migrated with
> 		"nr_migrated += just_migrated / max_obj_per_zspage"
> 
> (which will be unnecessary if zs_compact() will return the number of freed
> zspages).
> 
> So, (b) is mostly fine, except that we already have several pool->size_class
> loops, with same `if (!class)' and `if (class->index...)' checks; and it
> asks for some sort of refactoring or... a tricky for_each_class() define.
> 
> 
> In both cases, however, we don't tell anything valuable to user space.
> Thus,
> 
> (c) Return from zs_compact() the number of pages (PAGE_SIZE) freed.
> And change compaction to operate in terms of pages (PAGE_SIZE). At
> least mm_stat::compacted will turn into something useful for user
> space.

Yes.

Thanks.

> 
> 	-ss

-- 
Kind regards,
Minchan Kim

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  reply	other threads:[~2015-06-29 13:40 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-18 11:46 [RFC][PATCH v3 0/7] introduce automatic pool compaction Sergey Senozhatsky
2015-06-18 11:46 ` [RFC][PATCHv3 1/7] zsmalloc: drop unused variable `nr_to_migrate' Sergey Senozhatsky
2015-06-18 11:46 ` [RFC][PATCHv3 2/7] zsmalloc: partial page ordering within a fullness_list Sergey Senozhatsky
2015-06-18 12:13   ` Sergey Senozhatsky
2015-06-18 12:45     ` Sergey Senozhatsky
2015-06-18 12:48     ` Sergey Senozhatsky
2015-06-18 14:43     ` Sergey Senozhatsky
2015-06-29  6:52   ` Minchan Kim
2015-06-29 23:41     ` Sergey Senozhatsky
2015-06-30  0:42       ` Minchan Kim
2015-06-18 11:46 ` [RFC][PATCHv3 3/7] zsmalloc: always keep per-class stats Sergey Senozhatsky
2015-06-29  6:40   ` Minchan Kim
2015-06-29  9:06     ` Sergey Senozhatsky
2015-06-18 11:46 ` [RFC][PATCHv3 4/7] zsmalloc: introduce zs_can_compact() function Sergey Senozhatsky
2015-06-29  6:45   ` Minchan Kim
2015-06-29  8:58     ` Sergey Senozhatsky
2015-06-18 11:46 ` [RFC][PATCHv3 5/7] zsmalloc: cosmetic compaction code adjustments Sergey Senozhatsky
2015-06-18 11:46 ` [RFC][PATCHv3 6/7] zsmalloc/zram: move `num_migrated' to zs_pool Sergey Senozhatsky
2015-06-18 11:46 ` [RFC][PATCHv3 7/7] zsmalloc: register a shrinker to trigger auto-compaction Sergey Senozhatsky
2015-06-29  7:07   ` Minchan Kim
2015-06-29  8:57     ` Sergey Senozhatsky
2015-06-29 13:39       ` Minchan Kim [this message]
2015-06-29 23:36         ` Sergey Senozhatsky
2015-06-18 12:17 ` [RFC][PATCH v3 0/7] introduce automatic pool compaction 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=20150629133956.GA15331@blaptop \
    --to=minchan@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=sergey.senozhatsky.work@gmail.com \
    --cc=sergey.senozhatsky@gmail.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).