diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/backing-dev.h | 2 | ||||
| -rw-r--r-- | include/linux/mmzone.h | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/include/linux/backing-dev.h b/include/linux/backing-dev.h index 35b00746c712..f1b402a50679 100644 --- a/include/linux/backing-dev.h +++ b/include/linux/backing-dev.h | |||
| @@ -285,7 +285,7 @@ enum { | |||
| 285 | void clear_bdi_congested(struct backing_dev_info *bdi, int sync); | 285 | void clear_bdi_congested(struct backing_dev_info *bdi, int sync); |
| 286 | void set_bdi_congested(struct backing_dev_info *bdi, int sync); | 286 | void set_bdi_congested(struct backing_dev_info *bdi, int sync); |
| 287 | long congestion_wait(int sync, long timeout); | 287 | long congestion_wait(int sync, long timeout); |
| 288 | 288 | long wait_iff_congested(struct zone *zone, int sync, long timeout); | |
| 289 | 289 | ||
| 290 | static inline bool bdi_cap_writeback_dirty(struct backing_dev_info *bdi) | 290 | static inline bool bdi_cap_writeback_dirty(struct backing_dev_info *bdi) |
| 291 | { | 291 | { |
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index c3c17fb675ee..39c24ebe9cfd 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h | |||
| @@ -423,6 +423,9 @@ struct zone { | |||
| 423 | typedef enum { | 423 | typedef enum { |
| 424 | ZONE_RECLAIM_LOCKED, /* prevents concurrent reclaim */ | 424 | ZONE_RECLAIM_LOCKED, /* prevents concurrent reclaim */ |
| 425 | ZONE_OOM_LOCKED, /* zone is in OOM killer zonelist */ | 425 | ZONE_OOM_LOCKED, /* zone is in OOM killer zonelist */ |
| 426 | ZONE_CONGESTED, /* zone has many dirty pages backed by | ||
| 427 | * a congested BDI | ||
| 428 | */ | ||
| 426 | } zone_flags_t; | 429 | } zone_flags_t; |
| 427 | 430 | ||
| 428 | static inline void zone_set_flag(struct zone *zone, zone_flags_t flag) | 431 | static inline void zone_set_flag(struct zone *zone, zone_flags_t flag) |
| @@ -440,6 +443,11 @@ static inline void zone_clear_flag(struct zone *zone, zone_flags_t flag) | |||
| 440 | clear_bit(flag, &zone->flags); | 443 | clear_bit(flag, &zone->flags); |
| 441 | } | 444 | } |
| 442 | 445 | ||
| 446 | static inline int zone_is_reclaim_congested(const struct zone *zone) | ||
| 447 | { | ||
| 448 | return test_bit(ZONE_CONGESTED, &zone->flags); | ||
| 449 | } | ||
| 450 | |||
| 443 | static inline int zone_is_reclaim_locked(const struct zone *zone) | 451 | static inline int zone_is_reclaim_locked(const struct zone *zone) |
| 444 | { | 452 | { |
| 445 | return test_bit(ZONE_RECLAIM_LOCKED, &zone->flags); | 453 | return test_bit(ZONE_RECLAIM_LOCKED, &zone->flags); |
