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 for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Fri, 27 Jun 2008 12:55:47 +0100 (BST)
From:	Hugh Dickins <hugh@...itas.com>
To:	Johannes Weiner <hannes@...urebad.de>
cc:	Andrew Morton <akpm@...ux-foundation.org>,
	linux-kernel@...r.kernel.org
Subject: Re: [PATCH -mmotm] Remove ->nopfn check from use_zero_page

On Fri, 27 Jun 2008, Johannes Weiner wrote:

> Hi Andrew,
> 
> The get_user_pages fix from Linus came to -mm through -next as it seems,
> but -mm has Nick's nopfn removal patches already and so use_zero_page
> checks for a non-existant vm_op.
> 
> This patch is needed to at least compile.
> 
> Signed-off-by: Johannes Weiner <hannes@...urebad.de>

Please try yesterday's .DATE=2008-06-26-14-32 mmotm,
I sent Andrew a similar fix and it should be okay now.
Also includes fix to endless bad page states once you boot.

Hugh

> ---
> 
> diff --git a/mm/memory.c b/mm/memory.c
> index 08cd653..5d7e705 100644
> --- a/mm/memory.c
> +++ b/mm/memory.c
> @@ -1082,11 +1082,10 @@ static inline int use_zero_page(struct vm_area_struct *vma)
>  	if (vma->vm_flags & (VM_LOCKED | VM_SHARED))
>  		return 0;
>  	/*
> -	 * And if we have a fault or a nopfn routine, it's not an
> -	 * anonymous region.
> +	 * And if we have a fault routine, it's not an anonymous
> +	 * region.
>  	 */
> -	return !vma->vm_ops ||
> -		(!vma->vm_ops->fault && !vma->vm_ops->nopfn);
> +	return !vma->vm_ops || !vma->vm_ops->fault;
>  }
>  
>  int get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at  http://www.tux.org/lkml/
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ