All of lore.kernel.org
 help / color / mirror / Atom feed
* [merged] remove-cpuset_update_active_cpuss-parameter.patch removed from -mm tree
@ 2017-04-11 19:19 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2017-04-11 19:19 UTC (permalink / raw)
  To: rakib.mullick, lizefan, mingo, peterz, tj, mm-commits


The patch titled
     Subject:  cpusets: remove cpuset_update_active_cpus()'s parameter
has been removed from the -mm tree.  Its filename was
     remove-cpuset_update_active_cpuss-parameter.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
From: Rakib Mullick <rakib.mullick@gmail.com>
Subject:  cpusets: remove cpuset_update_active_cpus()'s parameter

In cpuset_update_active_cpus(), cpu_online isn't used anymore.  Remove it.

Link: http://lkml.kernel.org/r/20170409013614.7138-1-rakib.mullick@gmail.com
Signed-off-by: Rakib Mullick <rakib.mullick@gmail.com>
Acked-by: Zefan Li <lizefan@huawei.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Tejun Heo <tj@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 include/linux/cpuset.h |    4 ++--
 kernel/cgroup/cpuset.c |    2 +-
 kernel/sched/core.c    |    4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff -puN include/linux/cpuset.h~remove-cpuset_update_active_cpuss-parameter include/linux/cpuset.h
--- a/include/linux/cpuset.h~remove-cpuset_update_active_cpuss-parameter
+++ a/include/linux/cpuset.h
@@ -42,7 +42,7 @@ static inline void cpuset_dec(void)
 
 extern int cpuset_init(void);
 extern void cpuset_init_smp(void);
-extern void cpuset_update_active_cpus(bool cpu_online);
+extern void cpuset_update_active_cpus(void);
 extern void cpuset_cpus_allowed(struct task_struct *p, struct cpumask *mask);
 extern void cpuset_cpus_allowed_fallback(struct task_struct *p);
 extern nodemask_t cpuset_mems_allowed(struct task_struct *p);
@@ -155,7 +155,7 @@ static inline bool cpusets_enabled(void)
 static inline int cpuset_init(void) { return 0; }
 static inline void cpuset_init_smp(void) {}
 
-static inline void cpuset_update_active_cpus(bool cpu_online)
+static inline void cpuset_update_active_cpus(void)
 {
 	partition_sched_domains(1, NULL, NULL);
 }
diff -puN kernel/cgroup/cpuset.c~remove-cpuset_update_active_cpuss-parameter kernel/cgroup/cpuset.c
--- a/kernel/cgroup/cpuset.c~remove-cpuset_update_active_cpuss-parameter
+++ a/kernel/cgroup/cpuset.c
@@ -2354,7 +2354,7 @@ static void cpuset_hotplug_workfn(struct
 		rebuild_sched_domains();
 }
 
-void cpuset_update_active_cpus(bool cpu_online)
+void cpuset_update_active_cpus(void)
 {
 	/*
 	 * We're inside cpu hotplug critical region which usually nests
diff -puN kernel/sched/core.c~remove-cpuset_update_active_cpuss-parameter kernel/sched/core.c
--- a/kernel/sched/core.c~remove-cpuset_update_active_cpuss-parameter
+++ a/kernel/sched/core.c
@@ -5732,7 +5732,7 @@ static void cpuset_cpu_active(void)
 		 * cpuset configurations.
 		 */
 	}
-	cpuset_update_active_cpus(true);
+	cpuset_update_active_cpus();
 }
 
 static int cpuset_cpu_inactive(unsigned int cpu)
@@ -5755,7 +5755,7 @@ static int cpuset_cpu_inactive(unsigned
 
 		if (overflow)
 			return -EBUSY;
-		cpuset_update_active_cpus(false);
+		cpuset_update_active_cpus();
 	} else {
 		num_cpus_frozen++;
 		partition_sched_domains(1, NULL, NULL);
_

Patches currently in -mm which might be from rakib.mullick@gmail.com are



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-04-11 19:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-11 19:19 [merged] remove-cpuset_update_active_cpuss-parameter.patch removed from -mm tree akpm

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.