2008-10-19 12:28:16 +09:00
|
|
|
#ifndef __LINUX_PAGE_CGROUP_H
|
|
|
|
#define __LINUX_PAGE_CGROUP_H
|
|
|
|
|
2009-01-08 11:07:58 +09:00
|
|
|
#include <linux/swap.h>
|
2009-09-20 19:50:44 +09:00
|
|
|
|
2012-08-01 08:43:02 +09:00
|
|
|
#ifdef CONFIG_MEMCG_SWAP
|
2010-03-11 08:22:17 +09:00
|
|
|
extern unsigned short swap_cgroup_cmpxchg(swp_entry_t ent,
|
|
|
|
unsigned short old, unsigned short new);
|
2009-04-03 08:57:45 +09:00
|
|
|
extern unsigned short swap_cgroup_record(swp_entry_t ent, unsigned short id);
|
2012-01-13 10:18:48 +09:00
|
|
|
extern unsigned short lookup_swap_cgroup_id(swp_entry_t ent);
|
2009-01-08 11:07:58 +09:00
|
|
|
extern int swap_cgroup_swapon(int type, unsigned long max_pages);
|
|
|
|
extern void swap_cgroup_swapoff(int type);
|
|
|
|
#else
|
|
|
|
|
|
|
|
static inline
|
2009-04-03 08:57:45 +09:00
|
|
|
unsigned short swap_cgroup_record(swp_entry_t ent, unsigned short id)
|
2009-01-08 11:07:58 +09:00
|
|
|
{
|
2009-04-03 08:57:45 +09:00
|
|
|
return 0;
|
2009-01-08 11:07:58 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline
|
2012-01-13 10:18:48 +09:00
|
|
|
unsigned short lookup_swap_cgroup_id(swp_entry_t ent)
|
2009-01-08 11:07:58 +09:00
|
|
|
{
|
2009-04-03 08:57:45 +09:00
|
|
|
return 0;
|
2009-01-08 11:07:58 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
swap_cgroup_swapon(int type, unsigned long max_pages)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void swap_cgroup_swapoff(int type)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-08-01 08:43:02 +09:00
|
|
|
#endif /* CONFIG_MEMCG_SWAP */
|
2011-03-24 08:42:30 +09:00
|
|
|
|
|
|
|
#endif /* __LINUX_PAGE_CGROUP_H */
|