Lines Matching refs:wl_wrk
568 static int erase_worker(struct ubi_device *ubi, struct ubi_work *wl_wrk,
585 struct ubi_work *wl_wrk; in schedule_erase() local
592 wl_wrk = kmalloc(sizeof(struct ubi_work), GFP_NOFS); in schedule_erase()
593 if (!wl_wrk) in schedule_erase()
596 wl_wrk->func = &erase_worker; in schedule_erase()
597 wl_wrk->e = e; in schedule_erase()
598 wl_wrk->vol_id = vol_id; in schedule_erase()
599 wl_wrk->lnum = lnum; in schedule_erase()
600 wl_wrk->torture = torture; in schedule_erase()
602 schedule_ubi_work(ubi, wl_wrk); in schedule_erase()
618 struct ubi_work *wl_wrk; in do_sync_erase() local
622 wl_wrk = kmalloc(sizeof(struct ubi_work), GFP_NOFS); in do_sync_erase()
623 if (!wl_wrk) in do_sync_erase()
626 wl_wrk->e = e; in do_sync_erase()
627 wl_wrk->vol_id = vol_id; in do_sync_erase()
628 wl_wrk->lnum = lnum; in do_sync_erase()
629 wl_wrk->torture = torture; in do_sync_erase()
631 return erase_worker(ubi, wl_wrk, 0); in do_sync_erase()
1028 static int erase_worker(struct ubi_device *ubi, struct ubi_work *wl_wrk, argument
1031 struct ubi_wl_entry *e = wl_wrk->e;
1033 int vol_id = wl_wrk->vol_id;
1034 int lnum = wl_wrk->lnum;
1039 kfree(wl_wrk);
1045 pnum, e->ec, wl_wrk->vol_id, wl_wrk->lnum);
1047 err = sync_erase(ubi, e, wl_wrk->torture);
1050 kfree(wl_wrk);
1069 kfree(wl_wrk);