Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1539860 > unrolled thread

[PATCH] remove unused parameter

Started byWeiwei Jia <harrynjit@gmail.com>
First post2016-12-10 18:00 +0100
Last post2016-12-10 18:00 +0100
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] remove unused parameter Weiwei Jia <harrynjit@gmail.com> - 2016-12-10 18:00 +0100

#1539860 — [PATCH] remove unused parameter

FromWeiwei Jia <harrynjit@gmail.com>
Date2016-12-10 18:00 +0100
Subject[PATCH] remove unused parameter
Message-ID<sMTa9-4FS-1@gated-at.bofh.it>
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

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web