diff options
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r-- | include/linux/sched.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 664981ac1fb6..613491d3a875 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -460,10 +460,11 @@ enum idle_type | |||
460 | #define SD_LOAD_BALANCE 1 /* Do load balancing on this domain. */ | 460 | #define SD_LOAD_BALANCE 1 /* Do load balancing on this domain. */ |
461 | #define SD_BALANCE_NEWIDLE 2 /* Balance when about to become idle */ | 461 | #define SD_BALANCE_NEWIDLE 2 /* Balance when about to become idle */ |
462 | #define SD_BALANCE_EXEC 4 /* Balance on exec */ | 462 | #define SD_BALANCE_EXEC 4 /* Balance on exec */ |
463 | #define SD_WAKE_IDLE 8 /* Wake to idle CPU on task wakeup */ | 463 | #define SD_BALANCE_FORK 8 /* Balance on fork, clone */ |
464 | #define SD_WAKE_AFFINE 16 /* Wake task to waking CPU */ | 464 | #define SD_WAKE_IDLE 16 /* Wake to idle CPU on task wakeup */ |
465 | #define SD_WAKE_BALANCE 32 /* Perform balancing at task wakeup */ | 465 | #define SD_WAKE_AFFINE 32 /* Wake task to waking CPU */ |
466 | #define SD_SHARE_CPUPOWER 64 /* Domain members share cpu power */ | 466 | #define SD_WAKE_BALANCE 64 /* Perform balancing at task wakeup */ |
467 | #define SD_SHARE_CPUPOWER 128 /* Domain members share cpu power */ | ||
467 | 468 | ||
468 | struct sched_group { | 469 | struct sched_group { |
469 | struct sched_group *next; /* Must be a circular list */ | 470 | struct sched_group *next; /* Must be a circular list */ |
@@ -492,6 +493,7 @@ struct sched_domain { | |||
492 | unsigned int idle_idx; | 493 | unsigned int idle_idx; |
493 | unsigned int newidle_idx; | 494 | unsigned int newidle_idx; |
494 | unsigned int wake_idx; | 495 | unsigned int wake_idx; |
496 | unsigned int forkexec_idx; | ||
495 | int flags; /* See SD_* */ | 497 | int flags; /* See SD_* */ |
496 | 498 | ||
497 | /* Runtime fields. */ | 499 | /* Runtime fields. */ |