1/* Public domain. */
2
3#ifndef _LINUX_MM_TYPES_H
4#define _LINUX_MM_TYPES_H
5
6#include <linux/workqueue.h>
7#include <linux/completion.h>
8#include <linux/rwsem.h>
9
10#include <uvm/uvm_extern.h>
11
12#define VM_FAULT_NOPAGE		1
13#define VM_FAULT_SIGBUS		2
14#define VM_FAULT_RETRY		3
15#define VM_FAULT_OOM		4
16
17#endif
18