Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1539860
| From | Weiwei Jia <harrynjit@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] remove unused parameter |
| Date | 2016-12-10 18:00 +0100 |
| Message-ID | <sMTa9-4FS-1@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
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
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH] remove unused parameter Weiwei Jia <harrynjit@gmail.com> - 2016-12-10 18:00 +0100
csiph-web