From: sashiko-bot@kernel.org
To: "Dave Airlie" <airlied@gmail.com>
Cc: tj@kernel.org, mkoutny@suse.com, dri-devel@lists.freedesktop.org,
hannes@cmpxchg.org
Subject: Re: [PATCH 07/10] memcontrol: allow objcg api when memcg is config off.
Date: Mon, 06 Jul 2026 02:55:56 +0000 [thread overview]
Message-ID: <20260706025557.83E6D1F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260706024122.853329-8-airlied@gmail.com>
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Low] Missing `!CONFIG_MEMCG` stubs for GPU memcg accounting functions (`mem_cgroup_charge_gpu_page`, etc.) causes a linker error.
--
commit ba45048ba307805ed185b05a25fe4419acb46277
Author: Dave Airlie <airlied@redhat.com>
memcontrol: allow objcg api when memcg is config off.
This commit adds a dummy function for get_obj_cgroup_from_current() when
CONFIG_MEMCG is disabled. This allows drivers like amdgpu to use the objcg
API without needing ifdef blocks around it.
> diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h
> index 3a968c6be0c84..a8f74aa930c57 100644
> --- a/include/linux/memcontrol.h
> +++ b/include/linux/memcontrol.h
> @@ -1804,6 +1804,11 @@ static inline void __memcg_kmem_uncharge_page(struct page *page, int order)
> {
> }
>
> +static inline struct obj_cgroup *get_obj_cgroup_from_current(void)
> +{
> + return NULL;
> +}
> +
[Severity: Low]
Are there other objcg API functions that also need dummy stubs to prevent
linker errors when CONFIG_MEMCG is disabled?
For example, mem_cgroup_charge_gpu_page() is declared unconditionally in
include/linux/memcontrol.h:
bool mem_cgroup_charge_gpu_page(struct obj_cgroup *objcg, struct page *page,
unsigned int order,
gfp_t gfp_mask, bool reclaim);
This function is used directly without an ifdef block in the TTM driver:
drivers/gpu/drm/ttm/ttm_pool.c:ttm_pool_alloc_page() {
...
if (!mem_cgroup_charge_gpu_page(objcg, p, order, gfp_flags, false)) {
...
}
Does building a kernel with CONFIG_MEMCG=n and CONFIG_DRM_TTM=y result in
undefined reference linker errors for mem_cgroup_charge_gpu_page() and
other related GPU memcg accounting functions?
> static inline struct obj_cgroup *get_obj_cgroup_from_folio(struct folio *folio)
> {
> return NULL;
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260706024122.853329-1-airlied@gmail.com?part=7
next prev parent reply other threads:[~2026-07-06 2:56 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-06 2:36 drm/ttm/memcg/lru: enable memcg tracking for ttm, xe and amdgpu driver (part 2) Dave Airlie
2026-07-06 2:36 ` [PATCH 01/10] memcg: add support for GPU page counters. (v4) Dave Airlie
2026-07-06 3:01 ` sashiko-bot
2026-07-06 2:36 ` [PATCH 02/10] ttm: add a memcg accounting flag to the alloc/populate APIs Dave Airlie
2026-07-06 2:58 ` sashiko-bot
2026-07-06 2:36 ` [PATCH 03/10] ttm/pool: initialise the shrinker earlier Dave Airlie
2026-07-06 2:56 ` sashiko-bot
2026-07-06 2:36 ` [PATCH 04/10] ttm: add objcg pointer to bo and tt (v2) Dave Airlie
2026-07-06 2:53 ` sashiko-bot
2026-07-06 2:36 ` [PATCH 05/10] ttm/pool: enable memcg tracking and shrinker. (v3) Dave Airlie
2026-07-06 2:59 ` sashiko-bot
2026-07-06 2:36 ` [PATCH 06/10] ttm: hook up memcg placement flags Dave Airlie
2026-07-06 3:01 ` sashiko-bot
2026-07-06 2:36 ` [PATCH 07/10] memcontrol: allow objcg api when memcg is config off Dave Airlie
2026-07-06 2:55 ` sashiko-bot [this message]
2026-07-06 2:36 ` [PATCH 08/10] amdgpu: add support for memory cgroups Dave Airlie
2026-07-06 3:14 ` sashiko-bot
2026-07-06 2:36 ` [PATCH 09/10] ttm: add support for a module option to disable memcg integration Dave Airlie
2026-07-06 3:10 ` sashiko-bot
2026-07-06 2:36 ` [PATCH 10/10] xe: create a flag to enable memcg accounting for XE as well Dave Airlie
2026-07-06 3:18 ` sashiko-bot
2026-07-06 7:59 ` drm/ttm/memcg/lru: enable memcg tracking for ttm, xe and amdgpu driver (part 2) Christian König
-- strict thread matches above, loose matches on Subject: below --
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 07/10] memcontrol: allow objcg api when memcg is config off Dave Airlie
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=20260706025557.83E6D1F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=airlied@gmail.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=hannes@cmpxchg.org \
--cc=mkoutny@suse.com \
--cc=sashiko-reviews@lists.linux.dev \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.