* [PATCH] mm: memcg-v1: fix wrong linux-mm list address in deprecation warnings
@ 2026-07-13 8:57 Guopeng Zhang
2026-07-13 10:06 ` Michal Hocko
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Guopeng Zhang @ 2026-07-13 8:57 UTC (permalink / raw)
To: Andrew Morton, Johannes Weiner
Cc: Michal Hocko, Roman Gushchin, Shakeel Butt, Muchun Song, cgroups,
linux-mm, linux-kernel, Guopeng Zhang
From: Guopeng Zhang <zhangguopeng@kylinos.cn>
The deprecation warnings for memory.oom_control and
memory.pressure_level use linux-mm-@kvack.org instead of the linux-mm
mailing list address. Remove the extra hyphen.
Signed-off-by: Guopeng Zhang <zhangguopeng@kylinos.cn>
---
mm/memcontrol-v1.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/mm/memcontrol-v1.c b/mm/memcontrol-v1.c
index e8b6e1560278..178e1466d898 100644
--- a/mm/memcontrol-v1.c
+++ b/mm/memcontrol-v1.c
@@ -1182,13 +1182,13 @@ static ssize_t memcg_write_event_control(struct kernfs_open_file *of,
event->unregister_event = mem_cgroup_usage_unregister_event;
} else if (!strcmp(name, "memory.oom_control")) {
pr_warn_once("oom_control is deprecated and will be removed. "
- "Please report your usecase to linux-mm-@kvack.org"
+ "Please report your usecase to linux-mm@kvack.org"
" if you depend on this functionality.\n");
event->register_event = mem_cgroup_oom_register_event;
event->unregister_event = mem_cgroup_oom_unregister_event;
} else if (!strcmp(name, "memory.pressure_level")) {
pr_warn_once("pressure_level is deprecated and will be removed. "
- "Please report your usecase to linux-mm-@kvack.org "
+ "Please report your usecase to linux-mm@kvack.org "
"if you depend on this functionality.\n");
event->register_event = vmpressure_register_event;
event->unregister_event = vmpressure_unregister_event;
@@ -2340,7 +2340,7 @@ static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
struct mem_cgroup *memcg = mem_cgroup_from_css(css);
pr_warn_once("oom_control is deprecated and will be removed. "
- "Please report your usecase to linux-mm-@kvack.org if you "
+ "Please report your usecase to linux-mm@kvack.org if you "
"depend on this functionality.\n");
/* cannot set to root cgroup and only 0 and 1 are allowed */
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] mm: memcg-v1: fix wrong linux-mm list address in deprecation warnings
2026-07-13 8:57 [PATCH] mm: memcg-v1: fix wrong linux-mm list address in deprecation warnings Guopeng Zhang
@ 2026-07-13 10:06 ` Michal Hocko
2026-07-13 11:40 ` Johannes Weiner
2026-07-13 12:30 ` Muchun Song
2 siblings, 0 replies; 4+ messages in thread
From: Michal Hocko @ 2026-07-13 10:06 UTC (permalink / raw)
To: Guopeng Zhang
Cc: Andrew Morton, Johannes Weiner, Roman Gushchin, Shakeel Butt,
Muchun Song, cgroups, linux-mm, linux-kernel, Guopeng Zhang
On Mon 13-07-26 16:57:56, Guopeng Zhang wrote:
> From: Guopeng Zhang <zhangguopeng@kylinos.cn>
>
> The deprecation warnings for memory.oom_control and
> memory.pressure_level use linux-mm-@kvack.org instead of the linux-mm
> mailing list address. Remove the extra hyphen.
>
> Signed-off-by: Guopeng Zhang <zhangguopeng@kylinos.cn>
Acked-by: Michal Hocko <mhocko@suse.com>
Thanks
Altohough this is not a critical fix we would like to have that address
correct also in older stable trees so I would recommend backporting to
stable as well.
> ---
> mm/memcontrol-v1.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/mm/memcontrol-v1.c b/mm/memcontrol-v1.c
> index e8b6e1560278..178e1466d898 100644
> --- a/mm/memcontrol-v1.c
> +++ b/mm/memcontrol-v1.c
> @@ -1182,13 +1182,13 @@ static ssize_t memcg_write_event_control(struct kernfs_open_file *of,
> event->unregister_event = mem_cgroup_usage_unregister_event;
> } else if (!strcmp(name, "memory.oom_control")) {
> pr_warn_once("oom_control is deprecated and will be removed. "
> - "Please report your usecase to linux-mm-@kvack.org"
> + "Please report your usecase to linux-mm@kvack.org"
> " if you depend on this functionality.\n");
> event->register_event = mem_cgroup_oom_register_event;
> event->unregister_event = mem_cgroup_oom_unregister_event;
> } else if (!strcmp(name, "memory.pressure_level")) {
> pr_warn_once("pressure_level is deprecated and will be removed. "
> - "Please report your usecase to linux-mm-@kvack.org "
> + "Please report your usecase to linux-mm@kvack.org "
> "if you depend on this functionality.\n");
> event->register_event = vmpressure_register_event;
> event->unregister_event = vmpressure_unregister_event;
> @@ -2340,7 +2340,7 @@ static int mem_cgroup_oom_control_write(struct cgroup_subsys_state *css,
> struct mem_cgroup *memcg = mem_cgroup_from_css(css);
>
> pr_warn_once("oom_control is deprecated and will be removed. "
> - "Please report your usecase to linux-mm-@kvack.org if you "
> + "Please report your usecase to linux-mm@kvack.org if you "
> "depend on this functionality.\n");
>
> /* cannot set to root cgroup and only 0 and 1 are allowed */
> --
> 2.43.0
>
--
Michal Hocko
SUSE Labs
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] mm: memcg-v1: fix wrong linux-mm list address in deprecation warnings
2026-07-13 8:57 [PATCH] mm: memcg-v1: fix wrong linux-mm list address in deprecation warnings Guopeng Zhang
2026-07-13 10:06 ` Michal Hocko
@ 2026-07-13 11:40 ` Johannes Weiner
2026-07-13 12:30 ` Muchun Song
2 siblings, 0 replies; 4+ messages in thread
From: Johannes Weiner @ 2026-07-13 11:40 UTC (permalink / raw)
To: Guopeng Zhang
Cc: Andrew Morton, Michal Hocko, Roman Gushchin, Shakeel Butt,
Muchun Song, cgroups, linux-mm, linux-kernel, Guopeng Zhang
On Mon, Jul 13, 2026 at 04:57:56PM +0800, Guopeng Zhang wrote:
> From: Guopeng Zhang <zhangguopeng@kylinos.cn>
>
> The deprecation warnings for memory.oom_control and
> memory.pressure_level use linux-mm-@kvack.org instead of the linux-mm
> mailing list address. Remove the extra hyphen.
>
> Signed-off-by: Guopeng Zhang <zhangguopeng@kylinos.cn>
Acked-by: Johannes Weiner <hannes@cmpxchg.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] mm: memcg-v1: fix wrong linux-mm list address in deprecation warnings
2026-07-13 8:57 [PATCH] mm: memcg-v1: fix wrong linux-mm list address in deprecation warnings Guopeng Zhang
2026-07-13 10:06 ` Michal Hocko
2026-07-13 11:40 ` Johannes Weiner
@ 2026-07-13 12:30 ` Muchun Song
2 siblings, 0 replies; 4+ messages in thread
From: Muchun Song @ 2026-07-13 12:30 UTC (permalink / raw)
To: Guopeng Zhang
Cc: Andrew Morton, Johannes Weiner, Michal Hocko, Roman Gushchin,
Shakeel Butt, cgroups, linux-mm, linux-kernel, Guopeng Zhang
> On Jul 13, 2026, at 16:57, Guopeng Zhang <guopeng.zhang@linux.dev> wrote:
>
> From: Guopeng Zhang <zhangguopeng@kylinos.cn>
>
> The deprecation warnings for memory.oom_control and
> memory.pressure_level use linux-mm-@kvack.org instead of the linux-mm
> mailing list address. Remove the extra hyphen.
>
> Signed-off-by: Guopeng Zhang <zhangguopeng@kylinos.cn>
Reviewed-by: Muchun Song <muchun.song@linux.dev>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-07-13 12:31 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-13 8:57 [PATCH] mm: memcg-v1: fix wrong linux-mm list address in deprecation warnings Guopeng Zhang
2026-07-13 10:06 ` Michal Hocko
2026-07-13 11:40 ` Johannes Weiner
2026-07-13 12:30 ` Muchun Song
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox