From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S262063AbTJDOWl (ORCPT ); Sat, 4 Oct 2003 10:22:41 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S262060AbTJDOWk (ORCPT ); Sat, 4 Oct 2003 10:22:40 -0400 Received: from smtprelay02.ispgateway.de ([62.67.200.157]:16518 "EHLO smtprelay02.ispgateway.de") by vger.kernel.org with ESMTP id S262061AbTJDOWj (ORCPT ); Sat, 4 Oct 2003 10:22:39 -0400 From: Ingo Oeser To: Russell King Subject: Re: mlockall and mmap of IO devices don't mix Date: Sat, 4 Oct 2003 16:19:49 +0200 User-Agent: KMail/1.5.4 Cc: Andi Kleen , Andrew Morton , Joe Korty , linux-kernel@vger.kernel.org, linux-mm@kvack.org References: <200310041202.08742.ioe-lkml@rameria.de> <20031004111336.C18928@flint.arm.linux.org.uk> In-Reply-To: <20031004111336.C18928@flint.arm.linux.org.uk> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200310041619.49392.ioe-lkml@rameria.de> Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Hi there, CC'ed linux-mm and Andrew Morton for expertise. On Saturday 04 October 2003 12:13, Russell King wrote: > It has to be correct. We do the following in a hell of a lot of places: > > pfn = pte_pfn(pte); > if (pfn_valid(pfn)) { > struct page *page = pfn_to_page(pfn); > /* do something with page */ > } > > basically this type of thing happens in any of the PTE manipulation > functions (eg, copy_page_range, zap_pte_range, etc.) These functions are called always with pages, where we know, that this is RAM, AFICS. Since sometimes other things are encoded in the PTE, whe check this via pfn_valid(). If I'm wrong about this the gurus from LINUX-MM should complain loudly. > If pfn_valid is returning false positives, and you happen to mmap() an > area which gives false positives from a user space application, your > kernel will either oops or will corrupt RAM when that application exits. > > I believe the comment in mmzone.h therefore is an opinion, and indicates > a concern for performance rather than correctness and stability. I hope you are wrong about this, but I'm not totally sure. So I included the linux-mm mailing list and Andrew Morton for expert advice. Regards Ingo Oeser