2 * JFFS2 -- Journalling Flash File System, Version 2.
4 * Copyright © 2001-2007 Red Hat, Inc.
6 * Created by David Woodhouse <dwmw2@infradead.org>
8 * For licensing information, see the file 'LICENCE' in this directory.
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/kernel.h>
15 #include <linux/slab.h>
16 #include <linux/init.h>
17 #include <linux/jffs2.h>
20 /* These are initialised to NULL in the kernel startup code.
21 If you're porting to other operating systems, beware */
22 static struct kmem_cache
*full_dnode_slab
;
23 static struct kmem_cache
*raw_dirent_slab
;
24 static struct kmem_cache
*raw_inode_slab
;
25 static struct kmem_cache
*tmp_dnode_info_slab
;
26 static struct kmem_cache
*raw_node_ref_slab
;
27 static struct kmem_cache
*node_frag_slab
;
28 static struct kmem_cache
*inode_cache_slab
;
29 #ifdef CONFIG_JFFS2_FS_XATTR
30 static struct kmem_cache
*xattr_datum_cache
;
31 static struct kmem_cache
*xattr_ref_cache
;
34 int __init
jffs2_create_slab_caches(void)
36 full_dnode_slab
= KMEM_CACHE(jffs2_full_dnode
, 0);
40 raw_dirent_slab
= KMEM_CACHE(jffs2_raw_dirent
, SLAB_HWCACHE_ALIGN
);
44 raw_inode_slab
= KMEM_CACHE(jffs2_raw_inode
, SLAB_HWCACHE_ALIGN
);
48 tmp_dnode_info_slab
= KMEM_CACHE(jffs2_tmp_dnode_info
, 0);
49 if (!tmp_dnode_info_slab
)
52 raw_node_ref_slab
= kmem_cache_create("jffs2_refblock",
53 sizeof(struct jffs2_raw_node_ref
) * (REFS_PER_BLOCK
+ 1),
55 if (!raw_node_ref_slab
)
58 node_frag_slab
= KMEM_CACHE(jffs2_node_frag
, 0);
62 inode_cache_slab
= KMEM_CACHE(jffs2_inode_cache
, 0);
63 if (!inode_cache_slab
)
66 #ifdef CONFIG_JFFS2_FS_XATTR
67 xattr_datum_cache
= KMEM_CACHE(jffs2_xattr_datum
, 0);
68 if (!xattr_datum_cache
)
71 xattr_ref_cache
= KMEM_CACHE(jffs2_xattr_ref
, 0);
78 jffs2_destroy_slab_caches();
82 void jffs2_destroy_slab_caches(void)
84 kmem_cache_destroy(full_dnode_slab
);
85 kmem_cache_destroy(raw_dirent_slab
);
86 kmem_cache_destroy(raw_inode_slab
);
87 kmem_cache_destroy(tmp_dnode_info_slab
);
88 kmem_cache_destroy(raw_node_ref_slab
);
89 kmem_cache_destroy(node_frag_slab
);
90 kmem_cache_destroy(inode_cache_slab
);
91 #ifdef CONFIG_JFFS2_FS_XATTR
92 kmem_cache_destroy(xattr_datum_cache
);
93 kmem_cache_destroy(xattr_ref_cache
);
97 struct jffs2_full_dirent
*jffs2_alloc_full_dirent(int namesize
)
99 struct jffs2_full_dirent
*ret
;
100 ret
= kmalloc(sizeof(struct jffs2_full_dirent
) + namesize
, GFP_KERNEL
);
101 dbg_memalloc("%p\n", ret
);
105 void jffs2_free_full_dirent(struct jffs2_full_dirent
*x
)
107 dbg_memalloc("%p\n", x
);
111 struct jffs2_full_dnode
*jffs2_alloc_full_dnode(void)
113 struct jffs2_full_dnode
*ret
;
114 ret
= kmem_cache_alloc(full_dnode_slab
, GFP_KERNEL
);
115 dbg_memalloc("%p\n", ret
);
119 void jffs2_free_full_dnode(struct jffs2_full_dnode
*x
)
121 dbg_memalloc("%p\n", x
);
122 kmem_cache_free(full_dnode_slab
, x
);
125 struct jffs2_raw_dirent
*jffs2_alloc_raw_dirent(void)
127 struct jffs2_raw_dirent
*ret
;
128 ret
= kmem_cache_alloc(raw_dirent_slab
, GFP_KERNEL
);
129 dbg_memalloc("%p\n", ret
);
133 void jffs2_free_raw_dirent(struct jffs2_raw_dirent
*x
)
135 dbg_memalloc("%p\n", x
);
136 kmem_cache_free(raw_dirent_slab
, x
);
139 struct jffs2_raw_inode
*jffs2_alloc_raw_inode(void)
141 struct jffs2_raw_inode
*ret
;
142 ret
= kmem_cache_alloc(raw_inode_slab
, GFP_KERNEL
);
143 dbg_memalloc("%p\n", ret
);
147 void jffs2_free_raw_inode(struct jffs2_raw_inode
*x
)
149 dbg_memalloc("%p\n", x
);
150 kmem_cache_free(raw_inode_slab
, x
);
153 struct jffs2_tmp_dnode_info
*jffs2_alloc_tmp_dnode_info(void)
155 struct jffs2_tmp_dnode_info
*ret
;
156 ret
= kmem_cache_alloc(tmp_dnode_info_slab
, GFP_KERNEL
);
162 void jffs2_free_tmp_dnode_info(struct jffs2_tmp_dnode_info
*x
)
164 dbg_memalloc("%p\n", x
);
165 kmem_cache_free(tmp_dnode_info_slab
, x
);
168 static struct jffs2_raw_node_ref
*jffs2_alloc_refblock(void)
170 struct jffs2_raw_node_ref
*ret
;
172 ret
= kmem_cache_alloc(raw_node_ref_slab
, GFP_KERNEL
);
175 for (i
=0; i
< REFS_PER_BLOCK
; i
++) {
176 ret
[i
].flash_offset
= REF_EMPTY_NODE
;
177 ret
[i
].next_in_ino
= NULL
;
179 ret
[i
].flash_offset
= REF_LINK_NODE
;
180 ret
[i
].next_in_ino
= NULL
;
185 int jffs2_prealloc_raw_node_refs(struct jffs2_sb_info
*c
,
186 struct jffs2_eraseblock
*jeb
, int nr
)
188 struct jffs2_raw_node_ref
**p
, *ref
;
191 dbg_memalloc("%d\n", nr
);
196 dbg_memalloc("Reserving %d refs for block @0x%08x\n", nr
, jeb
->offset
);
198 /* If jeb->last_node is really a valid node then skip over it */
199 if (ref
&& ref
->flash_offset
!= REF_EMPTY_NODE
)
204 dbg_memalloc("Allocating new refblock linked from %p\n", p
);
205 ref
= *p
= jffs2_alloc_refblock();
209 if (ref
->flash_offset
== REF_LINK_NODE
) {
210 p
= &ref
->next_in_ino
;
217 jeb
->allocated_refs
= nr
;
219 dbg_memalloc("Reserved %d refs for block @0x%08x, last_node is %p (%08x,%p)\n",
220 nr
, jeb
->offset
, jeb
->last_node
, jeb
->last_node
->flash_offset
,
221 jeb
->last_node
->next_in_ino
);
226 void jffs2_free_refblock(struct jffs2_raw_node_ref
*x
)
228 dbg_memalloc("%p\n", x
);
229 kmem_cache_free(raw_node_ref_slab
, x
);
232 struct jffs2_node_frag
*jffs2_alloc_node_frag(void)
234 struct jffs2_node_frag
*ret
;
235 ret
= kmem_cache_alloc(node_frag_slab
, GFP_KERNEL
);
236 dbg_memalloc("%p\n", ret
);
240 void jffs2_free_node_frag(struct jffs2_node_frag
*x
)
242 dbg_memalloc("%p\n", x
);
243 kmem_cache_free(node_frag_slab
, x
);
246 struct jffs2_inode_cache
*jffs2_alloc_inode_cache(void)
248 struct jffs2_inode_cache
*ret
;
249 ret
= kmem_cache_alloc(inode_cache_slab
, GFP_KERNEL
);
250 dbg_memalloc("%p\n", ret
);
254 void jffs2_free_inode_cache(struct jffs2_inode_cache
*x
)
256 dbg_memalloc("%p\n", x
);
257 kmem_cache_free(inode_cache_slab
, x
);
260 #ifdef CONFIG_JFFS2_FS_XATTR
261 struct jffs2_xattr_datum
*jffs2_alloc_xattr_datum(void)
263 struct jffs2_xattr_datum
*xd
;
264 xd
= kmem_cache_zalloc(xattr_datum_cache
, GFP_KERNEL
);
265 dbg_memalloc("%p\n", xd
);
269 xd
->class = RAWNODE_CLASS_XATTR_DATUM
;
270 xd
->node
= (void *)xd
;
271 INIT_LIST_HEAD(&xd
->xindex
);
275 void jffs2_free_xattr_datum(struct jffs2_xattr_datum
*xd
)
277 dbg_memalloc("%p\n", xd
);
278 kmem_cache_free(xattr_datum_cache
, xd
);
281 struct jffs2_xattr_ref
*jffs2_alloc_xattr_ref(void)
283 struct jffs2_xattr_ref
*ref
;
284 ref
= kmem_cache_zalloc(xattr_ref_cache
, GFP_KERNEL
);
285 dbg_memalloc("%p\n", ref
);
289 ref
->class = RAWNODE_CLASS_XATTR_REF
;
290 ref
->node
= (void *)ref
;
294 void jffs2_free_xattr_ref(struct jffs2_xattr_ref
*ref
)
296 dbg_memalloc("%p\n", ref
);
297 kmem_cache_free(xattr_ref_cache
, ref
);