* [PATCH] sched: core: Don't mix use of typedef ctl_table and struct ctl_table
@ 2013-06-12 18:55 Joe Perches
2013-06-19 18:41 ` [tip:sched/core] sched: Don' t " tip-bot for Joe Perches
0 siblings, 1 reply; 2+ messages in thread
From: Joe Perches @ 2013-06-12 18:55 UTC (permalink / raw)
To: Ingo Molnar, Peter Zijlstra; +Cc: LKML
Just use struct ctl_table.
Signed-off-by: Joe Perches <joe@perches.com>
---
kernel/sched/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index 58453b8..17315d7 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -5080,7 +5080,7 @@ sd_alloc_ctl_domain_table(struct sched_domain *sd)
return table;
}
-static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
+static struct ctl_table *sd_alloc_ctl_cpu_table(int cpu)
{
struct ctl_table *entry, *table;
struct sched_domain *sd;
^ permalink raw reply [flat|nested] 2+ messages in thread* [tip:sched/core] sched: Don' t mix use of typedef ctl_table and struct ctl_table
2013-06-12 18:55 [PATCH] sched: core: Don't mix use of typedef ctl_table and struct ctl_table Joe Perches
@ 2013-06-19 18:41 ` tip-bot for Joe Perches
0 siblings, 0 replies; 2+ messages in thread
From: tip-bot for Joe Perches @ 2013-06-19 18:41 UTC (permalink / raw)
To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, joe, peterz, tglx
Commit-ID: be7002e6c613d22976f2b8d4bae6121a5fc0433a
Gitweb: http://git.kernel.org/tip/be7002e6c613d22976f2b8d4bae6121a5fc0433a
Author: Joe Perches <joe@perches.com>
AuthorDate: Wed, 12 Jun 2013 11:55:36 -0700
Committer: Ingo Molnar <mingo@kernel.org>
CommitDate: Wed, 19 Jun 2013 12:58:48 +0200
sched: Don't mix use of typedef ctl_table and struct ctl_table
Just use struct ctl_table.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1371063336.2069.22.camel@joe-AO722
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
kernel/sched/core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index 21b1403..ceeaf0f 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -4533,7 +4533,7 @@ sd_alloc_ctl_domain_table(struct sched_domain *sd)
return table;
}
-static ctl_table *sd_alloc_ctl_cpu_table(int cpu)
+static struct ctl_table *sd_alloc_ctl_cpu_table(int cpu)
{
struct ctl_table *entry, *table;
struct sched_domain *sd;
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-06-19 18:41 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-12 18:55 [PATCH] sched: core: Don't mix use of typedef ctl_table and struct ctl_table Joe Perches
2013-06-19 18:41 ` [tip:sched/core] sched: Don' t " tip-bot for Joe Perches
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome