Lines Matching refs:list
247 jffs2_dbg(1, "%s(): Erase block at 0x%08x has already been placed in a list\n",
261 list_add_tail(&jeb->list, &c->very_dirty_list);
266 list_add_tail(&jeb->list, &c->dirty_list);
272 list_add_tail(&jeb->list, &c->clean_list);
284 /* Take the next block off the 'free' list */
292 ejeb = list_entry(c->erasable_list.next, struct jffs2_eraseblock, list);
293 list_move_tail(&ejeb->list, &c->erase_pending_list);
336 c->nextblock = list_entry(next, struct jffs2_eraseblock, list);
489 * jffs2_add_physical_node_ref - add a physical node reference to the list
544 list_add_tail(&jeb->list, &c->clean_list);
571 jffs2_dbg(1, "%p is on list at %p\n", obj, head);
653 if (on_list(&jeb->list, &c->bad_used_list)) {
690 jffs2_dbg(2, "Not moving nextblock 0x%08x to dirty/erase_pending list\n",
698 jffs2_dbg(1, "Eraseblock at 0x%08x completely dirtied. Removing from (dirty?) list...\n",
700 list_del(&jeb->list);
704 list_add_tail(&jeb->list, &c->erasable_pending_wbuf_list);
710 list_add_tail(&jeb->list, &c->erase_pending_list);
717 list_add_tail(&jeb->list, &c->erasable_list);
725 jffs2_dbg(1, "Eraseblock at 0x%08x is freshly dirtied. Removing from clean list...\n",
727 list_del(&jeb->list);
729 list_add_tail(&jeb->list, &c->dirty_list);
732 jffs2_dbg(1, "Eraseblock at 0x%08x is now very dirty. Removing from dirty list...\n",
734 list_del(&jeb->list);
736 list_add_tail(&jeb->list, &c->very_dirty_list);
794 associated with any inode. Remove them from the per-inode list.
868 list_for_each_entry(jeb, &c->very_dirty_list, list) {