Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752925AbaBJMKb (ORCPT ); Mon, 10 Feb 2014 07:10:31 -0500 Received: from cantor2.suse.de ([195.135.220.15]:47858 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752276AbaBJMK0 (ORCPT ); Mon, 10 Feb 2014 07:10:26 -0500 Date: Mon, 10 Feb 2014 12:10:20 +0000 From: Mel Gorman To: Linus Torvalds Cc: Dave Kleikamp , Richard Yao , Andrew Morton , Rik van Riel , Eric Van Hensbergen , Ron Minnich , Latchesar Ionkov , "David S. Miller" , V9FS Develooper Mailing List , Linux Netdev Mailing List , Linux Kernel Mailing List , "Aneesh Kumar K.V" , Will Deacon , Christopher Covington , Matthew Thode Subject: Re: [PATCH 1/2] mm/vmalloc: export is_vmalloc_or_module_addr Message-ID: <20140210121020.GC6732@suse.de> References: <1391886730-19667-1-git-send-email-ryao@gentoo.org> <1391886730-19667-2-git-send-email-ryao@gentoo.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, Feb 08, 2014 at 11:45:53AM -0800, Linus Torvalds wrote: > On Sat, Feb 8, 2014 at 11:12 AM, Richard Yao wrote: > > 9p-virtio needs is_vmalloc_or_module_addr exported before a patch can be > > merged to prevent the virtio zero-copy routines from triggering a > > hypervisor page fault when loading kernel modules: > > > > https://groups.google.com/forum/#!topic/linux.kernel/eRR7AyLE29Y > > > > Without this export, the kernel build breaks with that patch applied and > > CONFIG_NET_9P_VIRTIO=m. With this export in place, all is well. > > I absolutely *detest* this patch. > > Not so much because is_vmalloc_or_module_addr() should never be used, > but because the particular use in question is pure and utter garbage. > > There are valid reasons to use "is_vmalloc_or_module_addr()", but > those are along the lines of drivers/char/mem.c, which says "return > -ENXIO for this crap". > > And btw, that horrid crap called "kmap_to_page()" needs to die too. > When is it *ever* valid to use a kmap'ed page for IO? Here's a clue: > never. > > > > Those *disgusting* get_kernel_page[s]() functions came with a > commentary about "The initial user is expected to be NFS.." and that > is still the *only* user. The fact that *everybody* else has been able > to avoid that crap should tell us something. kmap_to_page, get_kernel_page and the NFS user for it are already scheduled for death. Dave Kleikamp has been working on a series "Issue O_DIRECT aio using bio_vec" that replaces what NFS currently does with something far more sane. The series does not remove the helpers on top, probably because of the 9P use of it, but if that was changed then the helpers would finally die. I'm not sure why Dave's series never got merged so added him to the cc to find out. -- Mel Gorman SUSE Labs -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/