* [PATCH 1/2] mm/vmalloc: Export purge_vmap_area_lazy()
@ 2010-03-24 7:56 Benjamin Herrenschmidt
2010-03-25 5:28 ` Nick Piggin
2010-03-25 8:39 ` MJ embd
0 siblings, 2 replies; 4+ messages in thread
From: Benjamin Herrenschmidt @ 2010-03-24 7:56 UTC (permalink / raw)
To: linuxppc-dev
Cc: Nick Piggin, linux-mm@kvack.org, linux-kernel@vger.kernel.org
Some powerpc code needs to ensure that all previous iounmap/vunmap has
really been flushed out of the MMU hash table. Without that, various
hotplug operations may fail when trying to return those pieces to
the hypervisor due to existing active mappings.
This exports purge_vmap_area_lazy() to allow the powerpc code to perform
that purge when unplugging devices.
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
---
include/linux/vmalloc.h | 1 +
mm/vmalloc.c | 5 ++---
2 files changed, 3 insertions(+), 3 deletions(-)
Nick, care to give me an Ack so I can get that upstream along with
the next patch ASAP (and back into distros) ?
Thanks !
Ben.
diff --git a/include/linux/vmalloc.h b/include/linux/vmalloc.h
index 227c2a5..0d0ae4e 100644
--- a/include/linux/vmalloc.h
+++ b/include/linux/vmalloc.h
@@ -99,6 +99,7 @@ extern int map_kernel_range_noflush(unsigned long start, unsigned long size,
pgprot_t prot, struct page **pages);
extern void unmap_kernel_range_noflush(unsigned long addr, unsigned long size);
extern void unmap_kernel_range(unsigned long addr, unsigned long size);
+extern void purge_vmap_area_lazy(void);
/* Allocate/destroy a 'vmalloc' VM area. */
extern struct vm_struct *alloc_vm_area(size_t size);
diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index ae00746..d25c741 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -317,8 +317,6 @@ static void __insert_vmap_area(struct vmap_area *va)
list_add_rcu(&va->list, &vmap_area_list);
}
-static void purge_vmap_area_lazy(void);
-
/*
* Allocate a region of KVA of the specified size and alignment, within the
* vstart and vend.
@@ -590,12 +588,13 @@ static void try_purge_vmap_area_lazy(void)
/*
* Kick off a purge of the outstanding lazy areas.
*/
-static void purge_vmap_area_lazy(void)
+void purge_vmap_area_lazy(void)
{
unsigned long start = ULONG_MAX, end = 0;
__purge_vmap_area_lazy(&start, &end, 1, 0);
}
+EXPORT_SYMBOL_GPL(purge_vmap_area_lazy);
/*
* Free and unmap a vmap area, caller ensuring flush_cache_vunmap had been
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] mm/vmalloc: Export purge_vmap_area_lazy()
2010-03-24 7:56 [PATCH 1/2] mm/vmalloc: Export purge_vmap_area_lazy() Benjamin Herrenschmidt
@ 2010-03-25 5:28 ` Nick Piggin
2010-03-25 8:25 ` Benjamin Herrenschmidt
2010-03-25 8:39 ` MJ embd
1 sibling, 1 reply; 4+ messages in thread
From: Nick Piggin @ 2010-03-25 5:28 UTC (permalink / raw)
To: Benjamin Herrenschmidt
Cc: linux-mm@kvack.org, linuxppc-dev, linux-kernel@vger.kernel.org
On Wed, Mar 24, 2010 at 06:56:31PM +1100, Benjamin Herrenschmidt wrote:
> Some powerpc code needs to ensure that all previous iounmap/vunmap has
> really been flushed out of the MMU hash table. Without that, various
> hotplug operations may fail when trying to return those pieces to
> the hypervisor due to existing active mappings.
>
> This exports purge_vmap_area_lazy() to allow the powerpc code to perform
> that purge when unplugging devices.
You want vm_unmap_aliases(), which also flushes entries in the
per-cpu vmap allocator (and is already exported for other code
that has similar problems).
Thanks,
Nick
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] mm/vmalloc: Export purge_vmap_area_lazy()
2010-03-25 5:28 ` Nick Piggin
@ 2010-03-25 8:25 ` Benjamin Herrenschmidt
0 siblings, 0 replies; 4+ messages in thread
From: Benjamin Herrenschmidt @ 2010-03-25 8:25 UTC (permalink / raw)
To: Nick Piggin
Cc: linux-mm@kvack.org, linuxppc-dev, linux-kernel@vger.kernel.org
> You want vm_unmap_aliases(), which also flushes entries in the
> per-cpu vmap allocator (and is already exported for other code
> that has similar problems).
Ok, I missed that one. I'll update my patch. Thanks.
Cheers,
Ben.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] mm/vmalloc: Export purge_vmap_area_lazy()
2010-03-24 7:56 [PATCH 1/2] mm/vmalloc: Export purge_vmap_area_lazy() Benjamin Herrenschmidt
2010-03-25 5:28 ` Nick Piggin
@ 2010-03-25 8:39 ` MJ embd
1 sibling, 0 replies; 4+ messages in thread
From: MJ embd @ 2010-03-25 8:39 UTC (permalink / raw)
To: Benjamin Herrenschmidt
Cc: Nick Piggin, linux-mm@kvack.org, linuxppc-dev,
linux-kernel@vger.kernel.org
On Wed, Mar 24, 2010 at 1:26 PM, Benjamin Herrenschmidt
<benh@kernel.crashing.org> wrote:
> Some powerpc code needs to ensure that all previous iounmap/vunmap has
> really been flushed out of the MMU hash table. Without that, various
> hotplug operations may fail when trying to return those pieces to
> the hypervisor due to existing active mappings.
Are you talking about KVM or any other hypervisor ?
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-03-25 8:39 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-24 7:56 [PATCH 1/2] mm/vmalloc: Export purge_vmap_area_lazy() Benjamin Herrenschmidt
2010-03-25 5:28 ` Nick Piggin
2010-03-25 8:25 ` Benjamin Herrenschmidt
2010-03-25 8:39 ` MJ embd
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).