jffs_fm.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:22k
源码类别:

嵌入式Linux

开发平台:

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