linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-mm@kvack.org, Dave Hansen <dave.hansen@intel.com>,
	Hugh Dickins <hughd@google.com>,
	"Kirill A. Shutemov" <kirill@shutemov.name>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 7/7] mincore: apply page table walker on do_mincore()
Date: Thu, 12 Jun 2014 19:33:30 -0400	[thread overview]
Message-ID: <539a38d5.f25ab40a.52ef.1417SMTPIN_ADDED_BROKEN@mx.google.com> (raw)
In-Reply-To: <20140612150443.72809d03688bdce9a84164a6@linux-foundation.org>

On Thu, Jun 12, 2014 at 03:04:43PM -0700, Andrew Morton wrote:
> On Fri,  6 Jun 2014 18:58:40 -0400 Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> wrote:
> 
> > @@ -233,12 +163,20 @@ static long do_mincore(unsigned long addr, unsigned long pages, unsigned char *v
> >  
> >  	end = min(vma->vm_end, addr + (pages << PAGE_SHIFT));
> >  
> > -	if (is_vm_hugetlb_page(vma))
> > -		mincore_hugetlb_page_range(vma, addr, end, vec);
> > +	struct mm_walk mincore_walk = {
> > +		.pmd_entry = mincore_pmd,
> > +		.pte_entry = mincore_pte,
> > +		.pte_hole = mincore_hole,
> > +		.hugetlb_entry = mincore_hugetlb,
> > +		.mm = vma->vm_mm,
> > +		.vma = vma,
> > +		.private = vec,
> > +	};
> > +	err = walk_page_vma(vma, &mincore_walk);
> > +	if (err < 0)
> > +		return err;
> >  	else
> > -		mincore_page_range(vma, addr, end, vec);
> > -
> > -	return (end - addr) >> PAGE_SHIFT;
> > +		return (end - addr) >> PAGE_SHIFT;
> >  }
> >  
> >  /*
> 
> Please review carefully.
> 
> From: Andrew Morton <akpm@linux-foundation.org>
> Subject: mincore-apply-page-table-walker-on-do_mincore-fix
> 
> mm/mincore.c: In function 'do_mincore':
> mm/mincore.c:166: warning: ISO C90 forbids mixed declarations and code

Yes, this warning is fixed in patch 11/11 in ver.2.

> Cc: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> ---
> 
>  mm/mincore.c |   28 +++++++++++++++-------------
>  1 file changed, 15 insertions(+), 13 deletions(-)
> 
> diff -puN mm/huge_memory.c~mincore-apply-page-table-walker-on-do_mincore-fix mm/huge_memory.c
> diff -puN mm/mincore.c~mincore-apply-page-table-walker-on-do_mincore-fix mm/mincore.c
> --- a/mm/mincore.c~mincore-apply-page-table-walker-on-do_mincore-fix
> +++ a/mm/mincore.c
> @@ -151,32 +151,34 @@ static int mincore_pmd(pmd_t *pmd, unsig
>   * all the arguments, we hold the mmap semaphore: we should
>   * just return the amount of info we're asked for.
>   */
> -static long do_mincore(unsigned long addr, unsigned long pages, unsigned char *vec)
> +static long do_mincore(unsigned long addr, unsigned long pages,
> +		       unsigned char *vec)
>  {
>  	struct vm_area_struct *vma;
> -	unsigned long end;
>  	int err;
> -
> -	vma = find_vma(current->mm, addr);
> -	if (!vma || addr < vma->vm_start)
> -		return -ENOMEM;
> -
> -	end = min(vma->vm_end, addr + (pages << PAGE_SHIFT));
> -
>  	struct mm_walk mincore_walk = {
>  		.pmd_entry = mincore_pmd,
>  		.pte_entry = mincore_pte,
>  		.pte_hole = mincore_hole,
>  		.hugetlb_entry = mincore_hugetlb,
> -		.mm = vma->vm_mm,
> -		.vma = vma,
>  		.private = vec,
>  	};
> +
> +	vma = find_vma(current->mm, addr);
> +	if (!vma || addr < vma->vm_start)
> +		return -ENOMEM;
> +	mincore_walk.vma = vma;
> +	mincore_walk.mm = vma->vm_mm;
> +
>  	err = walk_page_vma(vma, &mincore_walk);
> -	if (err < 0)
> +	if (err < 0) {
>  		return err;
> -	else
> +	} else {
> +		unsigned long end;
> +
> +		end = min(vma->vm_end, addr + (pages << PAGE_SHIFT));
>  		return (end - addr) >> PAGE_SHIFT;
> +	}

Doesn't this min() with vma->vm_end break the mincore(2)'s behavior?
The return value of do_mincore() are subtracted from pages in sys_mincore
and the while loop is repeated until pages reaches 0, so if users call
mincore(2) over the virtual address range not backed by vma, the return
value is underestimated.  I think that in mincore's walk we should set vec
to 0 for such hole region (no vma backed,) so it should be counted in the
return value.

Thanks,
Naoya Horiguchi

--
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:[~2014-06-12 23:33 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-06 22:58 [PATCH -mm 0/7] mm/pagewalk: standardize current users, move pmd locking, apply to mincore Naoya Horiguchi
2014-06-06 22:58 ` [PATCH 1/7] mm/pagewalk: remove pgd_entry() and pud_entry() Naoya Horiguchi
2014-06-06 22:58 ` [PATCH 2/7] mm/pagewalk: replace mm_walk->skip with more general mm_walk->control Naoya Horiguchi
2014-06-09 20:01   ` Dave Hansen
2014-06-09 21:29     ` Naoya Horiguchi
     [not found]     ` <1402349339-n9udlcv2@n-horiguchi@ah.jp.nec.com>
2014-06-09 21:51       ` Dave Hansen
2014-06-06 22:58 ` [PATCH 3/7] madvise: cleanup swapin_walk_pmd_entry() Naoya Horiguchi
2014-06-06 22:58 ` [PATCH 4/7] memcg: separate mem_cgroup_move_charge_pte_range() Naoya Horiguchi
2014-06-06 22:58 ` [PATCH 5/7] arch/powerpc/mm/subpage-prot.c: cleanup subpage_walk_pmd_entry() Naoya Horiguchi
2014-06-06 22:58 ` [PATCH 6/7] mm/pagewalk: move pmd_trans_huge_lock() from callbacks to common code Naoya Horiguchi
2014-06-09 20:04   ` Dave Hansen
2014-06-09 21:35     ` Naoya Horiguchi
2014-06-06 22:58 ` [PATCH 7/7] mincore: apply page table walker on do_mincore() Naoya Horiguchi
2014-06-12 22:04   ` Andrew Morton
2014-06-12 23:33     ` Naoya Horiguchi [this message]
2014-06-16 15:24   ` Sasha Levin
2014-06-16 16:44     ` Naoya Horiguchi
2014-06-16 21:14       ` Sasha Levin

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=539a38d5.f25ab40a.52ef.1417SMTPIN_ADDED_BROKEN@mx.google.com \
    --to=n-horiguchi@ah.jp.nec.com \
    --cc=akpm@linux-foundation.org \
    --cc=dave.hansen@intel.com \
    --cc=hughd@google.com \
    --cc=kirill@shutemov.name \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.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