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


Groups > linux.kernel > #1622839

[PATCH V2 3/3] sched: cpupri: don't re-initialize struct cpupri

From Viresh Kumar <viresh.kumar@linaro.org>
Newsgroups linux.kernel
Subject [PATCH V2 3/3] sched: cpupri: don't re-initialize struct cpupri
Date 2017-04-13 11:20 +0200
Message-ID <tvJ50-Rx-11@gated-at.bofh.it> (permalink)
References <tvJ50-Rx-9@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


The struct cpupri passed to cpupri_init() is already initialized to
zero. Don't do that again.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
 kernel/sched/cpupri.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/kernel/sched/cpupri.c b/kernel/sched/cpupri.c
index 981fcd7dc394..2511aba36b89 100644
--- a/kernel/sched/cpupri.c
+++ b/kernel/sched/cpupri.c
@@ -209,8 +209,6 @@ int cpupri_init(struct cpupri *cp)
 {
 	int i;
 
-	memset(cp, 0, sizeof(*cp));
-
 	for (i = 0; i < CPUPRI_NR_PRIORITIES; i++) {
 		struct cpupri_vec *vec = &cp->pri_to_cpu[i];
 
-- 
2.12.0.432.g71c3a4f4ba37

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

[PATCH V2 3/3] sched: cpupri: don't re-initialize struct cpupri Viresh Kumar <viresh.kumar@linaro.org> - 2017-04-13 11:20 +0200

csiph-web