Commit 983ed7a6 authored by Harvey Harrison's avatar Harvey Harrison Committed by Ingo Molnar

sched: add statics, don't return void expressions

Noticed by sparse:
kernel/sched.c:760:20: warning: symbol 'sched_feat_names' was not declared. Should it be static?
kernel/sched.c:767:5: warning: symbol 'sched_feat_open' was not declared. Should it be static?
kernel/sched_fair.c:845:3: warning: returning void-valued expression
kernel/sched.c:4386:3: warning: returning void-valued expression
Signed-off-by: default avatarHarvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent d478c2cf
...@@ -757,14 +757,14 @@ const_debug unsigned int sysctl_sched_features = ...@@ -757,14 +757,14 @@ const_debug unsigned int sysctl_sched_features =
#define SCHED_FEAT(name, enabled) \ #define SCHED_FEAT(name, enabled) \
#name , #name ,
__read_mostly char *sched_feat_names[] = { static __read_mostly char *sched_feat_names[] = {
#include "sched_features.h" #include "sched_features.h"
NULL NULL
}; };
#undef SCHED_FEAT #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; filp->private_data = inode->i_private;
return 0; return 0;
...@@ -4341,8 +4341,10 @@ void account_system_time(struct task_struct *p, int hardirq_offset, ...@@ -4341,8 +4341,10 @@ void account_system_time(struct task_struct *p, int hardirq_offset,
struct rq *rq = this_rq(); struct rq *rq = this_rq();
cputime64_t tmp; cputime64_t tmp;
if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) if ((p->flags & PF_VCPU) && (irq_count() - hardirq_offset == 0)) {
return account_guest_time(p, cputime); account_guest_time(p, cputime);
return;
}
p->stime = cputime_add(p->stime, cputime); p->stime = cputime_add(p->stime, cputime);
......
...@@ -841,8 +841,10 @@ entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr, int queued) ...@@ -841,8 +841,10 @@ entity_tick(struct cfs_rq *cfs_rq, struct sched_entity *curr, int queued)
* queued ticks are scheduled to match the slice, so don't bother * queued ticks are scheduled to match the slice, so don't bother
* validating it and just reschedule. * validating it and just reschedule.
*/ */
if (queued) if (queued) {
return resched_task(rq_of(cfs_rq)->curr); resched_task(rq_of(cfs_rq)->curr);
return;
}
/* /*
* don't let the period tick interfere with the hrtick preemption * don't let the period tick interfere with the hrtick preemption
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment