rhashtable: add rhashtable_lookup_get_insert_key()
[cascardo/linux.git] / include / linux / slab_def.h
index 339ba02..4ad2c5a 100644 (file)
@@ -88,7 +88,8 @@ struct kmem_cache {
 };
 
 static inline void *nearest_obj(struct kmem_cache *cache, struct page *page,
-                               void *x) {
+                               void *x)
+{
        void *object = x - (x - page->s_mem) % cache->size;
        void *last_object = page->s_mem + (cache->num - 1) * cache->size;