aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/vmalloc.h
diff options
context:
space:
mode:
authorKees Cook <keescook@chromium.org>2018-05-08 12:55:26 -0700
committerKees Cook <keescook@chromium.org>2018-06-05 12:16:51 -0700
commit3b3b1a29eb89ba93f91213cbebb332a2ac31fa8b (patch)
treef163f64ea43d4afee78f1bc0ad5eadc882e40343 /include/linux/vmalloc.h
parentmm: Use overflow helpers in kmalloc_array*() (diff)
downloadlinux-dev-3b3b1a29eb89ba93f91213cbebb332a2ac31fa8b.tar.xz
linux-dev-3b3b1a29eb89ba93f91213cbebb332a2ac31fa8b.zip
mm: Use overflow helpers in kvmalloc()
Instead of open-coded multiplication and bounds checking, use the new overflow helper. Additionally prepare for vmalloc() users to add array_size()-family helpers in the future. Signed-off-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to '')
-rw-r--r--include/linux/vmalloc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/vmalloc.h b/include/linux/vmalloc.h
index 1e5d8c392f15..398e9c95cd61 100644
--- a/include/linux/vmalloc.h
+++ b/include/linux/vmalloc.h
@@ -8,6 +8,7 @@
#include <linux/llist.h>
#include <asm/page.h> /* pgprot_t */
#include <linux/rbtree.h>
+#include <linux/overflow.h>
struct vm_area_struct; /* vma defining user mapping in mm_types.h */
struct notifier_block; /* in notifier.h */