From: Alexey Dobriyan Date: Thu, 5 Apr 2018 23:21:35 +0000 (-0700) Subject: slub: make slab_index() return unsigned int X-Git-Tag: Ubuntu-5.13.0-19.19~11272^2~63 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=284b50ddcf32e3fe1cd39bfc9ad803704e6ca338;p=mirror_ubuntu-jammy-kernel.git slub: make slab_index() return unsigned int slab_index() returns index of an object within a slab which is at most u15 (or u16?). Iterators additionally guarantee that "p >= addr". Link: http://lkml.kernel.org/r/20180305200730.15812-22-adobriyan@gmail.com Signed-off-by: Alexey Dobriyan Acked-by: Christoph Lameter Cc: Pekka Enberg Cc: David Rientjes Cc: Joonsoo Kim Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/slub.c b/mm/slub.c index a10cf661cdae..5c5b9aed10a1 100644 --- a/mm/slub.c +++ b/mm/slub.c @@ -311,7 +311,7 @@ static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp) __p += (__s)->size, __idx++) /* Determine object index from a given position */ -static inline int slab_index(void *p, struct kmem_cache *s, void *addr) +static inline unsigned int slab_index(void *p, struct kmem_cache *s, void *addr) { return (p - addr) / s->size; }