[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Xen-devel] [PATCH] [RFC] Xen: Spread boot time page scrubbing across all available CPU's



Hi,

This seems like a very good thing, though for after 4.2.  A few detailed
comments below. 

At 18:25 +0100 on 10 May (1336674317), Malcolm Crossley wrote:
> The page scrubbing is done in 256MB chunks in lockstep across all the CPU's.
> This allows for the boot CPU to hold the heap_lock whilst each chunk is being
> scrubbed and then release the heap_lock when all CPU's are finished scrubing
> their individual chunk. This allows for the heap_lock to not be held
> continously and for pending softirqs are to be serviced periodically across
> all CPU's.
> 
> The page scrub memory chunks are allocated to the CPU's in a NUMA aware
> fashion to reduce Socket interconnect overhead and improve performance.
> 
> This patch reduces the boot page scrub time on a 256GB 16 core AMD Opteron
> machine from 1 minute 46 seconds to 38 seconds.
> 
> diff -r 8a86d841e6d4 -r a909ee6d9799 xen/common/page_alloc.c
> --- a/xen/common/page_alloc.c
> +++ b/xen/common/page_alloc.c
> @@ -89,6 +89,15 @@ static struct bootmem_region {
>  } *__initdata bootmem_region_list;
>  static unsigned int __initdata nr_bootmem_regions;
>  
> +static atomic_t __initdata bootscrub_count = ATOMIC_INIT(0);
> +
> +struct scrub_region {
> +    unsigned long offset;
> +    unsigned long start;
> +    unsigned long chunk_size;
> +    unsigned long cpu_block_size;
> +};
> +
>  static void __init boot_bug(int line)
>  {
>      panic("Boot BUG at %s:%d\n", __FILE__, line);
> @@ -1090,28 +1099,43 @@ void __init end_boot_allocator(void)
>      printk("\n");
>  }
>  
> -/*
> - * Scrub all unallocated pages in all heap zones. This function is more
> - * convoluted than appears necessary because we do not want to continuously
> - * hold the lock while scrubbing very large memory areas.
> - */
> -void __init scrub_heap_pages(void)
> +void __init smp_scrub_heap_pages(void *data)
>  {
>      unsigned long mfn;
>      struct page_info *pg;
> +    unsigned long start_mfn, end_mfn;
> +    struct scrub_region *region = (struct scrub_region *) data;
> +    int temp_cpu, local_node, local_cpu_index;
>  
> -    if ( !opt_bootscrub )
> -        return;
> +    ASSERT(region != NULL);
>  
> -    printk("Scrubbing Free RAM: ");
> +    /* Determine the current CPU's index into all this Node's CPU's*/
> +    local_node = cpu_to_node(smp_processor_id());
> +    local_cpu_index = 0;
> +    for_each_cpu(temp_cpu, &node_to_cpumask(local_node))
> +    {
> +        if(smp_processor_id() == temp_cpu)

Missing whitespace around the parentheses.

> +            break;
> +        local_cpu_index++;
> +    }
>  
> -    for ( mfn = first_valid_mfn; mfn < max_page; mfn++ )
> +    /* Calculate the starting mfn for this CPU's memory block */
> +    start_mfn = region->start + (region->cpu_block_size * local_cpu_index)
> +                 + region->offset;
> +
> +    /* Calculate the end mfn into this CPU's memory block for this iteration 
> */
> +    if ( ( region->offset + region->chunk_size ) > region->cpu_block_size )

Too much whitespace. :)  The extra space only goes in the outermost parens.

> +        end_mfn = region->start + (region->cpu_block_size * local_cpu_index)
> +                    + region->cpu_block_size;
> +    else
> +        end_mfn = start_mfn + region->chunk_size;
> +
> +
> +    for ( mfn = start_mfn; mfn < end_mfn; mfn++ )
>      {
> -        process_pending_softirqs();
> -
>          pg = mfn_to_page(mfn);
>  
> -        /* Quick lock-free check. */
> +        /* Check the mfn is valid and page is free. */
>          if ( !mfn_valid(mfn) || !page_state_is(pg, free) )
>              continue;
>  
> @@ -1119,11 +1143,82 @@ void __init scrub_heap_pages(void)
>          if ( (mfn % ((100*1024*1024)/PAGE_SIZE)) == 0 )
>              printk(".");

Since the scrub order is pretty much arbitrary this printk isn't much of
an indicator of progress.  Maybe replace it with a printk in the
dispatch loop instead?

> +        /* Do the scrub if possible */
> +        if ( page_state_is(pg, free) )

You already checked this a couple of lines above.

> +            scrub_one_page(pg);
> +    }
> +    /* Increment count to indicate scrubbing complete on this CPU */
> +    atomic_inc(&bootscrub_count);

Does this need a wmb() before it (and another barrier on the reading side)?
It's OK on x86 but maybe not on looser memory models, and this is common
code.

> +}
> +
> +/*
> + * Scrub all unallocated pages in all heap zones. This function uses all
> + * online cpu's to scrub the memory in parallel.
> + */
> +void __init scrub_heap_pages(void)
> +{
> +    cpumask_t node_cpus;
> +    unsigned int i;
> +    struct scrub_region region[MAX_NUMNODES];

That's 2KiB on the stack (which is only 8KiB in total).  At this point
it's probably fine but if we start to support more than 64 nodes it
might cause trouble.  Maybe static __initdata?

> +    unsigned long mfn_off, chunk_size, max_cpu_blk_size, mem_start, mem_end;
> +
> +    if ( !opt_bootscrub )
> +        return;
> +
> +    printk("Scrubbing Free RAM: ");
> +
> +    /* Scrub block size */
> +    chunk_size = (256*1024*1024/PAGE_SIZE);
> +
> +    max_cpu_blk_size = 0;
> +    /* Determine the amount of memory to scrub, per CPU on each Node */
> +    for_each_online_node ( i )
> +    {
> +        /* Calculate Node memory start and end address */
> +        mem_start = max(node_start_pfn(i), first_valid_mfn);
> +        mem_end = min(mem_start + node_spanned_pages(i), max_page);
> +        node_cpus = node_to_cpumask(i);
> +        /* Divide by number of CPU's for this node */
> +        region[i].cpu_block_size = (mem_end - mem_start) /
> +                                                    
> cpumask_weight(&node_cpus);
> +        region[i].start = mem_start;
> +
> +        if ( region[i].cpu_block_size > max_cpu_blk_size )
> +            max_cpu_blk_size = region[i].cpu_block_size;
> +    }
> +
> +    if ( chunk_size > max_cpu_blk_size )
> +        chunk_size = max_cpu_blk_size;
> +
> +    /*
> +     * Start all CPU's scrubbing memory, chunk_size at a time
> +     */
> +    for ( mfn_off = 0; mfn_off < max_cpu_blk_size; mfn_off += chunk_size )
> +    {

I'm not convinced that this is going to scrub all memory.
max_cpu_blk_size is MAX(FLOOR(node-mfns/node_cpus)), so you might lose a
few frames here and there to rounding error.

> +        process_pending_softirqs();
> +
> +        atomic_set(&bootscrub_count, 0);
> +
>          spin_lock(&heap_lock);

I think we need a comment here explaining why the lock is being taken
and why it's OK to wait for other CPUs to answer an IPI with it held.

>  
> -        /* Re-check page status with lock held. */
> -        if ( page_state_is(pg, free) )
> -            scrub_one_page(pg);
> +        /* Start all other CPU's on all nodes */
> +        for_each_online_node ( i )
> +        {
> +            region[i].chunk_size = chunk_size;
> +            region[i].offset = mfn_off;
> +            node_cpus = node_to_cpumask(i);
> +            /* Clear local cpu ID */
> +            cpumask_clear_cpu(smp_processor_id(), &node_cpus);
> +            /* Start page scrubbing on all other CPU's */
> +            on_selected_cpus(&allbutself, smp_scrub_heap_pages, &region[i], 
> 0);

Does this even compile?  Surely s/allbutself/node_cpus/ here.

Cheers,

Tim.

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
http://lists.xen.org/xen-devel


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.