On 05/08/2013 09:03 AM, Mel Gorman wrote:
> @@ -368,10 +375,9 @@ struct zone {
>  
>       /*
>        * Keep some order-0 pages on a separate free list
> -      * protected by an irq-unsafe lock
> +      * protected by an irq-unsafe lock.
>        */
> -     spinlock_t                      _magazine_lock;
> -     struct free_area_magazine       _noirq_magazine;
> +     struct free_magazine    noirq_magazine[NR_MAGAZINES];

Looks like pretty cool stuff!

The old per-cpu-pages stuff was all hung off alloc_percpu(), which
surely wasted lots of memory with many NUMA nodes.  It's nice to see
this decoupled a bit from the online cpu count.

That said, the alloc_percpu() stuff is nice in how much it hides from
you when doing cpu hotplug.  We'll _probably_ need this to be
dynamically-sized at some point, right?

> -static inline struct free_area_magazine *find_lock_magazine(struct zone 
> *zone)
> +static inline struct free_magazine *lock_magazine(struct zone *zone)
>  {
> -     struct free_area_magazine *area = &zone->_noirq_magazine;
> -     spin_lock(&zone->_magazine_lock);
> -     return area;
> +     int i = (raw_smp_processor_id() >> 1) & (NR_MAGAZINES-1);
> +     spin_lock(&zone->noirq_magazine[i].lock);
> +     return &zone->noirq_magazine[i];
>  }

I bet this logic will be fun to play with once we have more magazines
around.  For instance, on my system processors 0/80 are HT twins, so
they'd always be going after the same magazine.  I guess that's a good
thing.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to