diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/swap.h | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/include/linux/swap.h b/include/linux/swap.h index 7c15334f3ff2..6c990e658f4e 100644 --- a/include/linux/swap.h +++ b/include/linux/swap.h | |||
@@ -419,10 +419,22 @@ static inline swp_entry_t get_swap_page(void) | |||
419 | } | 419 | } |
420 | 420 | ||
421 | /* linux/mm/thrash.c */ | 421 | /* linux/mm/thrash.c */ |
422 | #define put_swap_token(mm) do { } while (0) | 422 | static inline void put_swap_token(struct mm_struct *mm) |
423 | #define grab_swap_token(mm) do { } while (0) | 423 | { |
424 | #define has_swap_token(mm) 0 | 424 | } |
425 | #define disable_swap_token() do { } while (0) | 425 | |
426 | static inline void grab_swap_token(struct mm_struct *mm) | ||
427 | { | ||
428 | } | ||
429 | |||
430 | static inline int has_swap_token(struct mm_struct *mm) | ||
431 | { | ||
432 | return 0; | ||
433 | } | ||
434 | |||
435 | static inline void disable_swap_token(void) | ||
436 | { | ||
437 | } | ||
426 | 438 | ||
427 | static inline void | 439 | static inline void |
428 | mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent) | 440 | mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent) |