From: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>
To: Dave Airlie <airlied@gmail.com>,
dri-devel@lists.freedesktop.org, tj@kernel.org,
christian.koenig@amd.com, Johannes Weiner <hannes@cmpxchg.org>,
Michal Hocko <mhocko@kernel.org>,
Roman Gushchin <roman.gushchin@linux.dev>,
Shakeel Butt <shakeel.butt@linux.dev>,
Muchun Song <muchun.song@linux.dev>
Cc: cgroups@vger.kernel.org, Waiman Long <longman@redhat.com>,
simona@ffwll.ch, intel-xe@lists.freedesktop.org
Subject: Re: [PATCH 03/10] ttm/pool: initialise the shrinker earlier (v2)
Date: Wed, 22 Jul 2026 17:33:39 +0200 [thread overview]
Message-ID: <18f2008f7d127171f271e3462d283c6743c87c87.camel@linux.intel.com> (raw)
In-Reply-To: <20260706052330.1110909-4-airlied@gmail.com>
On Mon, 2026-07-06 at 15:22 +1000, Dave Airlie wrote:
> From: Dave Airlie <airlied@redhat.com>
>
> Later memcg enablement needs the shrinker initialised before the list
> lru,
> Just move it for now, but also handle the list being uninitialised.
>
> Signed-off-by: Dave Airlie <airlied@redhat.com>
>
> ---
> v2: sashiko identified a problem with the list handling.
> ---
Couple of seemingly valid Sashiko issues:
https://sashiko.dev/#/message/20260706053333.AEABE1F000E9%40smtp.kernel.org
Thanks,
Thomas
> drivers/gpu/drm/ttm/ttm_pool.c | 30 +++++++++++++++++-------------
> 1 file changed, 17 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/gpu/drm/ttm/ttm_pool.c
> b/drivers/gpu/drm/ttm/ttm_pool.c
> index e4dbf4c93091..f12b68812081 100644
> --- a/drivers/gpu/drm/ttm/ttm_pool.c
> +++ b/drivers/gpu/drm/ttm/ttm_pool.c
> @@ -440,10 +440,14 @@ static unsigned int ttm_pool_shrink(int nid,
> unsigned long num_to_free)
>
> down_read(&pool_shrink_rwsem);
> spin_lock(&shrinker_lock);
> - pt = list_first_entry(&shrinker_list, typeof(*pt),
> shrinker_list);
> - list_move_tail(&pt->shrinker_list, &shrinker_list);
> + pt = list_first_entry_or_null(&shrinker_list, typeof(*pt),
> shrinker_list);
> + if (pt)
> + list_move_tail(&pt->shrinker_list, &shrinker_list);
> spin_unlock(&shrinker_lock);
>
> + if (!pt)
> + return 0;
> +
> num_pages = list_lru_walk_node(&pt->pages, nid,
> pool_move_to_dispose_list, &dispose, &num_to_free);
> num_pages *= 1 << pt->order;
>
> @@ -1402,6 +1406,17 @@ int ttm_pool_mgr_init(unsigned long num_pages)
> spin_lock_init(&shrinker_lock);
> INIT_LIST_HEAD(&shrinker_list);
>
> + mm_shrinker = shrinker_alloc(SHRINKER_NUMA_AWARE, "drm-
> ttm_pool");
> + if (!mm_shrinker)
> + return -ENOMEM;
> +
> + mm_shrinker->count_objects = ttm_pool_shrinker_count;
> + mm_shrinker->scan_objects = ttm_pool_shrinker_scan;
> + mm_shrinker->batch = TTM_SHRINKER_BATCH;
> + mm_shrinker->seeks = 1;
> +
> + shrinker_register(mm_shrinker);
> +
> for (i = 0; i < NR_PAGE_ORDERS; ++i) {
> ttm_pool_type_init(&global_write_combined[i], NULL,
> ttm_write_combined, i);
> @@ -1424,17 +1439,6 @@ int ttm_pool_mgr_init(unsigned long num_pages)
> #endif
> #endif
>
> - mm_shrinker = shrinker_alloc(SHRINKER_NUMA_AWARE, "drm-
> ttm_pool");
> - if (!mm_shrinker)
> - return -ENOMEM;
> -
> - mm_shrinker->count_objects = ttm_pool_shrinker_count;
> - mm_shrinker->scan_objects = ttm_pool_shrinker_scan;
> - mm_shrinker->batch = TTM_SHRINKER_BATCH;
> - mm_shrinker->seeks = 1;
> -
> - shrinker_register(mm_shrinker);
> -
> return 0;
> }
>
next prev parent reply other threads:[~2026-07-22 15:33 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-06 5:22 drm/ttm/memcg/lru: enable memcg tracking for ttm, xe and amdgpu driver (part 2) (v2) Dave Airlie
2026-07-06 5:22 ` [PATCH 01/10] memcg: add support for GPU page counters. (v5) Dave Airlie
2026-07-22 14:38 ` Thomas Hellström
2026-07-06 5:22 ` [PATCH 02/10] ttm: add a memcg accounting flag to the alloc/populate APIs Dave Airlie
2026-07-06 16:24 ` Matthew Brost
2026-07-22 15:08 ` Thomas Hellström
2026-07-06 5:22 ` [PATCH 03/10] ttm/pool: initialise the shrinker earlier (v2) Dave Airlie
2026-07-22 15:33 ` Thomas Hellström [this message]
2026-07-06 5:22 ` [PATCH 04/10] ttm: add objcg pointer to bo and tt (v3) Dave Airlie
2026-07-06 5:22 ` [PATCH 05/10] ttm/pool: enable memcg tracking and shrinker. (v3) Dave Airlie
2026-07-06 5:22 ` [PATCH 06/10] ttm: hook up memcg placement flags Dave Airlie
2026-07-06 5:22 ` [PATCH 07/10] memcontrol: allow objcg api when memcg is config off Dave Airlie
2026-07-06 5:22 ` [PATCH 08/10] amdgpu: add support for memory cgroups Dave Airlie
2026-07-06 5:22 ` [PATCH 09/10] ttm: add support for a module option to disable memcg integration Dave Airlie
2026-07-06 5:22 ` [PATCH 10/10] xe: create a flag to enable memcg accounting for XE as well Dave Airlie
2026-07-06 7:55 ` drm/ttm/memcg/lru: enable memcg tracking for ttm, xe and amdgpu driver (part 2) (v2) Dave Airlie
2026-07-06 14:28 ` Thomas Hellström
2026-07-22 14:34 ` Thomas Hellström
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=18f2008f7d127171f271e3462d283c6743c87c87.camel@linux.intel.com \
--to=thomas.hellstrom@linux.intel.com \
--cc=airlied@gmail.com \
--cc=cgroups@vger.kernel.org \
--cc=christian.koenig@amd.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=hannes@cmpxchg.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=longman@redhat.com \
--cc=mhocko@kernel.org \
--cc=muchun.song@linux.dev \
--cc=roman.gushchin@linux.dev \
--cc=shakeel.butt@linux.dev \
--cc=simona@ffwll.ch \
--cc=tj@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox