[PATCH RFC v2 22/22] cpuset: remove prs_err clear when notify_partition_change

From: Chen Ridong
Date: Sat Oct 25 2025 - 03:07:53 EST


From: Chen Ridong <chenridong@xxxxxxxxxx>

The prs_err should be properly set when partition state is set, it
does't have to reset in the notify_partition_change, just remove it.

Signed-off-by: Chen Ridong <chenridong@xxxxxxxxxx>
---
kernel/cgroup/cpuset.c | 4 ----
1 file changed, 4 deletions(-)

diff --git a/kernel/cgroup/cpuset.c b/kernel/cgroup/cpuset.c
index 42c7ee77d01b..ced87929b96b 100644
--- a/kernel/cgroup/cpuset.c
+++ b/kernel/cgroup/cpuset.c
@@ -178,10 +178,6 @@ static inline void notify_partition_change(struct cpuset *cs, int old_prs)
if (old_prs == cs->partition_root_state)
return;
cgroup_file_notify(&cs->partition_file);
-
- /* Reset prs_err if not invalid */
- if (is_partition_valid(cs))
- WRITE_ONCE(cs->prs_err, PERR_NONE);
}

/*
--
2.34.1