Files
Minchan Kim 05b4c09dd6 Revert "mm: swap: swap ratio support"
This reverts commit e518593c49.

Signed-off-by: Minchan Kim <minchan@google.com>

Conflicts:
	include/linux/swap.h
	include/linux/swapfile.h
	mm/swap_ratio.c

Bug: 130276584
Change-Id: I93d9cef5ad26e849338e440ee2e1e18f13313229
2019-04-11 07:45:39 +09:00

17 lines
556 B
C

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_SWAPFILE_H
#define _LINUX_SWAPFILE_H
/*
* these were static in swapfile.c but frontswap.c needs them and we don't
* want to expose them to the dozens of source files that include swap.h
*/
extern spinlock_t swap_lock;
extern struct plist_head swap_active_head;
extern struct swap_info_struct *swap_info[];
extern int try_to_unuse(unsigned int, bool, unsigned long);
extern unsigned long generic_max_swapfile_size(void);
extern unsigned long max_swapfile_size(void);
#endif /* _LINUX_SWAPFILE_H */