From 1462308d8b7501a79c33d55a8f84453709edc664 Mon Sep 17 00:00:00 2001 From: Johannes Lundberg Date: Tue, 14 May 2019 23:32:02 +0000 Subject: [PATCH] LinuxKPI: Add vm_fault_t type. This patch is part of D19565 Reviewed by: hps Approved by: imp (mentor), hps MFC after: 1 week --- sys/compat/linuxkpi/common/include/linux/mm_types.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/compat/linuxkpi/common/include/linux/mm_types.h b/sys/compat/linuxkpi/common/include/linux/mm_types.h index 81eb278f7879..5529c0afe0d8 100644 --- a/sys/compat/linuxkpi/common/include/linux/mm_types.h +++ b/sys/compat/linuxkpi/common/include/linux/mm_types.h @@ -35,6 +35,8 @@ #include +typedef int vm_fault_t; + struct vm_area_struct; struct task_struct;