summaryrefslogtreecommitdiffstats
path: root/include/linux/slub_def.h
diff options
context:
space:
mode:
authorAlexey Dobriyan2018-04-06 01:21:31 +0200
committerLinus Torvalds2018-04-06 06:36:24 +0200
commit7bbdb81ee3de73f2381ceec1bbee831f4c913b5c (patch)
tree6a48fc40f7f359fc2fb6d10776514ff05576bb07 /include/linux/slub_def.h
parentkasan: make kasan_cache_create() work with 32-bit slab cache sizes (diff)
downloadkernel-qcow2-linux-7bbdb81ee3de73f2381ceec1bbee831f4c913b5c.tar.gz
kernel-qcow2-linux-7bbdb81ee3de73f2381ceec1bbee831f4c913b5c.tar.xz
kernel-qcow2-linux-7bbdb81ee3de73f2381ceec1bbee831f4c913b5c.zip
slab: make usercopy region 32-bit
If kmem case sizes are 32-bit, then usecopy region should be too. Link: http://lkml.kernel.org/r/20180305200730.15812-21-adobriyan@gmail.com Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Cc: David Miller <davem@davemloft.net> Cc: Christoph Lameter <cl@linux.com> Cc: Pekka Enberg <penberg@kernel.org> Cc: David Rientjes <rientjes@google.com> Cc: Joonsoo Kim <iamjoonsoo.kim@lge.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/slub_def.h')
-rw-r--r--include/linux/slub_def.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/slub_def.h b/include/linux/slub_def.h
index bc02fd3a8ccf..623d6ba92036 100644
--- a/include/linux/slub_def.h
+++ b/include/linux/slub_def.h
@@ -137,8 +137,8 @@ struct kmem_cache {
struct kasan_cache kasan_info;
#endif
- size_t useroffset; /* Usercopy region offset */
- size_t usersize; /* Usercopy region size */
+ unsigned int useroffset; /* Usercopy region offset */
+ unsigned int usersize; /* Usercopy region size */
struct kmem_cache_node *node[MAX_NUMNODES];
};