diff options
author | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2010-11-08 15:02:09 -0500 |
---|---|---|
committer | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2010-11-11 17:57:42 -0500 |
commit | 34310fd7dbc3ad98d8e7cafa4f872ba71ca00860 (patch) | |
tree | 31ddcaa124430c37ccb5e2f4cb0a69c37ad885ba /litmus | |
parent | c6182ba4a548baf0d1238d0df54e7d38ed299c3e (diff) |
Split out TRACE() from litmus.h and cleanup some includes
The TRACE() functionality doesn't need all of litmus.h. Currently,
it's impossible to use TRACE() in sched.h due to a circular
dependency. This patch moves TRACE() and friends to
litmus/sched_debug.h, which can be included in sched.h.
While at it, also fix some minor include ugliness that was revealed by
this change.
Diffstat (limited to 'litmus')
-rw-r--r-- | litmus/budget.c | 1 | ||||
-rw-r--r-- | litmus/litmus.c | 8 | ||||
-rw-r--r-- | litmus/litmus_proc.c | 1 | ||||
-rw-r--r-- | litmus/sched_plugin.c | 1 | ||||
-rw-r--r-- | litmus/sched_psn_edf.c | 3 | ||||
-rw-r--r-- | litmus/srp.c | 4 | ||||
-rw-r--r-- | litmus/trace.c | 1 |
7 files changed, 9 insertions, 10 deletions
diff --git a/litmus/budget.c b/litmus/budget.c index b99177a26313..f6f5ca81c9d6 100644 --- a/litmus/budget.c +++ b/litmus/budget.c | |||
@@ -1,3 +1,4 @@ | |||
1 | #include <linux/sched.h> | ||
1 | #include <linux/percpu.h> | 2 | #include <linux/percpu.h> |
2 | #include <linux/hrtimer.h> | 3 | #include <linux/hrtimer.h> |
3 | 4 | ||
diff --git a/litmus/litmus.c b/litmus/litmus.c index 99c35ac99870..0756d0156f8f 100644 --- a/litmus/litmus.c +++ b/litmus/litmus.c | |||
@@ -6,20 +6,16 @@ | |||
6 | #include <asm/uaccess.h> | 6 | #include <asm/uaccess.h> |
7 | #include <linux/uaccess.h> | 7 | #include <linux/uaccess.h> |
8 | #include <linux/sysrq.h> | 8 | #include <linux/sysrq.h> |
9 | 9 | #include <linux/sched.h> | |
10 | #include <linux/module.h> | 10 | #include <linux/module.h> |
11 | #include <linux/slab.h> | 11 | #include <linux/slab.h> |
12 | 12 | ||
13 | #include <litmus/litmus.h> | 13 | #include <litmus/litmus.h> |
14 | #include <linux/sched.h> | ||
15 | |||
16 | #include <litmus/bheap.h> | 14 | #include <litmus/bheap.h> |
17 | |||
18 | #include <litmus/trace.h> | 15 | #include <litmus/trace.h> |
19 | |||
20 | #include <litmus/rt_domain.h> | 16 | #include <litmus/rt_domain.h> |
21 | |||
22 | #include <litmus/litmus_proc.h> | 17 | #include <litmus/litmus_proc.h> |
18 | #include <litmus/sched_trace.h> | ||
23 | 19 | ||
24 | /* Number of RT tasks that exist in the system */ | 20 | /* Number of RT tasks that exist in the system */ |
25 | atomic_t rt_task_count = ATOMIC_INIT(0); | 21 | atomic_t rt_task_count = ATOMIC_INIT(0); |
diff --git a/litmus/litmus_proc.c b/litmus/litmus_proc.c index c10a6a6d3975..81ea5c35d291 100644 --- a/litmus/litmus_proc.c +++ b/litmus/litmus_proc.c | |||
@@ -2,6 +2,7 @@ | |||
2 | * litmus_proc.c -- Implementation of the /proc/litmus directory tree. | 2 | * litmus_proc.c -- Implementation of the /proc/litmus directory tree. |
3 | */ | 3 | */ |
4 | 4 | ||
5 | #include <linux/sched.h> | ||
5 | #include <linux/uaccess.h> | 6 | #include <linux/uaccess.h> |
6 | 7 | ||
7 | #include <litmus/litmus.h> | 8 | #include <litmus/litmus.h> |
diff --git a/litmus/sched_plugin.c b/litmus/sched_plugin.c index d706a08fb313..ec04454a0cf9 100644 --- a/litmus/sched_plugin.c +++ b/litmus/sched_plugin.c | |||
@@ -6,6 +6,7 @@ | |||
6 | 6 | ||
7 | #include <linux/list.h> | 7 | #include <linux/list.h> |
8 | #include <linux/spinlock.h> | 8 | #include <linux/spinlock.h> |
9 | #include <linux/sched.h> | ||
9 | 10 | ||
10 | #include <litmus/litmus.h> | 11 | #include <litmus/litmus.h> |
11 | #include <litmus/sched_plugin.h> | 12 | #include <litmus/sched_plugin.h> |
diff --git a/litmus/sched_psn_edf.c b/litmus/sched_psn_edf.c index 73f64730bd5e..aa567f2b91b9 100644 --- a/litmus/sched_psn_edf.c +++ b/litmus/sched_psn_edf.c | |||
@@ -12,14 +12,13 @@ | |||
12 | #include <linux/sched.h> | 12 | #include <linux/sched.h> |
13 | #include <linux/list.h> | 13 | #include <linux/list.h> |
14 | #include <linux/spinlock.h> | 14 | #include <linux/spinlock.h> |
15 | |||
16 | #include <linux/module.h> | 15 | #include <linux/module.h> |
17 | 16 | ||
18 | #include <litmus/litmus.h> | 17 | #include <litmus/litmus.h> |
19 | #include <litmus/jobs.h> | 18 | #include <litmus/jobs.h> |
20 | #include <litmus/sched_plugin.h> | 19 | #include <litmus/sched_plugin.h> |
21 | #include <litmus/edf_common.h> | 20 | #include <litmus/edf_common.h> |
22 | 21 | #include <litmus/sched_trace.h> | |
23 | 22 | ||
24 | typedef struct { | 23 | typedef struct { |
25 | rt_domain_t domain; | 24 | rt_domain_t domain; |
diff --git a/litmus/srp.c b/litmus/srp.c index 71639b991630..cb577598ce3e 100644 --- a/litmus/srp.c +++ b/litmus/srp.c | |||
@@ -3,12 +3,12 @@ | |||
3 | /* ************************************************************************** */ | 3 | /* ************************************************************************** */ |
4 | 4 | ||
5 | #include <asm/atomic.h> | 5 | #include <asm/atomic.h> |
6 | #include <linux/sched.h> | ||
6 | #include <linux/wait.h> | 7 | #include <linux/wait.h> |
8 | |||
7 | #include <litmus/litmus.h> | 9 | #include <litmus/litmus.h> |
8 | #include <litmus/sched_plugin.h> | 10 | #include <litmus/sched_plugin.h> |
9 | |||
10 | #include <litmus/fdso.h> | 11 | #include <litmus/fdso.h> |
11 | |||
12 | #include <litmus/trace.h> | 12 | #include <litmus/trace.h> |
13 | 13 | ||
14 | 14 | ||
diff --git a/litmus/trace.c b/litmus/trace.c index 440376998dc9..b3a6b47aad6e 100644 --- a/litmus/trace.c +++ b/litmus/trace.c | |||
@@ -1,3 +1,4 @@ | |||
1 | #include <linux/sched.h> | ||
1 | #include <linux/module.h> | 2 | #include <linux/module.h> |
2 | 3 | ||
3 | #include <litmus/ftdev.h> | 4 | #include <litmus/ftdev.h> |