From 7ad2fb2ee1d49d8dc68037cbcdeaa7edc59bf2d2 Mon Sep 17 00:00:00 2001 From: kib Date: Fri, 22 Feb 2008 11:47:56 +0000 Subject: Sanitize arguments to linux_mremap(). Check that only MREMAP_FIXED and MREMAP_MAYMOVE flags are specified. Check for the page alignment of the addr argument. Submitted by: rdivacky MFC after: 1 week --- sys/compat/linux/linux_misc.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sys/compat/linux/linux_misc.h') diff --git a/sys/compat/linux/linux_misc.h b/sys/compat/linux/linux_misc.h index 32fa74a..c80a432 100644 --- a/sys/compat/linux/linux_misc.h +++ b/sys/compat/linux/linux_misc.h @@ -42,4 +42,7 @@ #define LINUX_MAX_COMM_LEN 16 /* Maximum length of the process name. */ +#define LINUX_MREMAP_MAYMOVE 1 +#define LINUX_MREMAP_FIXED 2 + #endif /* _LINUX_MISC_H_ */ -- cgit v1.1