Re: [PATCH v2 4/5] slob: Use slab_list instead of lru

From: Christopher Lameter
Date: Wed Mar 13 2019 - 15:05:05 EST


On Wed, 13 Mar 2019, Tobin C. Harding wrote:

> @@ -297,7 +297,7 @@ static void *slob_alloc(size_t size, gfp_t gfp, int align, int node)
> continue;
>
> /* Attempt to alloc */
> - prev = sp->lru.prev;
> + prev = sp->slab_list.prev;
> b = slob_page_alloc(sp, size, align);
> if (!b)
> continue;

Hmmm... Is there a way to use a macro or so to avoid referencing the field
within the slab_list?