diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2012-12-09 16:53:50 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2012-12-09 16:55:39 -0500 |
commit | fbd9574e298157b54c38f82f536e5cea8f766dff (patch) | |
tree | ab8985a838b6b4c69b99f28d6338a3b9a7721dc4 /litmus/litmus_proc.c | |
parent | fccce270a5540021b544d439595fa0a736242ff0 (diff) |
Rename klitirqd klmirqd.
Diffstat (limited to 'litmus/litmus_proc.c')
-rw-r--r-- | litmus/litmus_proc.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/litmus/litmus_proc.c b/litmus/litmus_proc.c index 9ab7e015a3c1..136fecfb0b8b 100644 --- a/litmus/litmus_proc.c +++ b/litmus/litmus_proc.c | |||
@@ -21,14 +21,14 @@ static struct proc_dir_entry *litmus_dir = NULL, | |||
21 | *release_master_file = NULL, | 21 | *release_master_file = NULL, |
22 | #endif | 22 | #endif |
23 | #ifdef CONFIG_LITMUS_SOFTIRQD | 23 | #ifdef CONFIG_LITMUS_SOFTIRQD |
24 | *klitirqd_file = NULL, | 24 | *klmirqd_file = NULL, |
25 | #endif | 25 | #endif |
26 | *plugs_file = NULL; | 26 | *plugs_file = NULL; |
27 | 27 | ||
28 | /* in litmus/sync.c */ | 28 | /* in litmus/sync.c */ |
29 | int count_tasks_waiting_for_release(void); | 29 | int count_tasks_waiting_for_release(void); |
30 | 30 | ||
31 | extern int proc_read_klitirqd_stats(char *page, char **start, | 31 | extern int proc_read_klmirqd_stats(char *page, char **start, |
32 | off_t off, int count, | 32 | off_t off, int count, |
33 | int *eof, void *data); | 33 | int *eof, void *data); |
34 | 34 | ||
@@ -169,9 +169,9 @@ int __init init_litmus_proc(void) | |||
169 | #endif | 169 | #endif |
170 | 170 | ||
171 | #ifdef CONFIG_LITMUS_SOFTIRQD | 171 | #ifdef CONFIG_LITMUS_SOFTIRQD |
172 | klitirqd_file = | 172 | klmirqd_file = |
173 | create_proc_read_entry("klitirqd_stats", 0444, litmus_dir, | 173 | create_proc_read_entry("klmirqd_stats", 0444, litmus_dir, |
174 | proc_read_klitirqd_stats, NULL); | 174 | proc_read_klmirqd_stats, NULL); |
175 | #endif | 175 | #endif |
176 | 176 | ||
177 | stat_file = create_proc_read_entry("stats", 0444, litmus_dir, | 177 | stat_file = create_proc_read_entry("stats", 0444, litmus_dir, |
@@ -201,8 +201,8 @@ void exit_litmus_proc(void) | |||
201 | if (curr_file) | 201 | if (curr_file) |
202 | remove_proc_entry("active_plugin", litmus_dir); | 202 | remove_proc_entry("active_plugin", litmus_dir); |
203 | #ifdef CONFIG_LITMUS_SOFTIRQD | 203 | #ifdef CONFIG_LITMUS_SOFTIRQD |
204 | if (klitirqd_file) | 204 | if (klmirqd_file) |
205 | remove_proc_entry("klitirqd_stats", litmus_dir); | 205 | remove_proc_entry("klmirqd_stats", litmus_dir); |
206 | #endif | 206 | #endif |
207 | #ifdef CONFIG_RELEASE_MASTER | 207 | #ifdef CONFIG_RELEASE_MASTER |
208 | if (release_master_file) | 208 | if (release_master_file) |