On Sat, Feb 08, 2014 at 11:45:53AM -0800, Linus Torvalds wrote: > On Sat, Feb 8, 2014 at 11:12 AM, Richard Yao <r...@gentoo.org> 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. > > <SNIP> > > 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 majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/