aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sched.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r--include/linux/sched.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 3cddbfc0c91d..04233c8974d9 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -87,6 +87,7 @@ struct sched_param {
87#include <linux/timer.h> 87#include <linux/timer.h>
88#include <linux/hrtimer.h> 88#include <linux/hrtimer.h>
89#include <linux/task_io_accounting.h> 89#include <linux/task_io_accounting.h>
90#include <linux/kobject.h>
90 91
91#include <asm/processor.h> 92#include <asm/processor.h>
92 93
@@ -599,9 +600,18 @@ struct user_struct {
599 600
600#ifdef CONFIG_FAIR_USER_SCHED 601#ifdef CONFIG_FAIR_USER_SCHED
601 struct task_group *tg; 602 struct task_group *tg;
603 struct kset kset;
604 struct subsys_attribute user_attr;
605 struct work_struct work;
602#endif 606#endif
603}; 607};
604 608
609#ifdef CONFIG_FAIR_USER_SCHED
610extern int uids_kobject_init(void);
611#else
612static inline int uids_kobject_init(void) { return 0; }
613#endif
614
605extern struct user_struct *find_user(uid_t); 615extern struct user_struct *find_user(uid_t);
606 616
607extern struct user_struct root_user; 617extern struct user_struct root_user;
@@ -1848,6 +1858,7 @@ extern struct task_group *sched_create_group(void);
1848extern void sched_destroy_group(struct task_group *tg); 1858extern void sched_destroy_group(struct task_group *tg);
1849extern void sched_move_task(struct task_struct *tsk); 1859extern void sched_move_task(struct task_struct *tsk);
1850extern int sched_group_set_shares(struct task_group *tg, unsigned long shares); 1860extern int sched_group_set_shares(struct task_group *tg, unsigned long shares);
1861extern unsigned long sched_group_shares(struct task_group *tg);
1851 1862
1852#endif 1863#endif
1853 1864