Lines Matching refs:this
50 struct jffs2_inodirty *this = c->wbuf_inodes; in jffs2_wbuf_pending_for_ino() local
53 if (this == &inodirty_nomem) in jffs2_wbuf_pending_for_ino()
57 if (this && !ino) in jffs2_wbuf_pending_for_ino()
61 while (this) { in jffs2_wbuf_pending_for_ino()
62 if (this->ino == ino) in jffs2_wbuf_pending_for_ino()
64 this = this->next; in jffs2_wbuf_pending_for_ino()
71 struct jffs2_inodirty *this; in jffs2_clear_wbuf_ino_list() local
73 this = c->wbuf_inodes; in jffs2_clear_wbuf_ino_list()
75 if (this != &inodirty_nomem) { in jffs2_clear_wbuf_ino_list()
76 while (this) { in jffs2_clear_wbuf_ino_list()
77 struct jffs2_inodirty *next = this->next; in jffs2_clear_wbuf_ino_list()
78 kfree(this); in jffs2_clear_wbuf_ino_list()
79 this = next; in jffs2_clear_wbuf_ino_list()
110 struct list_head *this, *next; in jffs2_refile_wbuf_blocks() local
116 list_for_each_safe(this, next, &c->erasable_pending_wbuf_list) { in jffs2_refile_wbuf_blocks()
117 struct jffs2_eraseblock *jeb = list_entry(this, struct jffs2_eraseblock, list); in jffs2_refile_wbuf_blocks()
121 list_del(this); in jffs2_refile_wbuf_blocks()