malloc.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * JFFS2 -- Journalling Flash File System, Version 2.
  3.  *
  4.  * Copyright (C) 2001 Red Hat, Inc.
  5.  *
  6.  * Created by David Woodhouse <dwmw2@cambridge.redhat.com>
  7.  *
  8.  * The original JFFS, from which the design for JFFS2 was derived,
  9.  * was designed and implemented by Axis Communications AB.
  10.  *
  11.  * The contents of this file are subject to the Red Hat eCos Public
  12.  * License Version 1.1 (the "Licence"); you may not use this file
  13.  * except in compliance with the Licence.  You may obtain a copy of
  14.  * the Licence at http://www.redhat.com/
  15.  *
  16.  * Software distributed under the Licence is distributed on an "AS IS"
  17.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
  18.  * See the Licence for the specific language governing rights and
  19.  * limitations under the Licence.
  20.  *
  21.  * The Original Code is JFFS2 - Journalling Flash File System, version 2
  22.  *
  23.  * Alternatively, the contents of this file may be used under the
  24.  * terms of the GNU General Public License version 2 (the "GPL"), in
  25.  * which case the provisions of the GPL are applicable instead of the
  26.  * above.  If you wish to allow the use of your version of this file
  27.  * only under the terms of the GPL and not to allow others to use your
  28.  * version of this file under the RHEPL, indicate your decision by
  29.  * deleting the provisions above and replace them with the notice and
  30.  * other provisions required by the GPL.  If you do not delete the
  31.  * provisions above, a recipient may use your version of this file
  32.  * under either the RHEPL or the GPL.
  33.  *
  34.  * $Id: malloc.c,v 1.16 2001/03/15 15:38:24 dwmw2 Exp $
  35.  *
  36.  */
  37. #include <linux/kernel.h>
  38. #include <linux/slab.h>
  39. #include <linux/init.h>
  40. #include <linux/jffs2.h>
  41. #include "nodelist.h"
  42. #if 0
  43. #define JFFS2_SLAB_POISON SLAB_POISON
  44. #else
  45. #define JFFS2_SLAB_POISON 0
  46. #endif
  47. /* These are initialised to NULL in the kernel startup code.
  48.    If you're porting to other operating systems, beware */
  49. static kmem_cache_t *full_dnode_slab;
  50. static kmem_cache_t *raw_dirent_slab;
  51. static kmem_cache_t *raw_inode_slab;
  52. static kmem_cache_t *tmp_dnode_info_slab;
  53. static kmem_cache_t *raw_node_ref_slab;
  54. static kmem_cache_t *node_frag_slab;
  55. static kmem_cache_t *inode_cache_slab;
  56. void jffs2_free_tmp_dnode_info_list(struct jffs2_tmp_dnode_info *tn)
  57. {
  58. struct jffs2_tmp_dnode_info *next;
  59. while (tn) {
  60. next = tn;
  61. tn = tn->next;
  62. jffs2_free_full_dnode(next->fn);
  63. jffs2_free_tmp_dnode_info(next);
  64. }
  65. }
  66. void jffs2_free_full_dirent_list(struct jffs2_full_dirent *fd)
  67. {
  68. struct jffs2_full_dirent *next;
  69. while (fd) {
  70. next = fd->next;
  71. jffs2_free_full_dirent(fd);
  72. fd = next;
  73. }
  74. }
  75. int __init jffs2_create_slab_caches(void)
  76. {
  77. full_dnode_slab = kmem_cache_create("jffs2_full_dnode", sizeof(struct jffs2_full_dnode), 0, JFFS2_SLAB_POISON, NULL, NULL);
  78. if (!full_dnode_slab)
  79. goto err;
  80. raw_dirent_slab = kmem_cache_create("jffs2_raw_dirent", sizeof(struct jffs2_raw_dirent), 0, JFFS2_SLAB_POISON, NULL, NULL);
  81. if (!raw_dirent_slab)
  82. goto err;
  83. raw_inode_slab = kmem_cache_create("jffs2_raw_inode", sizeof(struct jffs2_raw_inode), 0, JFFS2_SLAB_POISON, NULL, NULL);
  84. if (!raw_inode_slab)
  85. goto err;
  86. tmp_dnode_info_slab = kmem_cache_create("jffs2_tmp_dnode", sizeof(struct jffs2_tmp_dnode_info), 0, JFFS2_SLAB_POISON, NULL, NULL);
  87. if (!tmp_dnode_info_slab)
  88. goto err;
  89. raw_node_ref_slab = kmem_cache_create("jffs2_raw_node_ref", sizeof(struct jffs2_raw_node_ref), 0, JFFS2_SLAB_POISON, NULL, NULL);
  90. if (!raw_node_ref_slab)
  91. goto err;
  92. node_frag_slab = kmem_cache_create("jffs2_node_frag", sizeof(struct jffs2_node_frag), 0, JFFS2_SLAB_POISON, NULL, NULL);
  93. if (!node_frag_slab)
  94. goto err;
  95. inode_cache_slab = kmem_cache_create("jffs2_inode_cache", sizeof(struct jffs2_inode_cache), 0, JFFS2_SLAB_POISON, NULL, NULL);
  96. if (inode_cache_slab)
  97. return 0;
  98.  err:
  99. jffs2_destroy_slab_caches();
  100. return -ENOMEM;
  101. }
  102. void jffs2_destroy_slab_caches(void)
  103. {
  104. if(full_dnode_slab)
  105. kmem_cache_destroy(full_dnode_slab);
  106. if(raw_dirent_slab)
  107. kmem_cache_destroy(raw_dirent_slab);
  108. if(raw_inode_slab)
  109. kmem_cache_destroy(raw_inode_slab);
  110. if(tmp_dnode_info_slab)
  111. kmem_cache_destroy(tmp_dnode_info_slab);
  112. if(raw_node_ref_slab)
  113. kmem_cache_destroy(raw_node_ref_slab);
  114. if(node_frag_slab)
  115. kmem_cache_destroy(node_frag_slab);
  116. if(inode_cache_slab)
  117. kmem_cache_destroy(inode_cache_slab);
  118. }
  119. struct jffs2_full_dirent *jffs2_alloc_full_dirent(int namesize)
  120. {
  121. return kmalloc(sizeof(struct jffs2_full_dirent) + namesize, GFP_KERNEL);
  122. }
  123. void jffs2_free_full_dirent(struct jffs2_full_dirent *x)
  124. {
  125. kfree(x);
  126. }
  127. struct jffs2_full_dnode *jffs2_alloc_full_dnode(void)
  128. {
  129. void *ret = kmem_cache_alloc(full_dnode_slab, GFP_KERNEL);
  130. return ret;
  131. }
  132. void jffs2_free_full_dnode(struct jffs2_full_dnode *x)
  133. {
  134. kmem_cache_free(full_dnode_slab, x);
  135. }
  136. struct jffs2_raw_dirent *jffs2_alloc_raw_dirent(void)
  137. {
  138. return kmem_cache_alloc(raw_dirent_slab, GFP_KERNEL);
  139. }
  140. void jffs2_free_raw_dirent(struct jffs2_raw_dirent *x)
  141. {
  142. kmem_cache_free(raw_dirent_slab, x);
  143. }
  144. struct jffs2_raw_inode *jffs2_alloc_raw_inode(void)
  145. {
  146. return kmem_cache_alloc(raw_inode_slab, GFP_KERNEL);
  147. }
  148. void jffs2_free_raw_inode(struct jffs2_raw_inode *x)
  149. {
  150. kmem_cache_free(raw_inode_slab, x);
  151. }
  152. struct jffs2_tmp_dnode_info *jffs2_alloc_tmp_dnode_info(void)
  153. {
  154. return kmem_cache_alloc(tmp_dnode_info_slab, GFP_KERNEL);
  155. }
  156. void jffs2_free_tmp_dnode_info(struct jffs2_tmp_dnode_info *x)
  157. {
  158. kmem_cache_free(tmp_dnode_info_slab, x);
  159. }
  160. struct jffs2_raw_node_ref *jffs2_alloc_raw_node_ref(void)
  161. {
  162. return kmem_cache_alloc(raw_node_ref_slab, GFP_KERNEL);
  163. }
  164. void jffs2_free_raw_node_ref(struct jffs2_raw_node_ref *x)
  165. {
  166. kmem_cache_free(raw_node_ref_slab, x);
  167. }
  168. struct jffs2_node_frag *jffs2_alloc_node_frag(void)
  169. {
  170. return kmem_cache_alloc(node_frag_slab, GFP_KERNEL);
  171. }
  172. void jffs2_free_node_frag(struct jffs2_node_frag *x)
  173. {
  174. kmem_cache_free(node_frag_slab, x);
  175. }
  176. struct jffs2_inode_cache *jffs2_alloc_inode_cache(void)
  177. {
  178. struct jffs2_inode_cache *ret = kmem_cache_alloc(inode_cache_slab, GFP_KERNEL);
  179. D1(printk(KERN_DEBUG "Allocated inocache at %pn", ret));
  180. return ret;
  181. }
  182. void jffs2_free_inode_cache(struct jffs2_inode_cache *x)
  183. {
  184. D1(printk(KERN_DEBUG "Freeing inocache at %pn", x));
  185. kmem_cache_free(inode_cache_slab, x);
  186. }