Lines Matching refs:wrk
10 * @wrk: the work description object
12 static void update_fastmap_work_fn(struct work_struct *wrk)
14 struct ubi_device *ubi = container_of(wrk, struct ubi_device, fm_work);
364 struct ubi_work *wrk;
392 wrk = kmalloc(sizeof(struct ubi_work), GFP_NOFS);
393 if (!wrk) {
400 wrk->func = &wear_leveling_worker;
401 __schedule_ubi_work(ubi, wrk);
447 * @wrk: The work object to be checked
449 int ubi_is_erase_work(struct ubi_work *wrk)
451 return wrk->func == erase_worker;