* [PATCH v2] mm/mempolicy: fix mpol_rebind_nodemask() for MPOL_F_NUMA_BALANCING
@ 2025-12-22 3:04 Jinjiang Tu
2025-12-22 9:51 ` Huang, Ying
0 siblings, 1 reply; 4+ messages in thread
From: Jinjiang Tu @ 2025-12-22 3:04 UTC (permalink / raw)
To: akpm, david, ziy, matthew.brost, joshua.hahnjy, rakie.kim,
byungchul, gourry, ying.huang, apopple, mgorman, linux-mm
Cc: wangkefeng.wang, tujinjiang
commit bda420b98505 ("numa balancing: migrate on fault among multiple
bound nodes") adds new flag MPOL_F_NUMA_BALANCING to enable NUMA balancing
for MPOL_BIND memory policy.
when the cpuset of tasks changes, the mempolicy of the task is rebound
by mpol_rebind_nodemask(). The intended rebinding behavior of
MPOL_F_NUMA_BALANCING was the same as when neither MPOL_F_STATIC_NODES nor
MPOL_F_RELATIVE_NODES flags are set. However, this commit breaks it.
struct mempolicy has a union member as bellow:
union {
nodemask_t cpuset_mems_allowed; /* relative to these nodes */
nodemask_t user_nodemask; /* nodemask passed by user */
} w;
w.cpuset_mems_allowed and w.user_nodemask are both nodemask type and their
difference is only what type of nodemask is stored. mpol_set_nodemask()
initializes the union like below:
static int mpol_set_nodemask(...)
{
if (mpol_store_user_nodemask(pol))
pol->w.user_nodemask = *nodes;
else
pol->w.cpuset_mems_allowed = cpuset_current_mems_allowed;
}
mpol_store_user_nodemask() returns true for MPOL_F_NUMA_BALANCING
incorrectly and the union stores user-passed nodemask. Consequently,
mpol_rebind_nodemask() ends up rebinding based on the user-passed nodemask
rather than the cpuset_mems_allowed nodemask as intended.
To fix this, only store the user nodemask if MPOL_F_STATIC_NODES or
MPOL_F_RELATIVE_NODES is present.
Fixes: bda420b98505 ("numa balancing: migrate on fault among multiple bound nodes")
Reviewed-by: Gregory Price <gourry@gourry.net>
Signed-off-by: Jinjiang Tu <tujinjiang@huawei.com>
---
Change since v1:
* update changelog and comments.
* collect RB from Gregory.
include/uapi/linux/mempolicy.h | 3 +++
mm/mempolicy.c | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/include/uapi/linux/mempolicy.h b/include/uapi/linux/mempolicy.h
index 8fbbe613611a..6c962d866e86 100644
--- a/include/uapi/linux/mempolicy.h
+++ b/include/uapi/linux/mempolicy.h
@@ -39,6 +39,9 @@ enum {
#define MPOL_MODE_FLAGS \
(MPOL_F_STATIC_NODES | MPOL_F_RELATIVE_NODES | MPOL_F_NUMA_BALANCING)
+/* Whether the nodemask is specified by users */
+#define MPOL_USER_NODEMASK_FLAGS (MPOL_F_STATIC_NODES | MPOL_F_RELATIVE_NODES)
+
/* Flags for get_mempolicy */
#define MPOL_F_NODE (1<<0) /* return next IL mode instead of node mask */
#define MPOL_F_ADDR (1<<1) /* look up vma using address */
diff --git a/mm/mempolicy.c b/mm/mempolicy.c
index 68a98ba57882..76da50425712 100644
--- a/mm/mempolicy.c
+++ b/mm/mempolicy.c
@@ -365,7 +365,7 @@ static const struct mempolicy_operations {
static inline int mpol_store_user_nodemask(const struct mempolicy *pol)
{
- return pol->flags & MPOL_MODE_FLAGS;
+ return pol->flags & MPOL_USER_NODEMASK_FLAGS;
}
static void mpol_relative_nodemask(nodemask_t *ret, const nodemask_t *orig,
--
2.43.0
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH v2] mm/mempolicy: fix mpol_rebind_nodemask() for MPOL_F_NUMA_BALANCING 2025-12-22 3:04 [PATCH v2] mm/mempolicy: fix mpol_rebind_nodemask() for MPOL_F_NUMA_BALANCING Jinjiang Tu @ 2025-12-22 9:51 ` Huang, Ying 2025-12-22 14:25 ` Jinjiang Tu 0 siblings, 1 reply; 4+ messages in thread From: Huang, Ying @ 2025-12-22 9:51 UTC (permalink / raw) To: Jinjiang Tu Cc: akpm, david, ziy, matthew.brost, joshua.hahnjy, rakie.kim, byungchul, gourry, apopple, mgorman, linux-mm, wangkefeng.wang Hi, Jinjiang, Sorry, I found the patch description is still confusing for me. Jinjiang Tu <tujinjiang@huawei.com> writes: > commit bda420b98505 ("numa balancing: migrate on fault among multiple > bound nodes") adds new flag MPOL_F_NUMA_BALANCING to enable NUMA balancing > for MPOL_BIND memory policy. Is the following description better? At least, I think we should emphasize that MPOL_F_NUMA_BALANCING is set while both MPOL_F_STATIC_NODES and MPOL_F_RELATIVE_NODES are cleared in the mode parameter. When an application calls set_mempolicy() with MPOL_F_NUMA_BALANCING set but both MPOL_F_STATIC_NODES and MPOL_F_RELATIVE_NODES cleared, mempolicy.w.cpuset_mems_allowed should be set to cpuset_current_mems_allowed nodemask. However, due to a bug in its current implementation, mpol_store_user_nodemask() wrongly returns true, causing mempolicy->w.user_nodemask to be incorrectly set to the user-specified nodemask (or an empty nodemask). Later, when the cpuset of the application changes, mpol_rebind_nodemask() ends up rebinding based on the user-specified nodemask rather than the cpuset_mems_allowed nodemask as intended. > when the cpuset of tasks changes, the mempolicy of the task is rebound > by mpol_rebind_nodemask(). The intended rebinding behavior of > MPOL_F_NUMA_BALANCING was the same as when neither MPOL_F_STATIC_NODES nor > MPOL_F_RELATIVE_NODES flags are set. However, this commit breaks it. > > struct mempolicy has a union member as bellow: > > union { > nodemask_t cpuset_mems_allowed; /* relative to these nodes */ > nodemask_t user_nodemask; /* nodemask passed by user */ > } w; > > w.cpuset_mems_allowed and w.user_nodemask are both nodemask type and their > difference is only what type of nodemask is stored. mpol_set_nodemask() > initializes the union like below: > > static int mpol_set_nodemask(...) > { > if (mpol_store_user_nodemask(pol)) > pol->w.user_nodemask = *nodes; > else > pol->w.cpuset_mems_allowed = cpuset_current_mems_allowed; > } > > mpol_store_user_nodemask() returns true for MPOL_F_NUMA_BALANCING > incorrectly and the union stores user-passed nodemask. Consequently, > mpol_rebind_nodemask() ends up rebinding based on the user-passed nodemask > rather than the cpuset_mems_allowed nodemask as intended. > > To fix this, only store the user nodemask if MPOL_F_STATIC_NODES or > MPOL_F_RELATIVE_NODES is present. > > Fixes: bda420b98505 ("numa balancing: migrate on fault among multiple bound nodes") > Reviewed-by: Gregory Price <gourry@gourry.net> > Signed-off-by: Jinjiang Tu <tujinjiang@huawei.com> [snip] --- Best Regards, Huang, Ying ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] mm/mempolicy: fix mpol_rebind_nodemask() for MPOL_F_NUMA_BALANCING 2025-12-22 9:51 ` Huang, Ying @ 2025-12-22 14:25 ` Jinjiang Tu 2025-12-23 0:50 ` Huang, Ying 0 siblings, 1 reply; 4+ messages in thread From: Jinjiang Tu @ 2025-12-22 14:25 UTC (permalink / raw) To: Huang, Ying Cc: akpm, david, ziy, matthew.brost, joshua.hahnjy, rakie.kim, byungchul, gourry, apopple, mgorman, linux-mm, wangkefeng.wang 在 2025/12/22 17:51, Huang, Ying 写道: > Hi, Jinjiang, > > Sorry, I found the patch description is still confusing for me. > > Jinjiang Tu <tujinjiang@huawei.com> writes: > >> commit bda420b98505 ("numa balancing: migrate on fault among multiple >> bound nodes") adds new flag MPOL_F_NUMA_BALANCING to enable NUMA balancing >> for MPOL_BIND memory policy. > Is the following description better? At least, I think we should > emphasize that MPOL_F_NUMA_BALANCING is set while both > MPOL_F_STATIC_NODES and MPOL_F_RELATIVE_NODES are cleared in the mode > parameter. Thanks, I will update it to make it clearer. How about the following description? commit bda420b98505 ("numa balancing: migrate on fault among multiple bound nodes") adds new flag MPOL_F_NUMA_BALANCING to enable NUMA balancing for MPOL_BIND memory policy. When the cpuset of tasks changes, the mempolicy of the task is rebound by mpol_rebind_nodemask(). When MPOL_F_STATIC_NODES and MPOL_F_RELATIVE_NODES are both not set, the behaviour is same whenever MPOL_F_NUMA_BALANCING is set or not. So, when an application calls set_mempolicy() with MPOL_F_NUMA_BALANCING set but both MPOL_F_STATIC_NODES and MPOL_F_RELATIVE_NODES cleared, mempolicy.w.cpuset_mems_allowed should be set to cpuset_current_mems_allowed nodemask. However, in current implementation, mpol_store_user_nodemask() wrongly returns true, causing mempolicy->w.user_nodemask to be incorrectly set to the user-specified nodemask. Later, when the cpuset of the application changes, mpol_rebind_nodemask() ends up rebinding based on the user-specified nodemask rather than the cpuset_mems_allowed nodemask as intended. To fix this, only set mempolicy->w.user_nodemask to the user-specified nodemask if MPOL_F_STATIC_NODES or MPOL_F_RELATIVE_NODES is present. > > When an application calls set_mempolicy() with MPOL_F_NUMA_BALANCING set > but both MPOL_F_STATIC_NODES and MPOL_F_RELATIVE_NODES cleared, > mempolicy.w.cpuset_mems_allowed should be set to > cpuset_current_mems_allowed nodemask. However, due to a bug in its > current implementation, mpol_store_user_nodemask() wrongly returns true, > causing mempolicy->w.user_nodemask to be incorrectly set to the > user-specified nodemask (or an empty nodemask). Later, when the cpuset > of the application changes, mpol_rebind_nodemask() ends up rebinding > based on the user-specified nodemask rather than the cpuset_mems_allowed > nodemask as intended. > >> when the cpuset of tasks changes, the mempolicy of the task is rebound >> by mpol_rebind_nodemask(). The intended rebinding behavior of >> MPOL_F_NUMA_BALANCING was the same as when neither MPOL_F_STATIC_NODES nor >> MPOL_F_RELATIVE_NODES flags are set. However, this commit breaks it. >> >> struct mempolicy has a union member as bellow: >> >> union { >> nodemask_t cpuset_mems_allowed; /* relative to these nodes */ >> nodemask_t user_nodemask; /* nodemask passed by user */ >> } w; >> >> w.cpuset_mems_allowed and w.user_nodemask are both nodemask type and their >> difference is only what type of nodemask is stored. mpol_set_nodemask() >> initializes the union like below: >> >> static int mpol_set_nodemask(...) >> { >> if (mpol_store_user_nodemask(pol)) >> pol->w.user_nodemask = *nodes; >> else >> pol->w.cpuset_mems_allowed = cpuset_current_mems_allowed; >> } >> >> mpol_store_user_nodemask() returns true for MPOL_F_NUMA_BALANCING >> incorrectly and the union stores user-passed nodemask. Consequently, >> mpol_rebind_nodemask() ends up rebinding based on the user-passed nodemask >> rather than the cpuset_mems_allowed nodemask as intended. >> >> To fix this, only store the user nodemask if MPOL_F_STATIC_NODES or >> MPOL_F_RELATIVE_NODES is present. >> >> Fixes: bda420b98505 ("numa balancing: migrate on fault among multiple bound nodes") >> Reviewed-by: Gregory Price <gourry@gourry.net> >> Signed-off-by: Jinjiang Tu <tujinjiang@huawei.com> > [snip] > > --- > Best Regards, > Huang, Ying ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] mm/mempolicy: fix mpol_rebind_nodemask() for MPOL_F_NUMA_BALANCING 2025-12-22 14:25 ` Jinjiang Tu @ 2025-12-23 0:50 ` Huang, Ying 0 siblings, 0 replies; 4+ messages in thread From: Huang, Ying @ 2025-12-23 0:50 UTC (permalink / raw) To: Jinjiang Tu Cc: akpm, david, ziy, matthew.brost, joshua.hahnjy, rakie.kim, byungchul, gourry, apopple, mgorman, linux-mm, wangkefeng.wang Jinjiang Tu <tujinjiang@huawei.com> writes: > 在 2025/12/22 17:51, Huang, Ying 写道: >> Hi, Jinjiang, >> >> Sorry, I found the patch description is still confusing for me. >> >> Jinjiang Tu <tujinjiang@huawei.com> writes: >> >>> commit bda420b98505 ("numa balancing: migrate on fault among multiple >>> bound nodes") adds new flag MPOL_F_NUMA_BALANCING to enable NUMA balancing >>> for MPOL_BIND memory policy. >> Is the following description better? At least, I think we should >> emphasize that MPOL_F_NUMA_BALANCING is set while both >> MPOL_F_STATIC_NODES and MPOL_F_RELATIVE_NODES are cleared in the mode >> parameter. > > Thanks, I will update it to make it clearer. How about the following > description? > > > commit bda420b98505 ("numa balancing: migrate on fault among multiple > bound nodes") adds new flag MPOL_F_NUMA_BALANCING to enable NUMA balancing > for MPOL_BIND memory policy. > > When the cpuset of tasks changes, the mempolicy of the task is rebound > by mpol_rebind_nodemask(). When MPOL_F_STATIC_NODES and MPOL_F_RELATIVE_NODES > are both not set, the behaviour is same whenever MPOL_F_NUMA_BALANCING s/is/should be/ > is set or not. So, when an application calls set_mempolicy() with MPOL_F_NUMA_BALANCING > set but both MPOL_F_STATIC_NODES and MPOL_F_RELATIVE_NODES cleared, > mempolicy.w.cpuset_mems_allowed should be set to cpuset_current_mems_allowed nodemask. > However, in current implementation, mpol_store_user_nodemask() wrongly returns true, > causing mempolicy->w.user_nodemask to be incorrectly set to the user-specified nodemask. > Later, when the cpuset of the application changes, mpol_rebind_nodemask() ends up rebinding > based on the user-specified nodemask rather than the cpuset_mems_allowed > nodemask as intended. > > To fix this, only set mempolicy->w.user_nodemask to the user-specified nodemask > if MPOL_F_STATIC_NODES or MPOL_F_RELATIVE_NODES is present. This looks good to me. Thanks! Feel free to add my Reviewed-by: Huang Ying <ying.huang@linux.alibaba.com> in the future versions. >> >> When an application calls set_mempolicy() with MPOL_F_NUMA_BALANCING set >> but both MPOL_F_STATIC_NODES and MPOL_F_RELATIVE_NODES cleared, >> mempolicy.w.cpuset_mems_allowed should be set to >> cpuset_current_mems_allowed nodemask. However, due to a bug in its >> current implementation, mpol_store_user_nodemask() wrongly returns true, >> causing mempolicy->w.user_nodemask to be incorrectly set to the >> user-specified nodemask (or an empty nodemask). Later, when the cpuset >> of the application changes, mpol_rebind_nodemask() ends up rebinding >> based on the user-specified nodemask rather than the cpuset_mems_allowed >> nodemask as intended. >> >>> when the cpuset of tasks changes, the mempolicy of the task is rebound >>> by mpol_rebind_nodemask(). The intended rebinding behavior of >>> MPOL_F_NUMA_BALANCING was the same as when neither MPOL_F_STATIC_NODES nor >>> MPOL_F_RELATIVE_NODES flags are set. However, this commit breaks it. >>> >>> struct mempolicy has a union member as bellow: >>> >>> union { >>> nodemask_t cpuset_mems_allowed; /* relative to these nodes */ >>> nodemask_t user_nodemask; /* nodemask passed by user */ >>> } w; >>> >>> w.cpuset_mems_allowed and w.user_nodemask are both nodemask type and their >>> difference is only what type of nodemask is stored. mpol_set_nodemask() >>> initializes the union like below: >>> >>> static int mpol_set_nodemask(...) >>> { >>> if (mpol_store_user_nodemask(pol)) >>> pol->w.user_nodemask = *nodes; >>> else >>> pol->w.cpuset_mems_allowed = cpuset_current_mems_allowed; >>> } >>> >>> mpol_store_user_nodemask() returns true for MPOL_F_NUMA_BALANCING >>> incorrectly and the union stores user-passed nodemask. Consequently, >>> mpol_rebind_nodemask() ends up rebinding based on the user-passed nodemask >>> rather than the cpuset_mems_allowed nodemask as intended. >>> >>> To fix this, only store the user nodemask if MPOL_F_STATIC_NODES or >>> MPOL_F_RELATIVE_NODES is present. >>> >>> Fixes: bda420b98505 ("numa balancing: migrate on fault among multiple bound nodes") >>> Reviewed-by: Gregory Price <gourry@gourry.net> >>> Signed-off-by: Jinjiang Tu <tujinjiang@huawei.com> >> [snip] >> --- Best Regards, Huang, Ying ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-12-23 0:50 UTC | newest] Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2025-12-22 3:04 [PATCH v2] mm/mempolicy: fix mpol_rebind_nodemask() for MPOL_F_NUMA_BALANCING Jinjiang Tu 2025-12-22 9:51 ` Huang, Ying 2025-12-22 14:25 ` Jinjiang Tu 2025-12-23 0:50 ` Huang, Ying
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox