projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c96d145
)
[PATCH] sched: simplify bitmap definition
author
Steven Rostedt
<
[email protected]
>
Tue, 27 Jun 2006 09:54:29 +0000
(
02:54
-0700)
committer
Linus Torvalds
<
[email protected]
>
Wed, 28 Jun 2006 00:32:44 +0000
(17:32 -0700)
Signed-off-by: Steven Rostedt <
[email protected]
>
Acked-by: Ingo Molnar <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
kernel/sched.c
patch
|
blob
|
history
diff --git
a/kernel/sched.c
b/kernel/sched.c
index 50a67edc358498f1e24aa74cef3a7e2e1f40f51e..582faed3d360e0677180cdc4f5ec584592f97683 100644
(file)
--- a/
kernel/sched.c
+++ b/
kernel/sched.c
@@
-184,13
+184,11
@@
static unsigned int task_timeslice(task_t *p)
* These are the runqueue data structures:
*/
-#define BITMAP_SIZE ((((MAX_PRIO+1+7)/8)+sizeof(long)-1)/sizeof(long))
-
typedef struct runqueue runqueue_t;
struct prio_array {
unsigned int nr_active;
- unsigned long bitmap[BITMAP_SIZE];
+ DECLARE_BITMAP(bitmap, MAX_PRIO+1); /* include 1 bit for delimiter */
struct list_head queue[MAX_PRIO];
};