xpmem: porting xpmem v2.6.3

implement xpmem_make, xpmem_remove
This commit is contained in:
Yoichi Umezawa
2016-12-16 17:00:09 +09:00
parent aa15e5eea8
commit f410af1cfc
9 changed files with 1330 additions and 3 deletions

21
kernel/include/xpmem.h Normal file
View File

@ -0,0 +1,21 @@
/**
* \file xpmem.h
* License details are found in the file LICENSE.
* \brief
* Structures and functions of xpmem
*/
/*
* HISTORY
*/
#ifndef _XPMEM_H
#define _XPMEM_H
#include <ihk/context.h>
#define XPMEM_DEV_PATH "/dev/xpmem"
extern int xpmem_open(ihk_mc_user_context_t *ctx);
#endif /* _XPMEM_H */