https://github.com/torvalds/linux
Raw File
Tip revision: f722406faae2d073cc1d01063d1123c35425939e authored by Linus Torvalds on 12 May 2013, 00:14:08 UTC
Linux 3.10-rc1
Tip revision: f722406
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