lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20200310155510.000025d2@Huawei.com>
Date:   Tue, 10 Mar 2020 15:55:10 +0000
From:   Jonathan Cameron <Jonathan.Cameron@...wei.com>
To:     SeongJae Park <sjpark@...zon.com>
CC:     <akpm@...ux-foundation.org>, SeongJae Park <sjpark@...zon.de>,
        <aarcange@...hat.com>, <yang.shi@...ux.alibaba.com>,
        <acme@...nel.org>, <alexander.shishkin@...ux.intel.com>,
        <amit@...nel.org>, <brendan.d.gregg@...il.com>,
        <brendanhiggins@...gle.com>, <cai@....pw>,
        <colin.king@...onical.com>, <corbet@....net>, <dwmw@...zon.com>,
        <jolsa@...hat.com>, <kirill@...temov.name>, <mark.rutland@....com>,
        <mgorman@...e.de>, <minchan@...nel.org>, <mingo@...hat.com>,
        <namhyung@...nel.org>, <peterz@...radead.org>,
        <rdunlap@...radead.org>, <rientjes@...gle.com>,
        <rostedt@...dmis.org>, <shuah@...nel.org>, <sj38.park@...il.com>,
        <vbabka@...e.cz>, <vdavydov.dev@...il.com>, <linux-mm@...ck.org>,
        <linux-doc@...r.kernel.org>, <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v6 02/14] mm/damon: Implement region based sampling

On Tue, 10 Mar 2020 12:52:33 +0100
SeongJae Park <sjpark@...zon.com> wrote:

> Added replies to your every comment in line below.  I agree to your whole
> opinions, will apply those in next spin! :)
> 

One additional question inline that came to mind.  Using a single statistic
to monitor huge page and normal page hits is going to give us problems
I think.

Perhaps I'm missing something?

> > > +/*
> > > + * Check whether the given region has accessed since the last check  
> > 
> > Should also make clear that this sets us up for the next access check at
> > a different memory address it the region.
> > 
> > Given the lack of connection between activities perhaps just split this into
> > two functions that are always called next to each other.  
> 
> Will make the description more clearer as suggested.
> 
> Also, I found that I'm not clearing *pte and *pmd before going 'mkold', thanks
> to this comment.  Will fix it, either.
> 
> >   
> > > + *
> > > + * mm	'mm_struct' for the given virtual address space
> > > + * r	the region to be checked
> > > + */
> > > +static void kdamond_check_access(struct damon_ctx *ctx,
> > > +			struct mm_struct *mm, struct damon_region *r)
> > > +{
> > > +	pte_t *pte = NULL;
> > > +	pmd_t *pmd = NULL;
> > > +	spinlock_t *ptl;
> > > +
> > > +	if (follow_pte_pmd(mm, r->sampling_addr, NULL, &pte, &pmd, &ptl))
> > > +		goto mkold;
> > > +
> > > +	/* Read the page table access bit of the page */
> > > +	if (pte && pte_young(*pte))
> > > +		r->nr_accesses++;
> > > +#ifdef CONFIG_TRANSPARENT_HUGEPAGE  
> > 
> > Is it worth having this protection?  Seems likely to have only a very small
> > influence on performance and makes it a little harder to reason about the code.  
> 
> It was necessary for addressing 'implicit declaration' problem of 'pmd_young()'
> and 'pmd_mkold()' for build of DAMON on several architectures including User
> Mode Linux.
> 
> Will modularize the code for better readability.
> 
> >   
> > > +	else if (pmd && pmd_young(*pmd))
> > > +		r->nr_accesses++;

So we increment a region count by one if we have an access in a huge page, or
in a normal page.

If we get a region that has a mixture of the two, this seems likely to give a
bad approximation.

Assume the region is accessed 'evenly' but each " 4k page" is only hit 10% of the time
(where a hit is in one check period)

If our address in a page, then we'll hit 10% of the time, but if it is in a 2M
huge page then we'll hit a much higher percentage of the time.
1 - (0.9^512) ~= 1

Should we look to somehow account for this?

> > > +#endif	/* CONFIG_TRANSPARENT_HUGEPAGE */
> > > +
> > > +	spin_unlock(ptl);
> > > +
> > > +mkold:
> > > +	/* mkold next target */
> > > +	r->sampling_addr = damon_rand(ctx, r->vm_start, r->vm_end);
> > > +
> > > +	if (follow_pte_pmd(mm, r->sampling_addr, NULL, &pte, &pmd, &ptl))
> > > +		return;
> > > +
> > > +	if (pte) {
> > > +		if (pte_young(*pte)) {
> > > +			clear_page_idle(pte_page(*pte));
> > > +			set_page_young(pte_page(*pte));
> > > +		}
> > > +		*pte = pte_mkold(*pte);
> > > +	}
> > > +#ifdef CONFIG_TRANSPARENT_HUGEPAGE
> > > +	else if (pmd) {
> > > +		if (pmd_young(*pmd)) {
> > > +			clear_page_idle(pmd_page(*pmd));
> > > +			set_page_young(pmd_page(*pmd));
> > > +		}
> > > +		*pmd = pmd_mkold(*pmd);
> > > +	}
> > > +#endif
> > > +
> > > +	spin_unlock(ptl);
> > > +}
> > > +



Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ