diff options
| author | Alexey Dobriyan <adobriyan@gmail.com> | 2018-04-05 19:21:31 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-04-06 00:36:24 -0400 |
| commit | 7bbdb81ee3de73f2381ceec1bbee831f4c913b5c (patch) | |
| tree | 6a48fc40f7f359fc2fb6d10776514ff05576bb07 /include/linux/slab.h | |
| parent | be4a7988b35db9e6f95dca818d5e94785840fb58 (diff) | |
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/slab.h')
| -rw-r--r-- | include/linux/slab.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/slab.h b/include/linux/slab.h index d36e8f03730e..04402c637171 100644 --- a/include/linux/slab.h +++ b/include/linux/slab.h | |||
| @@ -143,7 +143,7 @@ struct kmem_cache *kmem_cache_create(const char *name, unsigned int size, | |||
| 143 | struct kmem_cache *kmem_cache_create_usercopy(const char *name, | 143 | struct kmem_cache *kmem_cache_create_usercopy(const char *name, |
| 144 | unsigned int size, unsigned int align, | 144 | unsigned int size, unsigned int align, |
| 145 | slab_flags_t flags, | 145 | slab_flags_t flags, |
| 146 | size_t useroffset, size_t usersize, | 146 | unsigned int useroffset, unsigned int usersize, |
| 147 | void (*ctor)(void *)); | 147 | void (*ctor)(void *)); |
| 148 | void kmem_cache_destroy(struct kmem_cache *); | 148 | void kmem_cache_destroy(struct kmem_cache *); |
| 149 | int kmem_cache_shrink(struct kmem_cache *); | 149 | int kmem_cache_shrink(struct kmem_cache *); |
