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);
312 struct ubi_work *wrk;
340 wrk = kmalloc(sizeof(struct ubi_work), GFP_NOFS);
341 if (!wrk) {
348 wrk->func = &wear_leveling_worker;
349 __schedule_ubi_work(ubi, wrk);
395 * @wrk: The work object to be checked
397 int ubi_is_erase_work(struct ubi_work *wrk)
399 return wrk->func == erase_worker;