linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Mel Gorman <mel@csn.ul.ie>
To: Hugh Dickins <hugh.dickins@tiscali.co.uk>
Cc: Linus Torvalds <torvalds@linux-foundation.org>,
	Nick Piggin <npiggin@suse.de>,
	Andrew Morton <akpm@linux-foundation.org>,
	Wu Fengguang <fengguang.wu@intel.com>,
	Ingo Molnar <mingo@elte.hu>,
	linux-mm@kvack.org
Subject: Re: [PATCH] hugetlb: fault flags instead of write_access
Date: Mon, 29 Jun 2009 13:29:25 +0100	[thread overview]
Message-ID: <20090629122925.GB5065@csn.ul.ie> (raw)
In-Reply-To: <Pine.LNX.4.64.0906231345001.19552@sister.anvils>

On Tue, Jun 23, 2009 at 01:49:05PM +0100, Hugh Dickins wrote:
> handle_mm_fault() is now passing fault flags rather than write_access
> down to hugetlb_fault(), so better recognize that in hugetlb_fault(),
> and in hugetlb_no_page().
> 
> Signed-off-by: Hugh Dickins <hugh.dickins@tiscali.co.uk>

Patch looks good and passes libhugetlbfs regression tests. It passes
with or without the tests but without this patch, it's only a
co-incidence it passes as opposed to designed.

Reviewed-by: Mel Gorman <mel@csn.ul.ie>

> ---
> 
>  include/linux/hugetlb.h |    4 ++--
>  mm/hugetlb.c            |   17 +++++++++--------
>  2 files changed, 11 insertions(+), 10 deletions(-)
> 
> --- 2.6.30-git20/include/linux/hugetlb.h	2009-06-23 11:06:22.000000000 +0100
> +++ linux/include/linux/hugetlb.h	2009-06-23 13:07:57.000000000 +0100
> @@ -33,7 +33,7 @@ void hugetlb_report_meminfo(struct seq_f
>  int hugetlb_report_node_meminfo(int, char *);
>  unsigned long hugetlb_total_pages(void);
>  int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
> -			unsigned long address, int write_access);
> +			unsigned long address, unsigned int flags);
>  int hugetlb_reserve_pages(struct inode *inode, long from, long to,
>  						struct vm_area_struct *vma,
>  						int acctflags);
> @@ -98,7 +98,7 @@ static inline void hugetlb_report_meminf
>  #define pud_huge(x)	0
>  #define is_hugepage_only_range(mm, addr, len)	0
>  #define hugetlb_free_pgd_range(tlb, addr, end, floor, ceiling) ({BUG(); 0; })
> -#define hugetlb_fault(mm, vma, addr, write)	({ BUG(); 0; })
> +#define hugetlb_fault(mm, vma, addr, flags)	({ BUG(); 0; })
>  
>  #define hugetlb_change_protection(vma, address, end, newprot)
>  
> --- 2.6.30-git20/mm/hugetlb.c	2009-06-23 11:06:25.000000000 +0100
> +++ linux/mm/hugetlb.c	2009-06-23 13:07:57.000000000 +0100
> @@ -1985,7 +1985,7 @@ static struct page *hugetlbfs_pagecache_
>  }
>  
>  static int hugetlb_no_page(struct mm_struct *mm, struct vm_area_struct *vma,
> -			unsigned long address, pte_t *ptep, int write_access)
> +			unsigned long address, pte_t *ptep, unsigned int flags)
>  {
>  	struct hstate *h = hstate_vma(vma);
>  	int ret = VM_FAULT_SIGBUS;
> @@ -2053,7 +2053,7 @@ retry:
>  	 * any allocations necessary to record that reservation occur outside
>  	 * the spinlock.
>  	 */
> -	if (write_access && !(vma->vm_flags & VM_SHARED))
> +	if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED))
>  		if (vma_needs_reservation(h, vma, address) < 0) {
>  			ret = VM_FAULT_OOM;
>  			goto backout_unlocked;
> @@ -2072,7 +2072,7 @@ retry:
>  				&& (vma->vm_flags & VM_SHARED)));
>  	set_huge_pte_at(mm, address, ptep, new_pte);
>  
> -	if (write_access && !(vma->vm_flags & VM_SHARED)) {
> +	if ((flags & FAULT_FLAG_WRITE) && !(vma->vm_flags & VM_SHARED)) {
>  		/* Optimization, do the COW without a second fault */
>  		ret = hugetlb_cow(mm, vma, address, ptep, new_pte, page);
>  	}
> @@ -2091,7 +2091,7 @@ backout_unlocked:
>  }
>  
>  int hugetlb_fault(struct mm_struct *mm, struct vm_area_struct *vma,
> -			unsigned long address, int write_access)
> +			unsigned long address, unsigned int flags)
>  {
>  	pte_t *ptep;
>  	pte_t entry;
> @@ -2112,7 +2112,7 @@ int hugetlb_fault(struct mm_struct *mm,
>  	mutex_lock(&hugetlb_instantiation_mutex);
>  	entry = huge_ptep_get(ptep);
>  	if (huge_pte_none(entry)) {
> -		ret = hugetlb_no_page(mm, vma, address, ptep, write_access);
> +		ret = hugetlb_no_page(mm, vma, address, ptep, flags);
>  		goto out_mutex;
>  	}
>  
> @@ -2126,7 +2126,7 @@ int hugetlb_fault(struct mm_struct *mm,
>  	 * page now as it is used to determine if a reservation has been
>  	 * consumed.
>  	 */
> -	if (write_access && !pte_write(entry)) {
> +	if ((flags & FAULT_FLAG_WRITE) && !pte_write(entry)) {
>  		if (vma_needs_reservation(h, vma, address) < 0) {
>  			ret = VM_FAULT_OOM;
>  			goto out_mutex;
> @@ -2143,7 +2143,7 @@ int hugetlb_fault(struct mm_struct *mm,
>  		goto out_page_table_lock;
>  
>  
> -	if (write_access) {
> +	if (flags & FAULT_FLAG_WRITE) {
>  		if (!pte_write(entry)) {
>  			ret = hugetlb_cow(mm, vma, address, ptep, entry,
>  							pagecache_page);
> @@ -2152,7 +2152,8 @@ int hugetlb_fault(struct mm_struct *mm,
>  		entry = pte_mkdirty(entry);
>  	}
>  	entry = pte_mkyoung(entry);
> -	if (huge_ptep_set_access_flags(vma, address, ptep, entry, write_access))
> +	if (huge_ptep_set_access_flags(vma, address, ptep, entry,
> +						flags & FAULT_FLAG_WRITE))
>  		update_mmu_cache(vma, address, entry);
>  
>  out_page_table_lock:
> 
> --
> 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>
> 

-- 
Mel Gorman
Part-time Phd Student                          Linux Technology Center
University of Limerick                         IBM Dublin Software Lab

--
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>

  parent reply	other threads:[~2009-06-29 12:28 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-06-21 20:42 handle_mm_fault() calling convention cleanup Linus Torvalds
2009-06-22  2:20 ` David Miller
2009-06-22  8:10 ` Ingo Molnar
2009-06-22  9:26 ` Martin Schwidefsky
2009-06-22 14:22 ` David Howells
2009-06-22 14:58 ` James Bottomley
2009-06-22 15:49 ` Russell King
2009-06-23  7:18 ` Nick Piggin
2009-06-23 12:49 ` [PATCH] hugetlb: fault flags instead of write_access Hugh Dickins
2009-06-23 12:56   ` Wu Fengguang
2009-06-23 21:36   ` Rik van Riel
2009-06-29 12:29   ` Mel Gorman [this message]
2009-06-23 12:52 ` [PATCH] mm: don't rely on flags coincidence Hugh Dickins
2009-06-23 13:00   ` Wu Fengguang
2009-06-23 21:38   ` Rik van Riel
2009-07-03 23:35 ` handle_mm_fault() calling convention cleanup Benjamin Herrenschmidt
2009-07-04 16:44   ` Linus Torvalds
2009-07-04 21:08     ` Benjamin Herrenschmidt
2009-07-06  7:31       ` Nick Piggin
2009-07-06 10:56         ` Benjamin Herrenschmidt
2009-07-06 11:53           ` Nick Piggin

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=20090629122925.GB5065@csn.ul.ie \
    --to=mel@csn.ul.ie \
    --cc=akpm@linux-foundation.org \
    --cc=fengguang.wu@intel.com \
    --cc=hugh.dickins@tiscali.co.uk \
    --cc=linux-mm@kvack.org \
    --cc=mingo@elte.hu \
    --cc=npiggin@suse.de \
    --cc=torvalds@linux-foundation.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