Re: [RFC PATCH v1 03/13] mm: add lock array to pgdat and batch fields to struct page

From: Tim Chen
Date: Thu Feb 01 2018 - 17:50:30 EST


On 01/31/2018 03:04 PM, daniel.m.jordan@xxxxxxxxxx wrote:
> This patch simply adds the array of locks and struct page fields.
> Ignore for now where the struct page fields are: we need to find a place
> to put them that doesn't enlarge the struct.
>
> Signed-off-by: Daniel Jordan <daniel.m.jordan@xxxxxxxxxx>
> ---
> include/linux/mm_types.h | 5 +++++
> include/linux/mmzone.h | 7 +++++++
> mm/page_alloc.c | 3 +++
> 3 files changed, 15 insertions(+)
>
> diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
> index cfd0ac4e5e0e..6e9d26f0cecf 100644
> --- a/include/linux/mm_types.h
> +++ b/include/linux/mm_types.h
> @@ -190,6 +190,11 @@ struct page {
> struct kmem_cache *slab_cache; /* SL[AU]B: Pointer to slab */
> };
>
> + struct {
> + unsigned lru_batch;
> + bool lru_sentinel;

The above declaration adds at least 5 bytes to struct page.
It adds a lot of extra memory overhead when multiplied
by the number of pages in the system.

We can move sentinel bool to page flag, at least for 64 bit system.
And 8 bit is probably enough for lru_batch id to give a max
lru_batch number of 256 to break the locks into 256 smaller ones.
The max used in the patchset is 32 and that is already giving
pretty good spread of the locking.
It will be better if we can find some unused space in struct page
to squeeze it in.

Tim