SmartAudio/lichee/linux-4.9/include/linux/fivm.h

14 lines
404 B
C
Raw Permalink Normal View History

2018-07-13 01:31:50 +00:00
#ifndef _LINUX_FIVM_H
#define _LINUX_FIVM_H
#include <linux/fs.h>
#define CONFIG_FILE_INTEGRITY
struct fivm_operation {
int (*mmap_verify)(struct file *, unsigned long);
int (*open_verify)(struct file *, const char *, int);
};
extern int fivm_mmap_verify(struct file *file, unsigned long prot);
extern int fivm_open_verify(struct file *file, const char *pathname, int mask);
#endif /*_LINUX_FIVM_H*/