* Re: Re: [patch 12/21] Xen-paravirt: Allocate and free vmalloc areas [not found] <C1FB4190.98FA%keir@xensource.com> @ 2007-02-16 11:34 ` Andi Kleen 0 siblings, 0 replies; 7+ messages in thread From: Andi Kleen @ 2007-02-16 11:34 UTC (permalink / raw) To: virtualization Cc: Jeremy Fitzhardinge, xen-devel, linux-kernel, Jan Beulich, Chris Wright, Ian Pratt, Andrew Morton, Keir Fraser On Friday 16 February 2007 12:10, Keir Fraser wrote: > > On 16/2/07 09:18, "Andi Kleen" <ak@muc.de> wrote: > > >> It's for populating the pagetable in a vmalloc area. There's magic in > > > > If the lazy setup doesn't work for you you can always call vmalloc_sync() > > early. > > vmalloc_sync_all()? Yes. Credit goes to Jan for writing it originally. -Andi ^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <C1FB9605.9988%keir@xensource.com>]
* Re: Re: [patch 12/21] Xen-paravirt: Allocate and free vmalloc areas [not found] <C1FB9605.9988%keir@xensource.com> @ 2007-02-16 17:26 ` Hollis Blanchard 0 siblings, 0 replies; 7+ messages in thread From: Hollis Blanchard @ 2007-02-16 17:26 UTC (permalink / raw) To: Keir Fraser Cc: Zachary Amsden, Jimi Xenidis, Jeremy Fitzhardinge, xen-devel, Ian Pratt, virtualization, linux-kernel, Jan Beulich, Chris Wright, Andi Kleen, Andrew Morton, Christian Limpach On Fri, 2007-02-16 at 17:10 +0000, Keir Fraser wrote: > > > On 16/2/07 16:46, "Jeremy Fitzhardinge" <jeremy@goop.org> wrote: > > > Yes, that would work. Unfortunately that's i386 arch-specific, whereas > > the rest of this code is generic. I guess I could just move it all to > > arch/i386/mm. > > This whole thing isn't an issue on ia64 (they no-op lock_vm_area) and > powerpc doesn't use any of the Xen driver code at this time. Not sure what you mean? PowerPC uses pretty much all of the Xen driver code: event channels, blkfront/back, netfront/back, console, etc. -- Hollis Blanchard IBM Linux Technology Center ^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <C1FB967F.998B%keir@xensource.com>]
* Re: Re: [patch 12/21] Xen-paravirt: Allocate and free vmalloc areas [not found] <C1FB967F.998B%keir@xensource.com> @ 2007-02-16 17:27 ` Jeremy Fitzhardinge 0 siblings, 0 replies; 7+ messages in thread From: Jeremy Fitzhardinge @ 2007-02-16 17:27 UTC (permalink / raw) To: Keir Fraser Cc: Zachary Amsden, xen-devel, Ian Pratt, virtualization, linux-kernel, Jan Beulich, Chris Wright, Andi Kleen, Andrew Morton, Christian Limpach Keir Fraser wrote: > On 16/2/07 17:10, "Keir Fraser" <keir@xensource.com> wrote: > > >> On 16/2/07 16:46, "Jeremy Fitzhardinge" <jeremy@goop.org> wrote: >> >> >>> Yes, that would work. Unfortunately that's i386 arch-specific, whereas >>> the rest of this code is generic. I guess I could just move it all to >>> arch/i386/mm. >>> >> This whole thing isn't an issue on ia64 (they no-op lock_vm_area) and >> powerpc doesn't use any of the Xen driver code at this time. >> vmalloc_sync_all is supported by both i386 and x86_64, so we can make the >> call conditional on CONFIG_X86 so that ia64 will continue to build. This is >> what I've done in xen-unstable. >> > > > In fact that file is only built for i386 and x86_64, so there really is no > problem with using vmalloc_sync_all() directly and without ifdef. > I had moved it to mm/vmalloc.c in response to previous review comments (namely, its not Xen specific, so it shouldn't live in the Xen part of the tree). J ^ permalink raw reply [flat|nested] 7+ messages in thread
[parent not found: <C1FBB152.99B0%keir@xensource.com>]
* Re: Re: [patch 12/21] Xen-paravirt: Allocate and free vmalloc areas [not found] <C1FBB152.99B0%keir@xensource.com> @ 2007-02-16 19:19 ` Keir Fraser 2007-02-16 19:26 ` Jeremy Fitzhardinge 0 siblings, 1 reply; 7+ messages in thread From: Keir Fraser @ 2007-02-16 19:19 UTC (permalink / raw) To: Keir Fraser, Jeremy Fitzhardinge Cc: xen-devel, virtualization, linux-kernel, Jan Beulich, Chris Wright, Ian Pratt, Andrew Morton, Andi Kleen On 16/2/07 19:06, "Keir Fraser" <keir@xensource.com> wrote: >> I had moved it to mm/vmalloc.c in response to previous review comments >> (namely, its not Xen specific, so it shouldn't live in the Xen part of >> the tree). > > Then the call will have to be CONFIG_X86. I hadn't realised powerpc were > also using lock_vm_area. However I suspect that the x86 issue that those > functions were written doesn't even exist on powerpc, or any other non-x86 > architecture. Hmmm... Actually looks like a bunch of architectures do lazy sync of the vmalloc area, although neither ia64 nor powerpc does so. However, all current users of the alloc_vm_area() function would be okay since none of the other lazy-syncing architectures are supported by Xen. -- Keir ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Re: [patch 12/21] Xen-paravirt: Allocate and free vmalloc areas 2007-02-16 19:19 ` Keir Fraser @ 2007-02-16 19:26 ` Jeremy Fitzhardinge 2007-02-16 23:29 ` Keir Fraser 0 siblings, 1 reply; 7+ messages in thread From: Jeremy Fitzhardinge @ 2007-02-16 19:26 UTC (permalink / raw) To: Keir Fraser Cc: xen-devel, virtualization, linux-kernel, Jan Beulich, Chris Wright, Ian Pratt, Andrew Morton, Keir Fraser, Andi Kleen Keir Fraser wrote: > Hmmm... Actually looks like a bunch of architectures do lazy sync of the > vmalloc area, although neither ia64 nor powerpc does so. However, all > current users of the alloc_vm_area() function would be okay since none of > the other lazy-syncing architectures are supported by Xen. > Well, assuming that alloc_vm_area() has some non-Xen use, the right thing is for archs to export vmalloc_sync_all(), and just use that from common code. J ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Re: [patch 12/21] Xen-paravirt: Allocate and free vmalloc areas 2007-02-16 19:26 ` Jeremy Fitzhardinge @ 2007-02-16 23:29 ` Keir Fraser 2007-02-16 23:41 ` Jeremy Fitzhardinge 0 siblings, 1 reply; 7+ messages in thread From: Keir Fraser @ 2007-02-16 23:29 UTC (permalink / raw) To: Jeremy Fitzhardinge Cc: xen-devel, virtualization, linux-kernel, Jan Beulich, Chris Wright, Ian Pratt, Andrew Morton, Keir Fraser, Andi Kleen On 16/2/07 19:26, "Jeremy Fitzhardinge" <jeremy@goop.org> wrote: > Keir Fraser wrote: >> Hmmm... Actually looks like a bunch of architectures do lazy sync of the >> vmalloc area, although neither ia64 nor powerpc does so. However, all >> current users of the alloc_vm_area() function would be okay since none of >> the other lazy-syncing architectures are supported by Xen. >> > > Well, assuming that alloc_vm_area() has some non-Xen use, the right > thing is for archs to export vmalloc_sync_all(), and just use that from > common code. It has no other users right now and get_vm_area_sync() would be a better-named and more generically useful function than alloc_vm_area(). But yes, to be done properly it does require vmalloc_sync_all() to be defined by all architectures (even if that's BUG() and implement-properly-on-demand). get_vm_area_sync(), partnered with existing remove_vm_area(), just seems much smaller and neater than adding four new functions with a more complex usage: alloc_vm_area, {lock,unlock}_vm_area, and free_vm_area. Maybe keeping free_vm_area() too makes sense as its interface is more neatly symmetrical to that of get_vm_area(). -- Keir ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Re: [patch 12/21] Xen-paravirt: Allocate and free vmalloc areas 2007-02-16 23:29 ` Keir Fraser @ 2007-02-16 23:41 ` Jeremy Fitzhardinge 0 siblings, 0 replies; 7+ messages in thread From: Jeremy Fitzhardinge @ 2007-02-16 23:41 UTC (permalink / raw) To: Keir Fraser Cc: xen-devel, virtualization, linux-kernel, Jan Beulich, Chris Wright, Ian Pratt, Andrew Morton, Keir Fraser, Andi Kleen Keir Fraser wrote: > It has no other users right now and get_vm_area_sync() would be a > better-named and more generically useful function than alloc_vm_area(). I'm thinking "reserve" might be a better term; "get" generally has the suggestion of a refcount. > get_vm_area_sync(), partnered with existing remove_vm_area(), just seems > much smaller and neater than adding four new functions with a more complex > usage: alloc_vm_area, {lock,unlock}_vm_area, and free_vm_area. Maybe keeping > free_vm_area() too makes sense as its interface is more neatly symmetrical > to that of get_vm_area(). I've already killed the lock/unlock functions. I'll come up with something for the get/allocate/reserve and free functions. J ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2007-02-16 23:41 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <C1FB4190.98FA%keir@xensource.com>
2007-02-16 11:34 ` Re: [patch 12/21] Xen-paravirt: Allocate and free vmalloc areas Andi Kleen
[not found] <C1FB9605.9988%keir@xensource.com>
2007-02-16 17:26 ` Hollis Blanchard
[not found] <C1FB967F.998B%keir@xensource.com>
2007-02-16 17:27 ` Jeremy Fitzhardinge
[not found] <C1FBB152.99B0%keir@xensource.com>
2007-02-16 19:19 ` Keir Fraser
2007-02-16 19:26 ` Jeremy Fitzhardinge
2007-02-16 23:29 ` Keir Fraser
2007-02-16 23:41 ` Jeremy Fitzhardinge
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).