mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] remove unused parameter
@ 2016-12-10 16:53 Weiwei Jia
  0 siblings, 0 replies; only message in thread
From: Weiwei Jia @ 2016-12-10 16:53 UTC (permalink / raw)
  To: mingo; +Cc: peterz, linux-kernel

Remove unused parameter in wakeup_gran function for Completely
Fair Scheduling (CFS).

Signed-off-by: Weiwei Jia <harrynjit@gmail.com>
---
 kernel/sched/fair.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index c242944..f4375d4 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -5763,7 +5763,7 @@ static void task_dead_fair(struct task_struct *p)
 #endif /* CONFIG_SMP */
 
 static unsigned long
-wakeup_gran(struct sched_entity *curr, struct sched_entity *se)
+wakeup_gran(struct sched_entity *se)
 {
 	unsigned long gran = sysctl_sched_wakeup_granularity;
 
@@ -5805,7 +5805,7 @@ static void task_dead_fair(struct task_struct *p)
 	if (vdiff <= 0)
 		return -1;
 
-	gran = wakeup_gran(curr, se);
+	gran = wakeup_gran(se);
 	if (vdiff > gran)
 		return 1;
 
-- 
1.9.1

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

only message in thread, other threads:[~2016-12-10 16:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-10 16:53 [PATCH] remove unused parameter Weiwei Jia

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®