public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [2.6 patch] make sched_feat_{names,open} static
@ 2008-05-05 18:29 Adrian Bunk
  2008-05-05 20:19 ` [rfc] the kernel workflow & trivial "global -> static" patches (was: Re: [2.6 patch] make sched_feat_{names,open} static) Ingo Molnar
  0 siblings, 1 reply; 20+ messages in thread
From: Adrian Bunk @ 2008-05-05 18:29 UTC (permalink / raw)
  To: Peter Zijlstra, Ingo Molnar; +Cc: linux-kernel, Andrew Morton

This patch makes the following needlessly global code in kernel/sched.c  
static:
- sched_feat_names[]
- sched_feat_open()

Signed-off-by: Adrian Bunk <bunk@kernel.org>

---

This patch has been sent on:
- 23 Apr 2008

 kernel/sched.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

2a1e54c660bb9c574133bda95468b1ea28239e95 diff --git a/kernel/sched.c b/kernel/sched.c
index 57ba7ea..19df986 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -757,14 +757,14 @@ const_debug unsigned int sysctl_sched_features =
 #define SCHED_FEAT(name, enabled)	\
 	#name ,
 
-__read_mostly char *sched_feat_names[] = {
+static __read_mostly char *sched_feat_names[] = {
 #include "sched_features.h"
 	NULL
 };
 
 #undef SCHED_FEAT
 
-int sched_feat_open(struct inode *inode, struct file *filp)
+static int sched_feat_open(struct inode *inode, struct file *filp)
 {
 	filp->private_data = inode->i_private;
 	return 0;


^ permalink raw reply related	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2008-05-06 11:26 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-05 18:29 [2.6 patch] make sched_feat_{names,open} static Adrian Bunk
2008-05-05 20:19 ` [rfc] the kernel workflow & trivial "global -> static" patches (was: Re: [2.6 patch] make sched_feat_{names,open} static) Ingo Molnar
2008-05-05 20:40   ` Randy.Dunlap
2008-05-05 21:51     ` Arjan van de Ven
2008-05-05 23:19       ` david
2008-05-05 23:40         ` Arjan van de Ven
2008-05-05 23:45       ` Theodore Tso
2008-05-06  3:23         ` Arjan van de Ven
2008-05-06  5:48       ` Arjan van de Ven
2008-05-05 20:42   ` Andrew Morton
2008-05-05 21:07     ` Adrian Bunk
2008-05-05 21:26       ` Andrew Morton
2008-05-05 21:45         ` Adrian Bunk
2008-05-05 21:46         ` Arjan van de Ven
2008-05-06  7:46           ` Andy Whitcroft
2008-05-05 21:02   ` Adrian Bunk
2008-05-06  0:21   ` [rfc] the kernel workflow & trivial "global -> static" patches Andi Kleen
2008-05-06  6:18     ` Adrian Bunk
2008-05-06 11:13       ` Andi Kleen
2008-05-06 11:25         ` Adrian Bunk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox