On Fri, 29 Oct 2010 11:55:10 +0800 Bob Liu <lliubbo@xxxxxxxxx> wrote: > On Tue, Oct 26, 2010 at 6:08 PM, KAMEZAWA Hiroyuki > <kamezawa.hiroyu@xxxxxxxxxxxxxx> wrote: > > From: KAMEZAWA Hiroyuki <kamezawa.hiroyu@xxxxxxxxxxxxxx> > > > > Add an function to allocate contiguous memory larger than MAX_ORDER. > > The main difference between usual page allocator is that this uses > > memory offline technique (Isolate pages and migrate remaining pages.). > > > > I think this is not 100% solution because we can't avoid fragmentation, > > but we have kernelcore= boot option and can create MOVABLE zone. That > > helps us to allow allocate a contiguous range on demand. > > > > The new function is > > > > Âalloc_contig_pages(base, end, nr_pages, alignment) > > > > This function will allocate contiguous pages of nr_pages from the range > > [base, end). If [base, end) is bigger than nr_pages, some pfn which > > meats alignment will be allocated. If alignment is smaller than MAX_ORDER, > > it will be raised to be MAX_ORDER. > > > > __alloc_contig_pages() has much more arguments. > > > > Some drivers allocates contig pages by bootmem or hiding some memory > > from the kernel at boot. But if contig pages are necessary only in some > > situation, kernelcore= boot option and using page migration is a choice. > > > > Note: I'm not 100% sure __GFP_HARDWALL check is required or not.. > > > > > > Changelog: 2010-10-26 > > Â- support gfp_t > > Â- support zonelist/nodemask > > Â- support [base, end) > > Â- support alignment > > > > Signed-off-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@xxxxxxxxxxxxxx> > > --- > > Âinclude/linux/page-isolation.h |  15 ++ > > Âmm/page_alloc.c        Â|  29 ++++ > > Âmm/page_isolation.c      Â| Â239 +++++++++++++++++++++++++++++++++++++++++ > > Â3 files changed, 283 insertions(+) > > > > Index: mmotm-1024/mm/page_isolation.c > > =================================================================== > > --- mmotm-1024.orig/mm/page_isolation.c > > +++ mmotm-1024/mm/page_isolation.c > > @@ -5,6 +5,7 @@ > > Â#include <linux/mm.h> > > Â#include <linux/page-isolation.h> > > Â#include <linux/pageblock-flags.h> > > +#include <linux/swap.h> > > Â#include <linux/memcontrol.h> > > Â#include <linux/migrate.h> > > Â#include <linux/memory_hotplug.h> > > @@ -398,3 +399,241 @@ retry: > >    Â} > >    Âreturn 0; > > Â} > > + > > +/* > > + * Comparing user specified [user_start, user_end) with physical memory layout > > + * [phys_start, phys_end). If no intersection of length nr_pages, return 1. > > + * If there is an intersection, return 0 and fill range in [*start, *end) > > + */ > > +static int > > +__calc_search_range(unsigned long user_start, unsigned long user_end, > > +        unsigned long nr_pages, > > +        unsigned long phys_start, unsigned long phys_end, > > +        unsigned long *start, unsigned long *end) > > +{ > > +    if ((user_start >= phys_end) || (user_end <= phys_start)) > > +        return 1; > > +    if (user_start <= phys_start) { > > +        *start = phys_start; > > +        *end = min(user_end, phys_end); > > +    } else { > > +        *start = user_start; > > +        *end = min(user_end, phys_end); > > +    } > > +    if (*end - *start < nr_pages) > > +        return 1; > > +    return 0; > > +} > > + > > + > > +/** > > + * __alloc_contig_pages - allocate a contiguous physical pages > > + * @base: the lowest pfn which caller wants. > > + * @end: Âthe highest pfn which caller wants. > > + * @nr_pages: the length of a chunk of pages to be allocated. > > + * @align_order: alignment of start address of returned chunk in order. > > + *  Returned' page's order will be aligned to (1 << align_order).If smaller > > + *  than MAX_ORDER, it's raised to MAX_ORDER. > > + * @node: allocate near memory to the node, If -1, current node is used. > > + * @gfpflag: used to specify what zone the memory should be from. > > + * @nodemask: allocate memory within the nodemask. > > + * > > + * Search a memory range [base, end) and allocates physically contiguous > > + * pages. If end - base is larger than nr_pages, a chunk in [base, end) will > > + * be allocated > > + * > > + * This returns a page of the beginning of contiguous block. At failure, NULL > > + * is returned. > > + * > > + * Limitation: at allocation, nr_pages may be increased to be aligned to > > + * MAX_ORDER before searching a range. So, even if there is a enough chunk > > + * for nr_pages, it may not be able to be allocated. Extra tail pages of > > + * allocated chunk is returned to buddy allocator before returning the caller. > > + */ > > + > > +#define MIGRATION_RETRY    Â(5) > > +struct page *__alloc_contig_pages(unsigned long base, unsigned long end, > > +            unsigned long nr_pages, int align_order, > > +            int node, gfp_t gfpflag, nodemask_t *mask) > > +{ > > +    unsigned long found, aligned_pages, start; > > +    struct page *ret = NULL; > > +    int migration_failed; > > +    bool no_search = false; > > +    unsigned long align_mask; > > +    struct zoneref *z; > > +    struct zone *zone; > > +    struct zonelist *zonelist; > > +    enum zone_type highzone_idx = gfp_zone(gfpflag); > > +    unsigned long zone_start, zone_end, rs, re, pos; > > + > > +    if (node == -1) > > +        node = numa_node_id(); > > + > > +    /* check unsupported flags */ > > +    if (gfpflag & __GFP_NORETRY) > > +        return NULL; > > +    if ((gfpflag & (__GFP_WAIT | __GFP_IO | __GFP_FS | __GFP_HARDWALL)) != > > +        (__GFP_WAIT | __GFP_IO | __GFP_FS | __GFP_HARDWALL)) > > +        return NULL; > > + > > +    if (gfpflag & __GFP_THISNODE) > > +        zonelist = &NODE_DATA(node)->node_zonelists[1]; > > +    else > > +        zonelist = &NODE_DATA(node)->node_zonelists[0]; > > +    /* > > +    Â* Base/nr_page/end should be aligned to MAX_ORDER > > +    Â*/ > > +    found = 0; > > + > > +    if (align_order < MAX_ORDER) > > +        align_order = MAX_ORDER; > > + > > +    align_mask = (1 << align_order) - 1; > > +    if (end - base == nr_pages) > > +        no_search = true; > > no_search is not used ? > Ah, yes. I wanted to remove this and I missed this one. But I have to do check again whether no_search check is required or not.. Thanks, -Kame -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxxx For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>