diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-08-02 14:11:26 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-08-02 14:23:57 +0200 |
commit | 8e9ed8b02490fea577b1eb1704c05bf43c891ed7 (patch) | |
tree | 3c0cc5dd498abcf0cc894e85509c131a0dde9a43 /include/linux/sched.h | |
parent | 716a42348cdaf04534b15fbdc9c83e25baebfed5 (diff) | |
parent | 07903af152b0597d94e9b0030746b63c4664e787 (diff) | |
download | op-kernel-dev-8e9ed8b02490fea577b1eb1704c05bf43c891ed7.zip op-kernel-dev-8e9ed8b02490fea577b1eb1704c05bf43c891ed7.tar.gz |
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 c472414..2c35bc2 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -211,7 +211,7 @@ extern unsigned long long time_sync_thresh; ((task->state & (__TASK_STOPPED | __TASK_TRACED)) != 0) #define task_contributes_to_load(task) \ ((task->state & TASK_UNINTERRUPTIBLE) != 0 && \ - (task->flags & PF_FROZEN) == 0) + (task->flags & PF_FREEZING) == 0) #define __set_task_state(tsk, state_value) \ do { (tsk)->state = (state_value); } while (0) @@ -1686,6 +1686,7 @@ extern cputime_t task_gtime(struct task_struct *p); #define PF_MEMALLOC 0x00000800 /* Allocating memory */ #define PF_FLUSHER 0x00001000 /* responsible for disk writeback */ #define PF_USED_MATH 0x00002000 /* if unset the fpu must be initialized before use */ +#define PF_FREEZING 0x00004000 /* freeze in progress. do not account to load */ #define PF_NOFREEZE 0x00008000 /* this thread should not be frozen */ #define PF_FROZEN 0x00010000 /* frozen for system suspend */ #define PF_FSTRANS 0x00020000 /* inside a filesystem transaction */ |