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

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: gc.c,v 1.52.2.5 2002/10/10 13:18:38 dwmw2 Exp $
  35.  *
  36.  */
  37. #include <linux/kernel.h>
  38. #include <linux/mtd/mtd.h>
  39. #include <linux/slab.h>
  40. #include <linux/jffs2.h>
  41. #include <linux/sched.h>
  42. #include <linux/interrupt.h>
  43. #include <linux/pagemap.h>
  44. #include "nodelist.h"
  45. #include "crc32.h"
  46. static int jffs2_garbage_collect_metadata(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, 
  47. struct inode *inode, struct jffs2_full_dnode *fd);
  48. static int jffs2_garbage_collect_dirent(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, 
  49. struct inode *inode, struct jffs2_full_dirent *fd);
  50. static int jffs2_garbage_collect_deletion_dirent(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, 
  51. struct inode *inode, struct jffs2_full_dirent *fd);
  52. static int jffs2_garbage_collect_hole(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
  53.       struct inode *indeo, struct jffs2_full_dnode *fn,
  54.       __u32 start, __u32 end);
  55. static int jffs2_garbage_collect_dnode(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
  56.        struct inode *inode, struct jffs2_full_dnode *fn,
  57.        __u32 start, __u32 end);
  58. /* Called with erase_completion_lock held */
  59. static struct jffs2_eraseblock *jffs2_find_gc_block(struct jffs2_sb_info *c)
  60. {
  61. struct jffs2_eraseblock *ret;
  62. struct list_head *nextlist = NULL;
  63. /* Pick an eraseblock to garbage collect next. This is where we'll
  64.    put the clever wear-levelling algorithms. Eventually.  */
  65. if (!list_empty(&c->bad_used_list) && c->nr_free_blocks > JFFS2_RESERVED_BLOCKS_GCBAD) {
  66. D1(printk(KERN_DEBUG "Picking block from bad_used_list to GC nextn"));
  67. nextlist = &c->bad_used_list;
  68. } else if (jiffies % 100 && !list_empty(&c->dirty_list)) {
  69. /* Most of the time, pick one off the dirty list */
  70. D1(printk(KERN_DEBUG "Picking block from dirty_list to GC nextn"));
  71. nextlist = &c->dirty_list;
  72. } else if (!list_empty(&c->clean_list)) {
  73. D1(printk(KERN_DEBUG "Picking block from clean_list to GC nextn"));
  74. nextlist = &c->clean_list;
  75. } else if (!list_empty(&c->dirty_list)) {
  76. D1(printk(KERN_DEBUG "Picking block from dirty_list to GC next (clean_list was empty)n"));
  77. nextlist = &c->dirty_list;
  78. } else {
  79. /* Eep. Both were empty */
  80. printk(KERN_NOTICE "jffs2: No clean _or_ dirty blocks to GC from! Where are they all?n");
  81. return NULL;
  82. }
  83. ret = list_entry(nextlist->next, struct jffs2_eraseblock, list);
  84. list_del(&ret->list);
  85. c->gcblock = ret;
  86. ret->gc_node = ret->first_node;
  87. if (!ret->gc_node) {
  88. printk(KERN_WARNING "Eep. ret->gc_node for block at 0x%08x is NULLn", ret->offset);
  89. BUG();
  90. }
  91. return ret;
  92. }
  93. /* jffs2_garbage_collect_pass
  94.  * Make a single attempt to progress GC. Move one node, and possibly
  95.  * start erasing one eraseblock.
  96.  */
  97. int jffs2_garbage_collect_pass(struct jffs2_sb_info *c)
  98. {
  99. struct jffs2_eraseblock *jeb;
  100. struct jffs2_inode_info *f;
  101. struct jffs2_raw_node_ref *raw;
  102. struct jffs2_node_frag *frag;
  103. struct jffs2_full_dnode *fn = NULL;
  104. struct jffs2_full_dirent *fd;
  105. __u32 start = 0, end = 0, nrfrags = 0;
  106. __u32 inum;
  107. struct inode *inode;
  108. int ret = 0;
  109. if (down_interruptible(&c->alloc_sem))
  110. return -EINTR;
  111. spin_lock_bh(&c->erase_completion_lock);
  112. /* First, work out which block we're garbage-collecting */
  113. jeb = c->gcblock;
  114. if (!jeb)
  115. jeb = jffs2_find_gc_block(c);
  116. if (!jeb) {
  117. printk(KERN_NOTICE "jffs2: Couldn't find erase block to garbage collect!n");
  118. spin_unlock_bh(&c->erase_completion_lock);
  119. up(&c->alloc_sem);
  120. return -EIO;
  121. }
  122. D1(printk(KERN_DEBUG "garbage collect from block at phys 0x%08xn", jeb->offset));
  123. if (!jeb->used_size) {
  124. up(&c->alloc_sem);
  125. goto eraseit;
  126. }
  127. raw = jeb->gc_node;
  128. while(raw->flash_offset & 1) {
  129. D1(printk(KERN_DEBUG "Node at 0x%08x is obsolete... skippingn", raw->flash_offset &~3));
  130. jeb->gc_node = raw = raw->next_phys;
  131. if (!raw) {
  132. printk(KERN_WARNING "eep. End of raw list while still supposedly nodes to GCn");
  133. printk(KERN_WARNING "erase block at 0x%08x. free_size 0x%08x, dirty_size 0x%08x, used_size 0x%08xn", 
  134.        jeb->offset, jeb->free_size, jeb->dirty_size, jeb->used_size);
  135. spin_unlock_bh(&c->erase_completion_lock);
  136. up(&c->alloc_sem);
  137. BUG();
  138. }
  139. }
  140. D1(printk(KERN_DEBUG "Going to garbage collect node at 0x%08xn", raw->flash_offset &~3));
  141. if (!raw->next_in_ino) {
  142. /* Inode-less node. Clean marker, snapshot or something like that */
  143. spin_unlock_bh(&c->erase_completion_lock);
  144. jffs2_mark_node_obsolete(c, raw);
  145. up(&c->alloc_sem);
  146. goto eraseit_lock;
  147. }
  148.      
  149. inum = jffs2_raw_ref_to_inum(raw);
  150. D1(printk(KERN_DEBUG "Inode number is #%un", inum));
  151. spin_unlock_bh(&c->erase_completion_lock);
  152. D1(printk(KERN_DEBUG "jffs2_garbage_collect_pass collecting from block @0x%08x. Node @0x%08x, ino #%un", jeb->offset, raw->flash_offset&~3, inum));
  153. inode = iget(OFNI_BS_2SFFJ(c), inum);
  154. if (is_bad_inode(inode)) {
  155. printk(KERN_NOTICE "Eep. read_inode() failed for ino #%un", inum);
  156. /* NB. This will happen again. We need to do something appropriate here. */
  157. up(&c->alloc_sem);
  158. iput(inode);
  159. return -EIO;
  160. }
  161. f = JFFS2_INODE_INFO(inode);
  162. down(&f->sem);
  163. /* Now we have the lock for this inode. Check that it's still the one at the head
  164.    of the list. */
  165. if (raw->flash_offset & 1) {
  166. D1(printk(KERN_DEBUG "node to be GC'd was obsoleted in the meantime.n"));
  167. /* They'll call again */
  168. goto upnout;
  169. }
  170. /* OK. Looks safe. And nobody can get us now because we have the semaphore. Move the block */
  171. if (f->metadata && f->metadata->raw == raw) {
  172. fn = f->metadata;
  173. ret = jffs2_garbage_collect_metadata(c, jeb, inode, fn);
  174. goto upnout;
  175. }
  176. for (frag = f->fraglist; frag; frag = frag->next) {
  177. if (frag->node && frag->node->raw == raw) {
  178. fn = frag->node;
  179. end = frag->ofs + frag->size;
  180. if (!nrfrags++)
  181. start = frag->ofs;
  182. if (nrfrags == frag->node->frags)
  183. break; /* We've found them all */
  184. }
  185. }
  186. if (fn) {
  187. /* We found a datanode. Do the GC */
  188. if((start >> PAGE_CACHE_SHIFT) < ((end-1) >> PAGE_CACHE_SHIFT)) {
  189. /* It crosses a page boundary. Therefore, it must be a hole. */
  190. ret = jffs2_garbage_collect_hole(c, jeb, inode, fn, start, end);
  191. } else {
  192. /* It could still be a hole. But we GC the page this way anyway */
  193. ret = jffs2_garbage_collect_dnode(c, jeb, inode, fn, start, end);
  194. }
  195. goto upnout;
  196. }
  197. /* Wasn't a dnode. Try dirent */
  198. for (fd = f->dents; fd; fd=fd->next) {
  199. if (fd->raw == raw)
  200. break;
  201. }
  202. if (fd && fd->ino) {
  203. ret = jffs2_garbage_collect_dirent(c, jeb, inode, fd);
  204. } else if (fd) {
  205. ret = jffs2_garbage_collect_deletion_dirent(c, jeb, inode, fd);
  206. } else {
  207. printk(KERN_WARNING "Raw node at 0x%08x wasn't in node lists for ino #%lun", raw->flash_offset&~3, inode->i_ino);
  208. if (raw->flash_offset & 1) {
  209. printk(KERN_WARNING "But it's obsolete so we don't mind too muchn");
  210. } else {
  211. ret = -EIO;
  212. }
  213. }
  214.  upnout:
  215. up(&f->sem);
  216. up(&c->alloc_sem);
  217. iput(inode);
  218.  eraseit_lock:
  219. /* If we've finished this block, start it erasing */
  220. spin_lock_bh(&c->erase_completion_lock);
  221.  eraseit:
  222. if (c->gcblock && !c->gcblock->used_size) {
  223. D1(printk(KERN_DEBUG "Block at 0x%08x completely obsoleted by GC. Moving to erase_pending_listn", c->gcblock->offset));
  224. /* We're GC'ing an empty block? */
  225. list_add_tail(&c->gcblock->list, &c->erase_pending_list);
  226. c->gcblock = NULL;
  227. c->nr_erasing_blocks++;
  228. jffs2_erase_pending_trigger(c);
  229. }
  230. spin_unlock_bh(&c->erase_completion_lock);
  231. return ret;
  232. }
  233. static int jffs2_garbage_collect_metadata(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, 
  234. struct inode *inode, struct jffs2_full_dnode *fn)
  235. {
  236. struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
  237. struct jffs2_full_dnode *new_fn;
  238. struct jffs2_raw_inode ri;
  239. unsigned short dev;
  240. char *mdata = NULL, mdatalen = 0;
  241. __u32 alloclen, phys_ofs;
  242. int ret;
  243. if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) {
  244. /* For these, we don't actually need to read the old node */
  245. dev =  (MAJOR(to_kdev_t(inode->i_rdev)) << 8) | 
  246. MINOR(to_kdev_t(inode->i_rdev));
  247. mdata = (char *)&dev;
  248. mdatalen = sizeof(dev);
  249. D1(printk(KERN_DEBUG "jffs2_garbage_collect_metadata(): Writing %d bytes of kdev_tn", mdatalen));
  250. } else if (S_ISLNK(inode->i_mode)) {
  251. mdatalen = fn->size;
  252. mdata = kmalloc(fn->size, GFP_KERNEL);
  253. if (!mdata) {
  254. printk(KERN_WARNING "kmalloc of mdata failed in jffs2_garbage_collect_metadata()n");
  255. return -ENOMEM;
  256. }
  257. ret = jffs2_read_dnode(c, fn, mdata, 0, mdatalen);
  258. if (ret) {
  259. printk(KERN_WARNING "read of old metadata failed in jffs2_garbage_collect_metadata(): %dn", ret);
  260. kfree(mdata);
  261. return ret;
  262. }
  263. D1(printk(KERN_DEBUG "jffs2_garbage_collect_metadata(): Writing %d bites of symlink targetn", mdatalen));
  264. }
  265. ret = jffs2_reserve_space_gc(c, sizeof(ri) + mdatalen, &phys_ofs, &alloclen);
  266. if (ret) {
  267. printk(KERN_WARNING "jffs2_reserve_space_gc of %d bytes for garbage_collect_metadata failed: %dn",
  268.        sizeof(ri)+ mdatalen, ret);
  269. goto out;
  270. }
  271. memset(&ri, 0, sizeof(ri));
  272. ri.magic = JFFS2_MAGIC_BITMASK;
  273. ri.nodetype = JFFS2_NODETYPE_INODE;
  274. ri.totlen = sizeof(ri) + mdatalen;
  275. ri.hdr_crc = crc32(0, &ri, sizeof(struct jffs2_unknown_node)-4);
  276. ri.ino = inode->i_ino;
  277. ri.version = ++f->highest_version;
  278. ri.mode = inode->i_mode;
  279. ri.uid = inode->i_uid;
  280. ri.gid = inode->i_gid;
  281. ri.isize = inode->i_size;
  282. ri.atime = inode->i_atime;
  283. ri.ctime = inode->i_ctime;
  284. ri.mtime = inode->i_mtime;
  285. ri.offset = 0;
  286. ri.csize = mdatalen;
  287. ri.dsize = mdatalen;
  288. ri.compr = JFFS2_COMPR_NONE;
  289. ri.node_crc = crc32(0, &ri, sizeof(ri)-8);
  290. ri.data_crc = crc32(0, mdata, mdatalen);
  291. new_fn = jffs2_write_dnode(inode, &ri, mdata, mdatalen, phys_ofs, NULL);
  292. if (IS_ERR(new_fn)) {
  293. printk(KERN_WARNING "Error writing new dnode: %ldn", PTR_ERR(new_fn));
  294. ret = PTR_ERR(new_fn);
  295. goto out;
  296. }
  297. jffs2_mark_node_obsolete(c, fn->raw);
  298. jffs2_free_full_dnode(fn);
  299. f->metadata = new_fn;
  300.  out:
  301. if (S_ISLNK(inode->i_mode))
  302. kfree(mdata);
  303. return ret;
  304. }
  305. static int jffs2_garbage_collect_dirent(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, 
  306. struct inode *inode, struct jffs2_full_dirent *fd)
  307. {
  308. struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
  309. struct jffs2_full_dirent *new_fd;
  310. struct jffs2_raw_dirent rd;
  311. __u32 alloclen, phys_ofs;
  312. int ret;
  313. rd.magic = JFFS2_MAGIC_BITMASK;
  314. rd.nodetype = JFFS2_NODETYPE_DIRENT;
  315. rd.nsize = strlen(fd->name);
  316. rd.totlen = sizeof(rd) + rd.nsize;
  317. rd.hdr_crc = crc32(0, &rd, sizeof(struct jffs2_unknown_node)-4);
  318. rd.pino = inode->i_ino;
  319. rd.version = ++f->highest_version;
  320. rd.ino = fd->ino;
  321. rd.mctime = max(inode->i_mtime, inode->i_ctime);
  322. rd.type = fd->type;
  323. rd.node_crc = crc32(0, &rd, sizeof(rd)-8);
  324. rd.name_crc = crc32(0, fd->name, rd.nsize);
  325. ret = jffs2_reserve_space_gc(c, sizeof(rd)+rd.nsize, &phys_ofs, &alloclen);
  326. if (ret) {
  327. printk(KERN_WARNING "jffs2_reserve_space_gc of %d bytes for garbage_collect_dirent failed: %dn",
  328.        sizeof(rd)+rd.nsize, ret);
  329. return ret;
  330. }
  331. new_fd = jffs2_write_dirent(inode, &rd, fd->name, rd.nsize, phys_ofs, NULL);
  332. if (IS_ERR(new_fd)) {
  333. printk(KERN_WARNING "jffs2_write_dirent in garbage_collect_dirent failed: %ldn", PTR_ERR(new_fd));
  334. return PTR_ERR(new_fd);
  335. }
  336. jffs2_add_fd_to_list(c, new_fd, &f->dents);
  337. return 0;
  338. }
  339. static int jffs2_garbage_collect_deletion_dirent(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, 
  340. struct inode *inode, struct jffs2_full_dirent *fd)
  341. {
  342. struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
  343. struct jffs2_full_dirent **fdp = &f->dents;
  344. int found = 0;
  345. /* FIXME: When we run on NAND flash, we need to work out whether
  346.    this deletion dirent is still needed to actively delete a
  347.    'real' dirent with the same name that's still somewhere else
  348.    on the flash. For now, we know that we've actually obliterated
  349.    all the older dirents when they became obsolete, so we didn't
  350.    really need to write the deletion to flash in the first place.
  351. */
  352. while (*fdp) {
  353. if ((*fdp) == fd) {
  354. found = 1;
  355. *fdp = fd->next;
  356. break;
  357. }
  358. fdp = &(*fdp)->next;
  359. }
  360. if (!found) {
  361. printk(KERN_WARNING "Deletion dirent "%s" not found in list for ino #%lun", fd->name, inode->i_ino);
  362. }
  363. jffs2_mark_node_obsolete(c, fd->raw);
  364. jffs2_free_full_dirent(fd);
  365. return 0;
  366. }
  367. static int jffs2_garbage_collect_hole(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
  368.       struct inode *inode, struct jffs2_full_dnode *fn,
  369.       __u32 start, __u32 end)
  370. {
  371. struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
  372. struct jffs2_raw_inode ri;
  373. struct jffs2_node_frag *frag;
  374. struct jffs2_full_dnode *new_fn;
  375. __u32 alloclen, phys_ofs;
  376. int ret;
  377. D1(printk(KERN_DEBUG "Writing replacement hole node for ino #%lu from offset 0x%x to 0x%xn",
  378.   inode->i_ino, start, end));
  379. memset(&ri, 0, sizeof(ri));
  380. if(fn->frags > 1) {
  381. size_t readlen;
  382. __u32 crc;
  383. /* It's partially obsoleted by a later write. So we have to 
  384.    write it out again with the _same_ version as before */
  385. ret = c->mtd->read(c->mtd, fn->raw->flash_offset & ~3, sizeof(ri), &readlen, (char *)&ri);
  386. if (readlen != sizeof(ri) || ret) {
  387. printk(KERN_WARNING "Node read failed in jffs2_garbage_collect_hole. Ret %d, retlen %d. Data will be lost by writing new hold noden", ret, readlen);
  388. goto fill;
  389. }
  390. if (ri.nodetype != JFFS2_NODETYPE_INODE) {
  391. printk(KERN_WARNING "jffs2_garbage_collect_hole: Node at 0x%08x had node type 0x%04x instead of JFFS2_NODETYPE_INODE(0x%04x)n",
  392.        fn->raw->flash_offset & ~3, ri.nodetype, JFFS2_NODETYPE_INODE);
  393. return -EIO;
  394. }
  395. if (ri.totlen != sizeof(ri)) {
  396. printk(KERN_WARNING "jffs2_garbage_collect_hole: Node at 0x%08x had totlen 0x%x instead of expected 0x%xn",
  397.        fn->raw->flash_offset & ~3, ri.totlen, sizeof(ri));
  398. return -EIO;
  399. }
  400. crc = crc32(0, &ri, sizeof(ri)-8);
  401. if (crc != ri.node_crc) {
  402. printk(KERN_WARNING "jffs2_garbage_collect_hole: Node at 0x%08x had CRC 0x%08x which doesn't match calculated CRC 0x%08xn",
  403.        fn->raw->flash_offset & ~3, ri.node_crc, crc);
  404. /* FIXME: We could possibly deal with this by writing new holes for each frag */
  405. printk(KERN_WARNING "Data in the range 0x%08x to 0x%08x of inode #%lu will be lostn", 
  406.        start, end, inode->i_ino);
  407. goto fill;
  408. }
  409. if (ri.compr != JFFS2_COMPR_ZERO) {
  410. printk(KERN_WARNING "jffs2_garbage_collect_hole: Node 0x%08x wasn't a hole node!n", fn->raw->flash_offset & ~3);
  411. printk(KERN_WARNING "Data in the range 0x%08x to 0x%08x of inode #%lu will be lostn", 
  412.        start, end, inode->i_ino);
  413. goto fill;
  414. }
  415. } else {
  416. fill:
  417. ri.magic = JFFS2_MAGIC_BITMASK;
  418. ri.nodetype = JFFS2_NODETYPE_INODE;
  419. ri.totlen = sizeof(ri);
  420. ri.hdr_crc = crc32(0, &ri, sizeof(struct jffs2_unknown_node)-4);
  421. ri.ino = inode->i_ino;
  422. ri.version = ++f->highest_version;
  423. ri.offset = start;
  424. ri.dsize = end - start;
  425. ri.csize = 0;
  426. ri.compr = JFFS2_COMPR_ZERO;
  427. }
  428. ri.mode = inode->i_mode;
  429. ri.uid = inode->i_uid;
  430. ri.gid = inode->i_gid;
  431. ri.isize = inode->i_size;
  432. ri.atime = inode->i_atime;
  433. ri.ctime = inode->i_ctime;
  434. ri.mtime = inode->i_mtime;
  435. ri.data_crc = 0;
  436. ri.node_crc = crc32(0, &ri, sizeof(ri)-8);
  437. ret = jffs2_reserve_space_gc(c, sizeof(ri), &phys_ofs, &alloclen);
  438. if (ret) {
  439. printk(KERN_WARNING "jffs2_reserve_space_gc of %d bytes for garbage_collect_hole failed: %dn",
  440.        sizeof(ri), ret);
  441. return ret;
  442. }
  443. new_fn = jffs2_write_dnode(inode, &ri, NULL, 0, phys_ofs, NULL);
  444. if (IS_ERR(new_fn)) {
  445. printk(KERN_WARNING "Error writing new hole node: %ldn", PTR_ERR(new_fn));
  446. return PTR_ERR(new_fn);
  447. }
  448. if (ri.version == f->highest_version) {
  449. jffs2_add_full_dnode_to_inode(c, f, new_fn);
  450. if (f->metadata) {
  451. jffs2_mark_node_obsolete(c, f->metadata->raw);
  452. jffs2_free_full_dnode(f->metadata);
  453. f->metadata = NULL;
  454. }
  455. return 0;
  456. }
  457. /* 
  458.  * We should only get here in the case where the node we are
  459.  * replacing had more than one frag, so we kept the same version
  460.  * number as before. (Except in case of error -- see 'goto fill;' 
  461.  * above.)
  462.  */
  463. D1(if(fn->frags <= 1) {
  464. printk(KERN_WARNING "jffs2_garbage_collect_hole: Replacing fn with %d frag(s) but new ver %d != highest_version %d of ino #%dn",
  465.        fn->frags, ri.version, f->highest_version, ri.ino);
  466. });
  467. for (frag = f->fraglist; frag; frag = frag->next) {
  468. if (frag->ofs > fn->size + fn->ofs)
  469. break;
  470. if (frag->node == fn) {
  471. frag->node = new_fn;
  472. new_fn->frags++;
  473. fn->frags--;
  474. }
  475. }
  476. if (fn->frags) {
  477. printk(KERN_WARNING "jffs2_garbage_collect_hole: Old node still has frags!n");
  478. BUG();
  479. }
  480. if (!new_fn->frags) {
  481. printk(KERN_WARNING "jffs2_garbage_collect_hole: New node has no frags!n");
  482. BUG();
  483. }
  484. jffs2_mark_node_obsolete(c, fn->raw);
  485. jffs2_free_full_dnode(fn);
  486. return 0;
  487. }
  488. static int jffs2_garbage_collect_dnode(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
  489.        struct inode *inode, struct jffs2_full_dnode *fn,
  490.        __u32 start, __u32 end)
  491. {
  492. struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
  493. struct jffs2_full_dnode *new_fn;
  494. struct jffs2_raw_inode ri;
  495. __u32 alloclen, phys_ofs, offset, orig_end;
  496. int ret = 0;
  497. unsigned char *comprbuf = NULL, *writebuf;
  498. struct page *pg;
  499. unsigned char *pg_ptr;
  500. memset(&ri, 0, sizeof(ri));
  501. D1(printk(KERN_DEBUG "Writing replacement dnode for ino #%lu from offset 0x%x to 0x%xn",
  502.   inode->i_ino, start, end));
  503. orig_end = end;
  504. /* If we're looking at the last node in the block we're
  505.    garbage-collecting, we allow ourselves to merge as if the
  506.    block was already erasing. We're likely to be GC'ing a
  507.    partial page, and the next block we GC is likely to have
  508.    the other half of this page right at the beginning, which
  509.    means we'd expand it _then_, as nr_erasing_blocks would have
  510.    increased since we checked, and in doing so would obsolete 
  511.    the partial node which we'd have written here. Meaning that 
  512.    the GC would churn and churn, and just leave dirty blocks in
  513.    it's wake.
  514. */
  515. if(c->nr_free_blocks + c->nr_erasing_blocks > JFFS2_RESERVED_BLOCKS_GCMERGE - (fn->raw->next_phys?0:1)) {
  516. /* Shitloads of space */
  517. /* FIXME: Integrate this properly with GC calculations */
  518. start &= ~(PAGE_CACHE_SIZE-1);
  519. end = min_t(__u32, start + PAGE_CACHE_SIZE, inode->i_size);
  520. D1(printk(KERN_DEBUG "Plenty of free space, so expanding to write from offset 0x%x to 0x%xn",
  521.   start, end));
  522. if (end < orig_end) {
  523. printk(KERN_WARNING "Eep. jffs2_garbage_collect_dnode extended node to write, but it got smaller: start 0x%x, orig_end 0x%x, end 0x%xn", start, orig_end, end);
  524. end = orig_end;
  525. }
  526. }
  527. /* First, use readpage() to read the appropriate page into the page cache */
  528. /* Q: What happens if we actually try to GC the _same_ page for which commit_write()
  529.  *    triggered garbage collection in the first place?
  530.  * A: I _think_ it's OK. read_cache_page shouldn't deadlock, we'll write out the
  531.  *    page OK. We'll actually write it out again in commit_write, which is a little
  532.  *    suboptimal, but at least we're correct.
  533.  */
  534. pg = read_cache_page(inode->i_mapping, start >> PAGE_CACHE_SHIFT, (void *)jffs2_do_readpage_unlock, inode);
  535. if (IS_ERR(pg)) {
  536. printk(KERN_WARNING "read_cache_page() returned error: %ldn", PTR_ERR(pg));
  537. return PTR_ERR(pg);
  538. }
  539. pg_ptr = (char *)kmap(pg);
  540. comprbuf = kmalloc(end - start, GFP_KERNEL);
  541. offset = start;
  542. while(offset < orig_end) {
  543. __u32 datalen;
  544. __u32 cdatalen;
  545. char comprtype = JFFS2_COMPR_NONE;
  546. ret = jffs2_reserve_space_gc(c, sizeof(ri) + JFFS2_MIN_DATA_LEN, &phys_ofs, &alloclen);
  547. if (ret) {
  548. printk(KERN_WARNING "jffs2_reserve_space_gc of %d bytes for garbage_collect_dnode failed: %dn",
  549.        sizeof(ri)+ JFFS2_MIN_DATA_LEN, ret);
  550. break;
  551. }
  552. cdatalen = min(alloclen - sizeof(ri), end - offset);
  553. datalen = end - offset;
  554. writebuf = pg_ptr + (offset & (PAGE_CACHE_SIZE -1));
  555. if (comprbuf) {
  556. comprtype = jffs2_compress(writebuf, comprbuf, &datalen, &cdatalen);
  557. }
  558. if (comprtype) {
  559. writebuf = comprbuf;
  560. } else {
  561. datalen = cdatalen;
  562. }
  563. ri.magic = JFFS2_MAGIC_BITMASK;
  564. ri.nodetype = JFFS2_NODETYPE_INODE;
  565. ri.totlen = sizeof(ri) + cdatalen;
  566. ri.hdr_crc = crc32(0, &ri, sizeof(struct jffs2_unknown_node)-4);
  567. ri.ino = inode->i_ino;
  568. ri.version = ++f->highest_version;
  569. ri.mode = inode->i_mode;
  570. ri.uid = inode->i_uid;
  571. ri.gid = inode->i_gid;
  572. ri.isize = inode->i_size;
  573. ri.atime = inode->i_atime;
  574. ri.ctime = inode->i_ctime;
  575. ri.mtime = inode->i_mtime;
  576. ri.offset = offset;
  577. ri.csize = cdatalen;
  578. ri.dsize = datalen;
  579. ri.compr = comprtype;
  580. ri.node_crc = crc32(0, &ri, sizeof(ri)-8);
  581. ri.data_crc = crc32(0, writebuf, cdatalen);
  582. new_fn = jffs2_write_dnode(inode, &ri, writebuf, cdatalen, phys_ofs, NULL);
  583. if (IS_ERR(new_fn)) {
  584. printk(KERN_WARNING "Error writing new dnode: %ldn", PTR_ERR(new_fn));
  585. ret = PTR_ERR(new_fn);
  586. break;
  587. }
  588. ret = jffs2_add_full_dnode_to_inode(c, f, new_fn);
  589. offset += datalen;
  590. if (f->metadata) {
  591. jffs2_mark_node_obsolete(c, f->metadata->raw);
  592. jffs2_free_full_dnode(f->metadata);
  593. f->metadata = NULL;
  594. }
  595. }
  596. if (comprbuf) kfree(comprbuf);
  597. kunmap(pg);
  598. /* XXX: Does the page get freed automatically? */
  599. /* AAA: Judging by the unmount getting stuck in __wait_on_page, nope. */
  600. page_cache_release(pg);
  601. return ret;
  602. }