https://github.com/torvalds/linux
Raw File
Tip revision: d6d211db37e75de2ddc3a4f979038c40df7cc79c authored by Linus Torvalds on 09 May 2014, 20:10:52 UTC
Linux 3.15-rc5
Tip revision: d6d211d
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