1 /*- 2 * Copyright (c) 2010 Isilon Systems, Inc. 3 * Copyright (c) 2010 iX Systems, Inc. 4 * Copyright (c) 2010 Panasas, Inc. 5 * Copyright (c) 2013, 2014 Mellanox Technologies, Ltd. 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice unmodified, this list of conditions, and the following 13 * disclaimer. 14 * 2. Redistributions in binary form must reproduce the above copyright 15 * notice, this list of conditions and the following disclaimer in the 16 * documentation and/or other materials provided with the distribution. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * 29 * $FreeBSD$ 30 */ 31 #ifndef _LINUX_SLAB_H_ 32 #define _LINUX_SLAB_H_ 33 34 #include <sys/param.h> 35 #include <sys/systm.h> 36 #include <sys/malloc.h> 37 #include <vm/uma.h> 38 39 #include <linux/types.h> 40 #include <linux/gfp.h> 41 42 MALLOC_DECLARE(M_KMALLOC); 43 44 #define kmalloc(size, flags) malloc((size), M_KMALLOC, (flags)) 45 #define kvmalloc(size) kmalloc((size), 0) 46 #define kzalloc(size, flags) kmalloc((size), (flags) | M_ZERO) 47 #define kzalloc_node(size, flags, node) kzalloc(size, flags) 48 #define kfree(ptr) free(__DECONST(void *, (ptr)), M_KMALLOC) 49 #define krealloc(ptr, size, flags) realloc((ptr), (size), M_KMALLOC, (flags)) 50 #define kcalloc(n, size, flags) kmalloc((n) * (size), flags | M_ZERO) 51 #define vzalloc(size) kzalloc(size, GFP_KERNEL | __GFP_NOWARN) 52 #define vfree(arg) kfree(arg) 53 #define kvfree(arg) kfree(arg) 54 #define vmalloc(size) kmalloc(size, GFP_KERNEL) 55 #define vmalloc_node(size, node) kmalloc(size, GFP_KERNEL) 56 57 struct kmem_cache { 58 uma_zone_t cache_zone; 59 void (*cache_ctor)(void *); 60 }; 61 62 #define SLAB_HWCACHE_ALIGN 0x0001 63 64 static inline int 65 kmem_ctor(void *mem, int size, void *arg, int flags) 66 { 67 void (*ctor)(void *); 68 69 ctor = arg; 70 ctor(mem); 71 72 return (0); 73 } 74 75 static inline struct kmem_cache * 76 kmem_cache_create(char *name, size_t size, size_t align, u_long flags, 77 void (*ctor)(void *)) 78 { 79 struct kmem_cache *c; 80 81 c = malloc(sizeof(*c), M_KMALLOC, M_WAITOK); 82 if (align) 83 align--; 84 if (flags & SLAB_HWCACHE_ALIGN) 85 align = UMA_ALIGN_CACHE; 86 c->cache_zone = uma_zcreate(name, size, ctor ? kmem_ctor : NULL, 87 NULL, NULL, NULL, align, 0); 88 c->cache_ctor = ctor; 89 90 return c; 91 } 92 93 static inline void * 94 kmem_cache_alloc(struct kmem_cache *c, int flags) 95 { 96 return uma_zalloc_arg(c->cache_zone, c->cache_ctor, flags); 97 } 98 99 static inline void 100 kmem_cache_free(struct kmem_cache *c, void *m) 101 { 102 uma_zfree(c->cache_zone, m); 103 } 104 105 static inline void 106 kmem_cache_destroy(struct kmem_cache *c) 107 { 108 uma_zdestroy(c->cache_zone); 109 free(c, M_KMALLOC); 110 } 111 112 #endif /* _LINUX_SLAB_H_ */ 113