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()
606 static int __erase_worker(struct ubi_device *ubi, struct ubi_work *wl_wrk);
619 struct ubi_work wl_wrk; in do_sync_erase() local
623 wl_wrk.e = e; in do_sync_erase()
624 wl_wrk.vol_id = vol_id; in do_sync_erase()
625 wl_wrk.lnum = lnum; in do_sync_erase()
626 wl_wrk.torture = torture; in do_sync_erase()
628 return __erase_worker(ubi, &wl_wrk); in do_sync_erase()
1025 static int __erase_worker(struct ubi_device *ubi, struct ubi_work *wl_wrk) argument
1027 struct ubi_wl_entry *e = wl_wrk->e;
1029 int vol_id = wl_wrk->vol_id;
1030 int lnum = wl_wrk->lnum;
1034 pnum, e->ec, wl_wrk->vol_id, wl_wrk->lnum);
1036 err = sync_erase(ubi, e, wl_wrk->torture);
1139 static int erase_worker(struct ubi_device *ubi, struct ubi_work *wl_wrk, argument
1145 struct ubi_wl_entry *e = wl_wrk->e;
1148 kfree(wl_wrk);
1153 ret = __erase_worker(ubi, wl_wrk);
1154 kfree(wl_wrk);