Lines Matching defs:ino
42 uint32_t ino;
48 static int jffs2_wbuf_pending_for_ino(struct jffs2_sb_info *c, uint32_t ino)
56 /* If ino == 0, _any_ non-GC writes mean 'yes' */
57 if (this && !ino)
62 if (this->ino == ino)
85 static void jffs2_wbuf_dirties_inode(struct jffs2_sb_info *c, uint32_t ino)
92 if (jffs2_wbuf_pending_for_ino(c, ino))
102 new->ino = ino;
505 f = jffs2_gc_fetch_inode(c, ic->ino, !ic->pino_nlink);
508 JFFS2_ERROR("Failed to iget() ino #%u, err %ld\n",
509 ic->ino, PTR_ERR(f));
522 JFFS2_ERROR("Inode #%u is in strange state %d!\n", ic->ino, ic->state);
699 If ino arg is zero, do it if _any_ real (i.e. not GC) writes are
700 outstanding. If ino arg non-zero, do it only if a write for the
702 int jffs2_flush_wbuf_gc(struct jffs2_sb_info *c, uint32_t ino)
708 jffs2_dbg(1, "jffs2_flush_wbuf_gc() called for ino #%u...\n", ino);
714 if (!jffs2_wbuf_pending_for_ino(c, ino)) {
715 jffs2_dbg(1, "Ino #%d not pending in wbuf. Returning\n", ino);
796 uint32_t ino)
901 * remember that the wbuf affects this ino
911 if (c->wbuf_len && ino)
912 jffs2_wbuf_dirties_inode(c, ino);