diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-08-02 08:11:26 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-08-02 08:23:57 -0400 |
commit | 8e9ed8b02490fea577b1eb1704c05bf43c891ed7 (patch) | |
tree | 3c0cc5dd498abcf0cc894e85509c131a0dde9a43 /include/linux/sched.h | |
parent | 716a42348cdaf04534b15fbdc9c83e25baebfed5 (diff) | |
parent | 07903af152b0597d94e9b0030746b63c4664e787 (diff) |
Merge branch 'sched/urgent' into sched/core
Merge reason: avoid upcoming patch conflict.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r-- | include/linux/sched.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index c472414953bf..2c35bc29d2a9 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -211,7 +211,7 @@ extern unsigned long long time_sync_thresh; | |||
211 | ((task->state & (__TASK_STOPPED | __TASK_TRACED)) != 0) | 211 | ((task->state & (__TASK_STOPPED | __TASK_TRACED)) != 0) |
212 | #define task_contributes_to_load(task) \ | 212 | #define task_contributes_to_load(task) \ |
213 | ((task->state & TASK_UNINTERRUPTIBLE) != 0 && \ | 213 | ((task->state & TASK_UNINTERRUPTIBLE) != 0 && \ |
214 | (task->flags & PF_FROZEN) == 0) | 214 | (task->flags & PF_FREEZING) == 0) |
215 | 215 | ||
216 | #define __set_task_state(tsk, state_value) \ | 216 | #define __set_task_state(tsk, state_value) \ |
217 | do { (tsk)->state = (state_value); } while (0) | 217 | do { (tsk)->state = (state_value); } while (0) |
@@ -1686,6 +1686,7 @@ extern cputime_t task_gtime(struct task_struct *p); | |||
1686 | #define PF_MEMALLOC 0x00000800 /* Allocating memory */ | 1686 | #define PF_MEMALLOC 0x00000800 /* Allocating memory */ |
1687 | #define PF_FLUSHER 0x00001000 /* responsible for disk writeback */ | 1687 | #define PF_FLUSHER 0x00001000 /* responsible for disk writeback */ |
1688 | #define PF_USED_MATH 0x00002000 /* if unset the fpu must be initialized before use */ | 1688 | #define PF_USED_MATH 0x00002000 /* if unset the fpu must be initialized before use */ |
1689 | #define PF_FREEZING 0x00004000 /* freeze in progress. do not account to load */ | ||
1689 | #define PF_NOFREEZE 0x00008000 /* this thread should not be frozen */ | 1690 | #define PF_NOFREEZE 0x00008000 /* this thread should not be frozen */ |
1690 | #define PF_FROZEN 0x00010000 /* frozen for system suspend */ | 1691 | #define PF_FROZEN 0x00010000 /* frozen for system suspend */ |
1691 | #define PF_FSTRANS 0x00020000 /* inside a filesystem transaction */ | 1692 | #define PF_FSTRANS 0x00020000 /* inside a filesystem transaction */ |