diff options
author | Christoph Lameter <clameter@sgi.com> | 2006-01-08 04:00:47 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-08 23:12:41 -0500 |
commit | 930d915252edda7042c944ed3c30194a2f9fe163 (patch) | |
tree | 620452f11a9949943765b7a28e5b919f40f32b12 /include | |
parent | 21eac81f252fe31c3cf64b805a1e8652192f3a3b (diff) |
[PATCH] Swap Migration V5: PF_SWAPWRITE to allow writing to swap
Add PF_SWAPWRITE to control a processes permission to write to swap.
- Use PF_SWAPWRITE in may_write_to_queue() instead of checking for kswapd
and pdflush
- Set PF_SWAPWRITE flag for kswapd and pdflush
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sched.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 7da33619d5d0..a74662077d60 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -895,6 +895,7 @@ do { if (atomic_dec_and_test(&(tsk)->usage)) __put_task_struct(tsk); } while(0) | |||
895 | #define PF_SYNCWRITE 0x00200000 /* I am doing a sync write */ | 895 | #define PF_SYNCWRITE 0x00200000 /* I am doing a sync write */ |
896 | #define PF_BORROWED_MM 0x00400000 /* I am a kthread doing use_mm */ | 896 | #define PF_BORROWED_MM 0x00400000 /* I am a kthread doing use_mm */ |
897 | #define PF_RANDOMIZE 0x00800000 /* randomize virtual address space */ | 897 | #define PF_RANDOMIZE 0x00800000 /* randomize virtual address space */ |
898 | #define PF_SWAPWRITE 0x01000000 /* Allowed to write to swap */ | ||
898 | 899 | ||
899 | /* | 900 | /* |
900 | * Only the _current_ task can read/write to tsk->flags, but other | 901 | * Only the _current_ task can read/write to tsk->flags, but other |