diff options
author | Viresh Kumar <[email protected]> | 2017-04-13 14:45:49 +0530 |
---|---|---|
committer | Ingo Molnar <[email protected]> | 2017-08-10 12:18:13 +0200 |
commit | 42d394d41ab90f4ed9d7a7403ed22e8f7590948a (patch) | |
tree | 016f382a62ea27c3774faa91078fa89daf6e9528 | |
parent | 4d13a06d54c415238325b0fe2c14f1052da4512f (diff) |
sched/deadline: Don't re-initialize 'struct cpudl'
The 'struct cpudl' passed to cpudl_init() is already initialized to zero.
Don't do that again.
Signed-off-by: Viresh Kumar <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Cc: Vincent Guittot <[email protected]>
Cc: [email protected]
Link: http://lkml.kernel.org/r/bd4c229806bc96694b15546207afcc221387d2f5.1492065513.git.viresh.kumar@linaro.org
Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r-- | kernel/sched/cpudeadline.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/sched/cpudeadline.c b/kernel/sched/cpudeadline.c index fba235c7d026..bdf448b6556f 100644 --- a/kernel/sched/cpudeadline.c +++ b/kernel/sched/cpudeadline.c @@ -246,7 +246,6 @@ int cpudl_init(struct cpudl *cp) { int i; - memset(cp, 0, sizeof(*cp)); raw_spin_lock_init(&cp->lock); cp->size = 0; |