Lines Matching refs:nbh
41 struct erofs_buffer_head *nbh = list_next_entry(bh, list); in erofs_bh_flush_generic_write() local
44 DBG_BUGON(nbh->off < bh->off); in erofs_bh_flush_generic_write()
45 return dev_write(buf, offset, nbh->off - bh->off); in erofs_bh_flush_generic_write()
221 struct erofs_buffer_head *nbh; in erofs_battach() local
233 nbh = malloc(sizeof(*nbh)); in erofs_battach()
234 if (!nbh) in erofs_battach()
237 ret = __erofs_battach(bb, nbh, size, alignsize, 0, false); in erofs_battach()
239 free(nbh); in erofs_battach()
242 return nbh; in erofs_battach()
282 struct erofs_buffer_head *bh, *nbh; in erofs_bflush() local
296 list_for_each_entry_safe(bh, nbh, &p->buffers.list, list) { in erofs_bflush()