https://github.com/torvalds/linux
Raw File
Tip revision: 52addcf9d6669fa439387610bc65c92fa0980cef authored by Linus Torvalds on 25 August 2014, 22:36:20 UTC
Linux 3.17-rc2
Tip revision: 52addcf
tmem.h
#ifndef _XEN_TMEM_H
#define _XEN_TMEM_H

#include <linux/types.h>

#ifdef CONFIG_XEN_TMEM_MODULE
#define tmem_enabled true
#else
/* defined in drivers/xen/tmem.c */
extern bool tmem_enabled;
#endif

#ifdef CONFIG_XEN_SELFBALLOONING
extern int xen_selfballoon_init(bool, bool);
#endif

#endif /* _XEN_TMEM_H */
back to top