Lines Matching defs:ucleb
507 struct ubifs_unclean_leb *ucleb;
511 ucleb = kzalloc(sizeof(struct ubifs_unclean_leb), GFP_NOFS);
512 if (!ucleb)
514 ucleb->lnum = lnum;
515 ucleb->endpt = endpt;
516 list_add_tail(&ucleb->list, &c->unclean_leb_list);
973 * @ucleb: unclean LEB information
983 struct ubifs_unclean_leb *ucleb, void *sbuf)
985 int err, lnum = ucleb->lnum, offs = 0, len = ucleb->endpt, quiet = 1;
1044 len = ALIGN(ucleb->endpt, c->min_io_size);
1045 if (len > ucleb->endpt) {
1046 int pad_len = len - ALIGN(ucleb->endpt, 8);
1079 struct ubifs_unclean_leb *ucleb;
1082 ucleb = list_entry(c->unclean_leb_list.next,
1084 err = clean_an_unclean_leb(c, ucleb, sbuf);
1087 list_del(&ucleb->list);
1088 kfree(ucleb);