[module] added missing kvmfr.h, fixes #253

This commit is contained in:
Geoffrey McRae 2020-03-22 09:19:53 +11:00
parent 367a73d033
commit b953b2b807
2 changed files with 19 additions and 1 deletions

View file

@ -1 +1 @@
B1-160-g1ac13658e1+1
B1-162-g3acfbdce02+1

18
module/kvmfr.h Normal file
View file

@ -0,0 +1,18 @@
#ifndef _KVMFR_H
#define _KVMFR_H
#include <linux/types.h>
#include <linux/ioctl.h>
#define KVMFR_DMABUF_FLAG_CLOEXEC 0x1
struct kvmfr_dmabuf_create {
__u8 flags;
__u64 offset;
__u64 size;
};
#define KVMFR_DMABUF_GETSIZE _IO('u', 0x44)
#define KVMFR_DMABUF_CREATE _IOW('u', 0x42, struct kvmfr_dmabuf_create)
#endif