On Wed, 18 Nov 2009 12:59:08 -0600 Robert Jennings <r...@linux.vnet.ibm.com> wrote:
> The Collaborative Memory Manager (CMM) module allocates individual pages > over time that are not migratable. On a long running system this can > severely impact the ability to find enough pages to support a hotplug > memory remove operation. > > This patch adds a memory isolation notifier and a memory hotplug notifier. > The memory isolation notifier will return the number of pages found > in the range specified. This is used to determine if all of the used > pages in a pageblock are owned by the balloon (or other entities in > the notifier chain). The hotplug notifier will free pages in the range > which is to be removed. The priority of this hotplug notifier is low > so that it will be called near last, this helps avoids removing loaned > pages in operations that fail due to other handlers. > > CMM activity will be halted when hotplug remove operations are active > and resume activity after a delay period to allow the hypervisor time > to adjust. > > Signed-off-by: Robert Jennings <r...@linux.vnet.ibm.com> > Cc: Mel Gorman <m...@csn.ul.ie> > Cc: Ingo Molnar <mi...@elte.hu> > Cc: Brian King <brk...@linux.vnet.ibm.com> > Cc: Paul Mackerras <pau...@samba.org> > Cc: Martin Schwidefsky <schwidef...@de.ibm.com> > Cc: Gerald Schaefer <gera...@linux.vnet.ibm.com> > Cc: KAMEZAWA Hiroyuki <kamezawa.hir...@jp.fujitsu.com> > Cc: Benjamin Herrenschmidt <b...@kernel.crashing.org> > Cc: Andrew Morton <a...@linux-foundation.org> > > --- > The pages used to track loaned pages should not be marked as MOVABLE, so > they need to be handled during a memory offline event. > > Changes: > * The structures for recording loaned pages are not allocated as MOVABLE > * The structures for recording loaned pages are removed from sections > being taken offline by moving their contents to a newly allocated page. > > arch/powerpc/platforms/pseries/cmm.c | 254 > ++++++++++++++++++++++++++++++++++- > 1 file changed, 248 insertions(+), 6 deletions(-) Incremental patch is: : --- a/arch/powerpc/platforms/pseries/cmm.c~powerpc-make-the-cmm-memory-hotplug-aware-update : +++ a/arch/powerpc/platforms/pseries/cmm.c : @@ -148,8 +148,7 @@ static long cmm_alloc_pages(long nr) : spin_unlock(&cmm_lock); : npa = (struct cmm_page_array *)__get_free_page( : GFP_NOIO | __GFP_NOWARN | : - __GFP_NORETRY | __GFP_NOMEMALLOC | : - __GFP_MOVABLE); : + __GFP_NORETRY | __GFP_NOMEMALLOC); : if (!npa) { : pr_info("%s: Can not allocate new page list\n", __func__); : free_page(addr); : @@ -480,6 +479,8 @@ static unsigned long cmm_count_pages(voi : spin_lock(&cmm_lock); : pa = cmm_page_list; : while (pa) { : + if ((unsigned long)pa >= start && (unsigned long)pa < end) : + marg->pages_found++; : for (idx = 0; idx < pa->index; idx++) : if (pa->page[idx] >= start && pa->page[idx] < end) : marg->pages_found++; : @@ -531,7 +532,7 @@ static int cmm_mem_going_offline(void *a : struct memory_notify *marg = arg; : unsigned long start_page = (unsigned long)pfn_to_kaddr(marg->start_pfn); : unsigned long end_page = start_page + (marg->nr_pages << PAGE_SHIFT); : - struct cmm_page_array *pa_curr, *pa_last; : + struct cmm_page_array *pa_curr, *pa_last, *npa; : unsigned long idx; : unsigned long freed = 0; : : @@ -539,6 +540,7 @@ static int cmm_mem_going_offline(void *a : start_page, marg->nr_pages); : spin_lock(&cmm_lock); : : + /* Search the page list for pages in the range to be offlined */ : pa_last = pa_curr = cmm_page_list; : while (pa_curr) { : for (idx = (pa_curr->index - 1); (idx + 1) > 0; idx--) { : @@ -563,6 +565,37 @@ static int cmm_mem_going_offline(void *a : } : pa_curr = pa_curr->next; : } : + : + /* Search for page list structures in the range to be offlined */ : + pa_last = NULL; : + pa_curr = cmm_page_list; : + while (pa_curr) { : + if (((unsigned long)pa_curr >= start_page) && : + ((unsigned long)pa_curr < end_page)) { : + npa = (struct cmm_page_array *)__get_free_page( : + GFP_NOIO | __GFP_NOWARN | : + __GFP_NORETRY | __GFP_NOMEMALLOC); : + if (!npa) { : + spin_unlock(&cmm_lock); : + cmm_dbg("Failed to allocate memory for list " : + "management. Memory hotplug " : + "failed.\n"); : + return ENOMEM; : + } : + memcpy(npa, pa_curr, PAGE_SIZE); : + if (pa_curr == cmm_page_list) : + cmm_page_list = npa; : + if (pa_last) : + pa_last->next = npa; : + free_page((unsigned long) pa_curr); : + freed++; : + pa_curr = npa; : + } : + : + pa_last = pa_curr; : + pa_curr = pa_curr->next; : + } : + : spin_unlock(&cmm_lock); : cmm_dbg("Released %ld pages in the search range.\n", freed); : I'm wondering what is the maximum hold time of cmm_lock. Rounded to the nearest fortnight :) _______________________________________________ Linuxppc-dev mailing list Linuxppc-dev@lists.ozlabs.org https://lists.ozlabs.org/listinfo/linuxppc-dev