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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * JFFS -- Journaling Flash File System, Linux implementation.
  3.  *
  4.  * Copyright (C) 1999, 2000  Axis Communications AB.
  5.  *
  6.  * Created by Finn Hakansson <finn@axis.com>.
  7.  *
  8.  * This is free software; you can redistribute it and/or modify it
  9.  * under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * $Id: jffs_fm.c,v 1.27 2001/09/20 12:29:47 dwmw2 Exp $
  14.  *
  15.  * Ported to Linux 2.3.x and MTD:
  16.  * Copyright (C) 2000  Alexander Larsson (alex@cendio.se), Cendio Systems AB
  17.  *
  18.  */
  19. #define __NO_VERSION__
  20. #include <linux/slab.h>
  21. #include <linux/blkdev.h>
  22. #include <linux/jffs.h>
  23. #include "jffs_fm.h"
  24. #if defined(JFFS_MARK_OBSOLETE) && JFFS_MARK_OBSOLETE
  25. static int jffs_mark_obsolete(struct jffs_fmcontrol *fmc, __u32 fm_offset);
  26. #endif
  27. extern kmem_cache_t     *fm_cache;
  28. extern kmem_cache_t     *node_cache;
  29. /* This function creates a new shiny flash memory control structure.  */
  30. struct jffs_fmcontrol *
  31. jffs_build_begin(struct jffs_control *c, kdev_t dev)
  32. {
  33. struct jffs_fmcontrol *fmc;
  34. struct mtd_info *mtd;
  35. D3(printk("jffs_build_begin()n"));
  36. fmc = (struct jffs_fmcontrol *)kmalloc(sizeof(struct jffs_fmcontrol),
  37.        GFP_KERNEL);
  38. if (!fmc) {
  39. D(printk("jffs_build_begin(): Allocation of "
  40.  "struct jffs_fmcontrol failed!n"));
  41. return (struct jffs_fmcontrol *)0;
  42. }
  43. DJM(no_jffs_fmcontrol++);
  44. mtd = get_mtd_device(NULL, MINOR(dev));
  45. if (!mtd) {
  46. kfree(fmc);
  47. DJM(no_jffs_fmcontrol--);
  48. return NULL;
  49. }
  50. /* Retrieve the size of the flash memory.  */
  51. fmc->flash_size = mtd->size;
  52. D3(printk("  fmc->flash_size = %d bytesn", fmc->flash_size));
  53. fmc->used_size = 0;
  54. fmc->dirty_size = 0;
  55. fmc->free_size = mtd->size;
  56. fmc->sector_size = mtd->erasesize;
  57. fmc->max_chunk_size = fmc->sector_size >> 1;
  58. /* min_free_size:
  59.    1 sector, obviously.
  60.    + 1 x max_chunk_size, for when a nodes overlaps the end of a sector
  61.    + 1 x max_chunk_size again, which ought to be enough to handle 
  62.    the case where a rename causes a name to grow, and GC has
  63.    to write out larger nodes than the ones it's obsoleting.
  64.    We should fix it so it doesn't have to write the name
  65.    _every_ time. Later.
  66.    + another 2 sectors because people keep getting GC stuck and
  67.            we don't know why. This scares me - I want formal proof
  68.    of correctness of whatever number we put here. dwmw2.
  69. */
  70. fmc->min_free_size = fmc->sector_size << 2;
  71. fmc->mtd = mtd;
  72. fmc->c = c;
  73. fmc->head = 0;
  74. fmc->tail = 0;
  75. fmc->head_extra = 0;
  76. fmc->tail_extra = 0;
  77. init_MUTEX(&fmc->biglock);
  78. return fmc;
  79. }
  80. /* When the flash memory scan has completed, this function should be called
  81.    before use of the control structure.  */
  82. void
  83. jffs_build_end(struct jffs_fmcontrol *fmc)
  84. {
  85. D3(printk("jffs_build_end()n"));
  86. if (!fmc->head) {
  87. fmc->head = fmc->head_extra;
  88. fmc->tail = fmc->tail_extra;
  89. }
  90. else if (fmc->head_extra) {
  91. fmc->tail_extra->next = fmc->head;
  92. fmc->head->prev = fmc->tail_extra;
  93. fmc->head = fmc->head_extra;
  94. }
  95. fmc->head_extra = 0; /* These two instructions should be omitted.  */
  96. fmc->tail_extra = 0;
  97. D3(jffs_print_fmcontrol(fmc));
  98. }
  99. /* Call this function when the file system is unmounted.  This function
  100.    frees all memory used by this module.  */
  101. void
  102. jffs_cleanup_fmcontrol(struct jffs_fmcontrol *fmc)
  103. {
  104. if (fmc) {
  105. struct jffs_fm *cur;
  106. struct jffs_fm *next = fmc->head;
  107. while ((cur = next)) {
  108. next = next->next;
  109. jffs_free_fm(cur);
  110. }
  111. put_mtd_device(fmc->mtd);
  112. kfree(fmc);
  113. DJM(no_jffs_fmcontrol--);
  114. }
  115. }
  116. /* This function returns the size of the first chunk of free space on the
  117.    flash memory.  This function will return something nonzero if the flash
  118.    memory contains any free space.  */
  119. __u32
  120. jffs_free_size1(struct jffs_fmcontrol *fmc)
  121. {
  122. __u32 head;
  123. __u32 tail;
  124. __u32 end = fmc->flash_size;
  125. if (!fmc->head) {
  126. /* There is nothing on the flash.  */
  127. return fmc->flash_size;
  128. }
  129. /* Compute the beginning and ending of the contents of the flash.  */
  130. head = fmc->head->offset;
  131. tail = fmc->tail->offset + fmc->tail->size;
  132. if (tail == end) {
  133. tail = 0;
  134. }
  135. ASSERT(else if (tail > end) {
  136. printk(KERN_WARNING "jffs_free_size1(): tail > endn");
  137. tail = 0;
  138. });
  139. if (head <= tail) {
  140. return end - tail;
  141. }
  142. else {
  143. return head - tail;
  144. }
  145. }
  146. /* This function will return something nonzero in case there are two free
  147.    areas on the flash.  Like this:
  148.      +----------------+------------------+----------------+
  149.      |     FREE 1     |   USED / DIRTY   |     FREE 2     |
  150.      +----------------+------------------+----------------+
  151.        fmc->head -----^
  152.        fmc->tail ------------------------^
  153.    The value returned, will be the size of the first empty area on the
  154.    flash, in this case marked "FREE 1".  */
  155. __u32
  156. jffs_free_size2(struct jffs_fmcontrol *fmc)
  157. {
  158. if (fmc->head) {
  159. __u32 head = fmc->head->offset;
  160. __u32 tail = fmc->tail->offset + fmc->tail->size;
  161. if (tail == fmc->flash_size) {
  162. tail = 0;
  163. }
  164. if (tail >= head) {
  165. return head;
  166. }
  167. }
  168. return 0;
  169. }
  170. /* Allocate a chunk of flash memory.  If there is enough space on the
  171.    device, a reference to the associated node is stored in the jffs_fm
  172.    struct.  */
  173. int
  174. jffs_fmalloc(struct jffs_fmcontrol *fmc, __u32 size, struct jffs_node *node,
  175.      struct jffs_fm **result)
  176. {
  177. struct jffs_fm *fm;
  178. __u32 free_chunk_size1;
  179. __u32 free_chunk_size2;
  180. D2(printk("jffs_fmalloc(): fmc = 0x%p, size = %d, "
  181.   "node = 0x%pn", fmc, size, node));
  182. *result = 0;
  183. if (!(fm = jffs_alloc_fm())) {
  184. D(printk("jffs_fmalloc(): kmalloc() failed! (fm)n"));
  185. return -ENOMEM;
  186. }
  187. free_chunk_size1 = jffs_free_size1(fmc);
  188. free_chunk_size2 = jffs_free_size2(fmc);
  189. if (free_chunk_size1 + free_chunk_size2 != fmc->free_size) {
  190. printk(KERN_WARNING "Free size accounting screwedn");
  191. printk(KERN_WARNING "free_chunk_size1 == 0x%x, free_chunk_size2 == 0x%x, fmc->free_size == 0x%xn", free_chunk_size1, free_chunk_size2, fmc->free_size);
  192. }
  193. D3(printk("jffs_fmalloc(): free_chunk_size1 = %u, "
  194.   "free_chunk_size2 = %un",
  195.   free_chunk_size1, free_chunk_size2));
  196. if (size <= free_chunk_size1) {
  197. if (!(fm->nodes = (struct jffs_node_ref *)
  198.   kmalloc(sizeof(struct jffs_node_ref),
  199.   GFP_KERNEL))) {
  200. D(printk("jffs_fmalloc(): kmalloc() failed! "
  201.  "(node_ref)n"));
  202. jffs_free_fm(fm);
  203. return -ENOMEM;
  204. }
  205. DJM(no_jffs_node_ref++);
  206. fm->nodes->node = node;
  207. fm->nodes->next = 0;
  208. if (fmc->tail) {
  209. fm->offset = fmc->tail->offset + fmc->tail->size;
  210. if (fm->offset == fmc->flash_size) {
  211. fm->offset = 0;
  212. }
  213. ASSERT(else if (fm->offset > fmc->flash_size) {
  214. printk(KERN_WARNING "jffs_fmalloc(): "
  215.        "offset > flash_endn");
  216. fm->offset = 0;
  217. });
  218. }
  219. else {
  220. /* There don't have to be files in the file
  221.    system yet.  */
  222. fm->offset = 0;
  223. }
  224. fm->size = size;
  225. fmc->free_size -= size;
  226. fmc->used_size += size;
  227. }
  228. else if (size > free_chunk_size2) {
  229. printk(KERN_WARNING "JFFS: Tried to allocate a too "
  230.        "large flash memory chunk. (size = %u)n", size);
  231. jffs_free_fm(fm);
  232. return -ENOSPC;
  233. }
  234. else {
  235. fm->offset = fmc->tail->offset + fmc->tail->size;
  236. fm->size = free_chunk_size1;
  237. fm->nodes = 0;
  238. fmc->free_size -= fm->size;
  239. fmc->dirty_size += fm->size; /* Changed by simonk. This seemingly fixes a 
  240. bug that caused infinite garbage collection.
  241. It previously set fmc->dirty_size to size (which is the
  242. size of the requested chunk).
  243.      */
  244. }
  245. fm->next = 0;
  246. if (!fmc->head) {
  247. fm->prev = 0;
  248. fmc->head = fm;
  249. fmc->tail = fm;
  250. }
  251. else {
  252. fm->prev = fmc->tail;
  253. fmc->tail->next = fm;
  254. fmc->tail = fm;
  255. }
  256. D3(jffs_print_fmcontrol(fmc));
  257. D3(jffs_print_fm(fm));
  258. *result = fm;
  259. return 0;
  260. }
  261. /* The on-flash space is not needed anymore by the passed node.  Remove
  262.    the reference to the node from the node list.  If the data chunk in
  263.    the flash memory isn't used by any more nodes anymore (fm->nodes == 0),
  264.    then mark that chunk as dirty.  */
  265. int
  266. jffs_fmfree(struct jffs_fmcontrol *fmc, struct jffs_fm *fm, struct jffs_node *node)
  267. {
  268. struct jffs_node_ref *ref;
  269. struct jffs_node_ref *prev;
  270. ASSERT(int del = 0);
  271. D2(printk("jffs_fmfree(): node->ino = %u, node->version = %un",
  272.  node->ino, node->version));
  273. ASSERT(if (!fmc || !fm || !fm->nodes) {
  274. printk(KERN_ERR "jffs_fmfree(): fmc: 0x%p, fm: 0x%p, "
  275.        "fm->nodes: 0x%pn",
  276.        fmc, fm, (fm ? fm->nodes : 0));
  277. return -1;
  278. });
  279. /* Find the reference to the node that is going to be removed
  280.    and remove it.  */
  281. for (ref = fm->nodes, prev = 0; ref; ref = ref->next) {
  282. if (ref->node == node) {
  283. if (prev) {
  284. prev->next = ref->next;
  285. }
  286. else {
  287. fm->nodes = ref->next;
  288. }
  289. kfree(ref);
  290. DJM(no_jffs_node_ref--);
  291. ASSERT(del = 1);
  292. break;
  293. }
  294. prev = ref;
  295. }
  296. /* If the data chunk in the flash memory isn't used anymore
  297.    just mark it as obsolete.  */
  298. if (!fm->nodes) {
  299. /* No node uses this chunk so let's remove it.  */
  300. fmc->used_size -= fm->size;
  301. fmc->dirty_size += fm->size;
  302. #if defined(JFFS_MARK_OBSOLETE) && JFFS_MARK_OBSOLETE
  303. if (jffs_mark_obsolete(fmc, fm->offset) < 0) {
  304. D1(printk("jffs_fmfree(): Failed to mark an on-flash "
  305.   "node obsolete!n"));
  306. return -1;
  307. }
  308. #endif
  309. }
  310. ASSERT(if (!del) {
  311. printk(KERN_WARNING "***jffs_fmfree(): "
  312.        "Didn't delete any node reference!n");
  313. });
  314. return 0;
  315. }
  316. /* This allocation function is used during the initialization of
  317.    the file system.  */
  318. struct jffs_fm *
  319. jffs_fmalloced(struct jffs_fmcontrol *fmc, __u32 offset, __u32 size,
  320.        struct jffs_node *node)
  321. {
  322. struct jffs_fm *fm;
  323. D3(printk("jffs_fmalloced()n"));
  324. if (!(fm = jffs_alloc_fm())) {
  325. D(printk("jffs_fmalloced(0x%p, %u, %u, 0x%p): failed!n",
  326.  fmc, offset, size, node));
  327. return 0;
  328. }
  329. fm->offset = offset;
  330. fm->size = size;
  331. fm->prev = 0;
  332. fm->next = 0;
  333. fm->nodes = 0;
  334. if (node) {
  335. /* `node' exists and it should be associated with the
  336.     jffs_fm structure `fm'.  */
  337. if (!(fm->nodes = (struct jffs_node_ref *)
  338.   kmalloc(sizeof(struct jffs_node_ref),
  339.   GFP_KERNEL))) {
  340. D(printk("jffs_fmalloced(): !fm->nodesn"));
  341. jffs_free_fm(fm);
  342. return 0;
  343. }
  344. DJM(no_jffs_node_ref++);
  345. fm->nodes->node = node;
  346. fm->nodes->next = 0;
  347. fmc->used_size += size;
  348. fmc->free_size -= size;
  349. }
  350. else {
  351. /* If there is no node, then this is just a chunk of dirt.  */
  352. fmc->dirty_size += size;
  353. fmc->free_size -= size;
  354. }
  355. if (fmc->head_extra) {
  356. fm->prev = fmc->tail_extra;
  357. fmc->tail_extra->next = fm;
  358. fmc->tail_extra = fm;
  359. }
  360. else if (!fmc->head) {
  361. fmc->head = fm;
  362. fmc->tail = fm;
  363. }
  364. else if (fmc->tail->offset + fmc->tail->size < offset) {
  365. fmc->head_extra = fm;
  366. fmc->tail_extra = fm;
  367. }
  368. else {
  369. fm->prev = fmc->tail;
  370. fmc->tail->next = fm;
  371. fmc->tail = fm;
  372. }
  373. D3(jffs_print_fmcontrol(fmc));
  374. D3(jffs_print_fm(fm));
  375. return fm;
  376. }
  377. /* Add a new node to an already existing jffs_fm struct.  */
  378. int
  379. jffs_add_node(struct jffs_node *node)
  380. {
  381. struct jffs_node_ref *ref;
  382. D3(printk("jffs_add_node(): ino = %un", node->ino));
  383. ref = (struct jffs_node_ref *)kmalloc(sizeof(struct jffs_node_ref),
  384.       GFP_KERNEL);
  385. if (!ref)
  386. return -ENOMEM;
  387. DJM(no_jffs_node_ref++);
  388. ref->node = node;
  389. ref->next = node->fm->nodes;
  390. node->fm->nodes = ref;
  391. return 0;
  392. }
  393. /* Free a part of some allocated space.  */
  394. void
  395. jffs_fmfree_partly(struct jffs_fmcontrol *fmc, struct jffs_fm *fm, __u32 size)
  396. {
  397. D1(printk("***jffs_fmfree_partly(): fm = 0x%p, fm->nodes = 0x%p, "
  398.   "fm->nodes->node->ino = %u, size = %un",
  399.   fm, (fm ? fm->nodes : 0),
  400.   (!fm ? 0 : (!fm->nodes ? 0 : fm->nodes->node->ino)), size));
  401. if (fm->nodes) {
  402. kfree(fm->nodes);
  403. DJM(no_jffs_node_ref--);
  404. fm->nodes = 0;
  405. }
  406. fmc->used_size -= fm->size;
  407. if (fm == fmc->tail) {
  408. fm->size -= size;
  409. fmc->free_size += size;
  410. }
  411. fmc->dirty_size += fm->size;
  412. }
  413. /* Find the jffs_fm struct that contains the end of the data chunk that
  414.    begins at the logical beginning of the flash memory and spans `size'
  415.    bytes.  If we want to erase a sector of the flash memory, we use this
  416.    function to find where the sector limit cuts a chunk of data.  */
  417. struct jffs_fm *
  418. jffs_cut_node(struct jffs_fmcontrol *fmc, __u32 size)
  419. {
  420. struct jffs_fm *fm;
  421. __u32 pos = 0;
  422. if (size == 0) {
  423. return 0;
  424. }
  425. ASSERT(if (!fmc) {
  426. printk(KERN_ERR "jffs_cut_node(): fmc == NULLn");
  427. return 0;
  428. });
  429. fm = fmc->head;
  430. while (fm) {
  431. pos += fm->size;
  432. if (pos < size) {
  433. fm = fm->next;
  434. }
  435. else if (pos > size) {
  436. break;
  437. }
  438. else {
  439. fm = 0;
  440. break;
  441. }
  442. }
  443. return fm;
  444. }
  445. /* Move the head of the fmc structures and delete the obsolete parts.  */
  446. void
  447. jffs_sync_erase(struct jffs_fmcontrol *fmc, int erased_size)
  448. {
  449. struct jffs_fm *fm;
  450. struct jffs_fm *del;
  451. ASSERT(if (!fmc) {
  452. printk(KERN_ERR "jffs_sync_erase(): fmc == NULLn");
  453. return;
  454. });
  455. fmc->dirty_size -= erased_size;
  456. fmc->free_size += erased_size;
  457. for (fm = fmc->head; fm && (erased_size > 0);) {
  458. if (erased_size >= fm->size) {
  459. erased_size -= fm->size;
  460. del = fm;
  461. fm = fm->next;
  462. fm->prev = 0;
  463. fmc->head = fm;
  464. jffs_free_fm(del);
  465. }
  466. else {
  467. fm->size -= erased_size;
  468. fm->offset += erased_size;
  469. break;
  470. }
  471. }
  472. }
  473. /* Return the oldest used node in the flash memory.  */
  474. struct jffs_node *
  475. jffs_get_oldest_node(struct jffs_fmcontrol *fmc)
  476. {
  477. struct jffs_fm *fm;
  478. struct jffs_node_ref *nref;
  479. struct jffs_node *node = 0;
  480. ASSERT(if (!fmc) {
  481. printk(KERN_ERR "jffs_get_oldest_node(): fmc == NULLn");
  482. return 0;
  483. });
  484. for (fm = fmc->head; fm && !fm->nodes; fm = fm->next);
  485. if (!fm) {
  486. return 0;
  487. }
  488. /* The oldest node is the last one in the reference list.  This list
  489.    shouldn't be too long; just one or perhaps two elements.  */
  490. for (nref = fm->nodes; nref; nref = nref->next) {
  491. node = nref->node;
  492. }
  493. D2(printk("jffs_get_oldest_node(): ino = %u, version = %un",
  494.   (node ? node->ino : 0), (node ? node->version : 0)));
  495. return node;
  496. }
  497. #if defined(JFFS_MARK_OBSOLETE) && JFFS_MARK_OBSOLETE
  498. /* Mark an on-flash node as obsolete.
  499.    Note that this is just an optimization that isn't necessary for the
  500.    filesystem to work.  */
  501. static int
  502. jffs_mark_obsolete(struct jffs_fmcontrol *fmc, __u32 fm_offset)
  503. {
  504. /* The `accurate_pos' holds the position of the accurate byte
  505.    in the jffs_raw_inode structure that we are going to mark
  506.    as obsolete.  */
  507. __u32 accurate_pos = fm_offset + JFFS_RAW_INODE_ACCURATE_OFFSET;
  508. unsigned char zero = 0x00;
  509. size_t len;
  510. D3(printk("jffs_mark_obsolete(): accurate_pos = %un", accurate_pos));
  511. ASSERT(if (!fmc) {
  512. printk(KERN_ERR "jffs_mark_obsolete(): fmc == NULLn");
  513. return -1;
  514. });
  515. /* Write 0x00 to the raw inode's accurate member.  Don't care
  516.    about the return value.  */
  517. MTD_WRITE(fmc->mtd, accurate_pos, 1, &len, &zero);
  518. return 0;
  519. }
  520. #endif /* JFFS_MARK_OBSOLETE  */
  521. /* check if it's possible to erase the wanted range, and if not, return
  522.  * the range that IS erasable, or a negative error code.
  523.  */
  524. long
  525. jffs_flash_erasable_size(struct mtd_info *mtd, __u32 offset, __u32 size)
  526. {
  527.          u_long ssize;
  528. /* assume that sector size for a partition is constant even
  529.  * if it spans more than one chip (you usually put the same
  530.  * type of chips in a system)
  531.  */
  532.         ssize = mtd->erasesize;
  533. if (offset % ssize) {
  534. printk(KERN_WARNING "jffs_flash_erasable_size() given non-aligned offset %x (erasesize %lx)n", offset, ssize);
  535. /* The offset is not sector size aligned.  */
  536. return -1;
  537. }
  538. else if (offset > mtd->size) {
  539. printk(KERN_WARNING "jffs_flash_erasable_size given offset off the end of device (%x > %x)n", offset, mtd->size);
  540. return -2;
  541. }
  542. else if (offset + size > mtd->size) {
  543. printk(KERN_WARNING "jffs_flash_erasable_size() given length which runs off the end of device (ofs %x + len %x = %x, > %x)n", offset,size, offset+size, mtd->size);
  544. return -3;
  545. }
  546. return (size / ssize) * ssize;
  547. }
  548. /* How much dirty flash memory is possible to erase at the moment?  */
  549. long
  550. jffs_erasable_size(struct jffs_fmcontrol *fmc)
  551. {
  552. struct jffs_fm *fm;
  553. __u32 size = 0;
  554. long ret;
  555. ASSERT(if (!fmc) {
  556. printk(KERN_ERR "jffs_erasable_size(): fmc = NULLn");
  557. return -1;
  558. });
  559. if (!fmc->head) {
  560. /* The flash memory is totally empty. No nodes. No dirt.
  561.    Just return.  */
  562. return 0;
  563. }
  564. /* Calculate how much space that is dirty.  */
  565. for (fm = fmc->head; fm && !fm->nodes; fm = fm->next) {
  566. if (size && fm->offset == 0) {
  567. /* We have reached the beginning of the flash.  */
  568. break;
  569. }
  570. size += fm->size;
  571. }
  572. /* Someone's signature contained this:
  573.    There's a fine line between fishing and just standing on
  574.    the shore like an idiot...  */
  575. ret = jffs_flash_erasable_size(fmc->mtd, fmc->head->offset, size);
  576. ASSERT(if (ret < 0) {
  577. printk("jffs_erasable_size: flash_erasable_size() "
  578.        "returned something less than zero (%ld).n", ret);
  579. printk("jffs_erasable_size: offset = 0x%08xn",
  580.        fmc->head->offset);
  581. });
  582. /* If there is dirt on the flash (which is the reason to why
  583.    this function was called in the first place) but no space is
  584.    possible to erase right now, the initial part of the list of
  585.    jffs_fm structs, that hold place for dirty space, could perhaps
  586.    be shortened.  The list's initial "dirty" elements are merged
  587.    into just one large dirty jffs_fm struct.  This operation must
  588.    only be performed if nothing is possible to erase.  Otherwise,
  589.    jffs_clear_end_of_node() won't work as expected.  */
  590. if (ret == 0) {
  591. struct jffs_fm *head = fmc->head;
  592. struct jffs_fm *del;
  593. /* While there are two dirty nodes beside each other.*/
  594. while (head->nodes == 0
  595.        && head->next
  596.        && head->next->nodes == 0) {
  597. del = head->next;
  598. head->size += del->size;
  599. head->next = del->next;
  600. if (del->next) {
  601. del->next->prev = head;
  602. }
  603. jffs_free_fm(del);
  604. }
  605. }
  606. return (ret >= 0 ? ret : 0);
  607. }
  608. struct jffs_fm *jffs_alloc_fm(void)
  609. {
  610. struct jffs_fm *fm;
  611. fm = kmem_cache_alloc(fm_cache,GFP_KERNEL);
  612. DJM(if (fm) no_jffs_fm++;);
  613. return fm;
  614. }
  615. void jffs_free_fm(struct jffs_fm *n)
  616. {
  617. kmem_cache_free(fm_cache,n);
  618. DJM(no_jffs_fm--);
  619. }
  620. struct jffs_node *jffs_alloc_node(void)
  621. {
  622. struct jffs_node *n;
  623. n = (struct jffs_node *)kmem_cache_alloc(node_cache,GFP_KERNEL);
  624. if(n != NULL)
  625. no_jffs_node++;
  626. return n;
  627. }
  628. void jffs_free_node(struct jffs_node *n)
  629. {
  630. kmem_cache_free(node_cache,n);
  631. no_jffs_node--;
  632. }
  633. int jffs_get_node_inuse(void)
  634. {
  635. return no_jffs_node;
  636. }
  637. void
  638. jffs_print_fmcontrol(struct jffs_fmcontrol *fmc)
  639. {
  640. D(printk("struct jffs_fmcontrol: 0x%pn", fmc));
  641. D(printk("{n"));
  642. D(printk("        %u, /* flash_size  */n", fmc->flash_size));
  643. D(printk("        %u, /* used_size  */n", fmc->used_size));
  644. D(printk("        %u, /* dirty_size  */n", fmc->dirty_size));
  645. D(printk("        %u, /* free_size  */n", fmc->free_size));
  646. D(printk("        %u, /* sector_size  */n", fmc->sector_size));
  647. D(printk("        %u, /* min_free_size  */n", fmc->min_free_size));
  648. D(printk("        %u, /* max_chunk_size  */n", fmc->max_chunk_size));
  649. D(printk("        0x%p, /* mtd  */n", fmc->mtd));
  650. D(printk("        0x%p, /* head  */    "
  651.  "(head->offset = 0x%08x)n",
  652.  fmc->head, (fmc->head ? fmc->head->offset : 0)));
  653. D(printk("        0x%p, /* tail  */    "
  654.  "(tail->offset + tail->size = 0x%08x)n",
  655.  fmc->tail,
  656.  (fmc->tail ? fmc->tail->offset + fmc->tail->size : 0)));
  657. D(printk("        0x%p, /* head_extra  */n", fmc->head_extra));
  658. D(printk("        0x%p, /* tail_extra  */n", fmc->tail_extra));
  659. D(printk("}n"));
  660. }
  661. void
  662. jffs_print_fm(struct jffs_fm *fm)
  663. {
  664. D(printk("struct jffs_fm: 0x%pn", fm));
  665. D(printk("{n"));
  666. D(printk("       0x%08x, /* offset  */n", fm->offset));
  667. D(printk("       %u, /* size  */n", fm->size));
  668. D(printk("       0x%p, /* prev  */n", fm->prev));
  669. D(printk("       0x%p, /* next  */n", fm->next));
  670. D(printk("       0x%p, /* nodes  */n", fm->nodes));
  671. D(printk("}n"));
  672. }
  673. void
  674. jffs_print_node_ref(struct jffs_node_ref *ref)
  675. {
  676. D(printk("struct jffs_node_ref: 0x%pn", ref));
  677. D(printk("{n"));
  678. D(printk("       0x%p, /* node  */n", ref->node));
  679. D(printk("       0x%p, /* next  */n", ref->next));
  680. D(printk("}n"));
  681. }