kmem.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /*
  2. * Copyright (c) 2010-2019 Richard Braun.
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. *
  17. *
  18. * Object caching and general purpose memory allocator.
  19. */
  20. #ifndef KERN_KMEM_H
  21. #define KERN_KMEM_H
  22. #include <stddef.h>
  23. #include <kern/init.h>
  24. #include <kern/log.h>
  25. /*
  26. * Object cache.
  27. */
  28. struct kmem_cache;
  29. /*
  30. * Type for constructor functions.
  31. *
  32. * The pre-constructed state of an object is supposed to include only
  33. * elements such as e.g. linked lists, locks, reference counters. Therefore
  34. * constructors are expected to 1) never block, 2) never fail and 3) not
  35. * need any user-provided data. As a result, object construction never
  36. * performs dynamic resource allocation, which removes the need for
  37. * destructors.
  38. */
  39. typedef void (*kmem_ctor_fn_t)(void *);
  40. #include <kern/kmem_i.h>
  41. /*
  42. * Cache creation flags.
  43. */
  44. #define KMEM_CACHE_NOOFFSLAB 0x1 /* Don't allocate external slab data */
  45. #define KMEM_CACHE_PAGE_ONLY 0x2 /* Allocate slabs from the page allocator */
  46. #define KMEM_CACHE_VERIFY 0x4 /* Use debugging facilities */
  47. /*
  48. * Initialize a cache.
  49. *
  50. * Slabs may be allocated either from the page allocator or from kernel
  51. * virtual memory, unless KMEM_CACHE_PAGE_ONLY is set.
  52. */
  53. void kmem_cache_init(struct kmem_cache *cache, const char *name,
  54. size_t obj_size, size_t align, kmem_ctor_fn_t ctor,
  55. int flags);
  56. /*
  57. * Allocate an object from a cache.
  58. */
  59. void * kmem_cache_alloc(struct kmem_cache *cache);
  60. /*
  61. * Release an object to its cache.
  62. */
  63. void kmem_cache_free(struct kmem_cache *cache, void *obj);
  64. /*
  65. * Display internal cache information.
  66. *
  67. * If cache is NULL, this function displays all managed caches.
  68. */
  69. void kmem_cache_info(struct kmem_cache *cache, log_print_fn_t print_fn);
  70. /*
  71. * Allocate size bytes of uninitialized memory.
  72. */
  73. void * kmem_alloc(size_t size);
  74. /*
  75. * Allocate size bytes of zeroed memory.
  76. */
  77. void * kmem_zalloc(size_t size);
  78. /*
  79. * Release memory obtained with kmem_alloc() or kmem_zalloc().
  80. *
  81. * The size argument must strictly match the value given at allocation time.
  82. */
  83. void kmem_free(void *ptr, size_t size);
  84. /*
  85. * Display global kernel memory information.
  86. */
  87. void kmem_info(log_print_fn_t print_fn);
  88. /*
  89. * This init operation provides :
  90. * - allocation from caches backed by the page allocator
  91. */
  92. INIT_OP_DECLARE(kmem_bootstrap);
  93. /*
  94. * This init operation provides :
  95. * - allocation from all caches
  96. */
  97. INIT_OP_DECLARE(kmem_setup);
  98. #endif /* KERN_KMEM_H */