Home
last modified time | relevance | path

Searched refs:wrk (Results 1 – 10 of 10) sorted by relevance

/linux-4.1.27/drivers/hv/
Dhv_util.c188 struct adj_time_work *wrk; in hv_set_host_time() local
190 wrk = container_of(work, struct adj_time_work, work); in hv_set_host_time()
191 do_adj_guesttime(wrk->host_time); in hv_set_host_time()
192 kfree(wrk); in hv_set_host_time()
208 struct adj_time_work *wrk; in adj_guesttime() local
211 wrk = kmalloc(sizeof(struct adj_time_work), GFP_ATOMIC); in adj_guesttime()
212 if (wrk == NULL) in adj_guesttime()
215 wrk->host_time = hosttime; in adj_guesttime()
217 INIT_WORK(&wrk->work, hv_set_host_time); in adj_guesttime()
218 schedule_work(&wrk->work); in adj_guesttime()
[all …]
Dhv_balloon.c445 struct work_struct wrk; member
451 struct work_struct wrk; member
1368 schedule_work(&dm_device.balloon_wrk.wrk); in balloon_onchannelcallback()
1402 schedule_work(&dm_device.ha_wrk.wrk); in balloon_onchannelcallback()
1448 INIT_WORK(&dm_device.balloon_wrk.wrk, balloon_up); in balloon_probe()
1449 INIT_WORK(&dm_device.ha_wrk.wrk, hot_add_req); in balloon_probe()
1572 cancel_work_sync(&dm->balloon_wrk.wrk); in balloon_remove()
1573 cancel_work_sync(&dm->ha_wrk.wrk); in balloon_remove()
/linux-4.1.27/drivers/mtd/ubi/
Dfastmap-wl.c21 static void update_fastmap_work_fn(struct work_struct *wrk) in update_fastmap_work_fn() argument
23 struct ubi_device *ubi = container_of(wrk, struct ubi_device, fm_work); in update_fastmap_work_fn()
257 struct ubi_work *wrk; in ubi_ensure_anchor_pebs() local
267 wrk = kmalloc(sizeof(struct ubi_work), GFP_NOFS); in ubi_ensure_anchor_pebs()
268 if (!wrk) { in ubi_ensure_anchor_pebs()
275 wrk->anchor = 1; in ubi_ensure_anchor_pebs()
276 wrk->func = &wear_leveling_worker; in ubi_ensure_anchor_pebs()
277 schedule_ubi_work(ubi, wrk); in ubi_ensure_anchor_pebs()
325 int ubi_is_erase_work(struct ubi_work *wrk) in ubi_is_erase_work() argument
327 return wrk->func == erase_worker; in ubi_is_erase_work()
Dwl.c204 struct ubi_work *wrk; in do_work() local
222 wrk = list_entry(ubi->works.next, struct ubi_work, list); in do_work()
223 list_del(&wrk->list); in do_work()
233 err = wrk->func(ubi, wrk, 0); in do_work()
542 static void __schedule_ubi_work(struct ubi_device *ubi, struct ubi_work *wrk) in __schedule_ubi_work() argument
545 list_add_tail(&wrk->list, &ubi->works); in __schedule_ubi_work()
561 static void schedule_ubi_work(struct ubi_device *ubi, struct ubi_work *wrk) in schedule_ubi_work() argument
564 __schedule_ubi_work(ubi, wrk); in schedule_ubi_work()
645 static int wear_leveling_worker(struct ubi_device *ubi, struct ubi_work *wrk, argument
651 int anchor = wrk->anchor;
[all …]
Dwl.h5 static void update_fastmap_work_fn(struct work_struct *wrk);
Dubi.h765 int (*func)(struct ubi_device *ubi, struct ubi_work *wrk, int shutdown);
861 int ubi_is_erase_work(struct ubi_work *wrk);
/linux-4.1.27/drivers/scsi/
Dstorvsc_drv.c407 struct storvsc_scan_work *wrk; in storvsc_device_scan() local
411 wrk = container_of(work, struct storvsc_scan_work, work); in storvsc_device_scan()
412 lun = wrk->lun; in storvsc_device_scan()
414 sdev = scsi_device_lookup(wrk->host, 0, 0, lun); in storvsc_device_scan()
421 kfree(wrk); in storvsc_device_scan()
426 struct storvsc_scan_work *wrk; in storvsc_host_scan() local
431 wrk = container_of(work, struct storvsc_scan_work, work); in storvsc_host_scan()
432 host = wrk->host; in storvsc_host_scan()
460 kfree(wrk); in storvsc_host_scan()
465 struct storvsc_scan_work *wrk; in storvsc_remove_lun() local
[all …]
/linux-4.1.27/net/core/
Dlink_watch.c172 LIST_HEAD(wrk); in __linkwatch_run_queue()
190 list_splice_init(&lweventlist, &wrk); in __linkwatch_run_queue()
192 while (!list_empty(&wrk)) { in __linkwatch_run_queue()
194 dev = list_first_entry(&wrk, struct net_device, link_watch_list); in __linkwatch_run_queue()
/linux-4.1.27/arch/m68k/ifpsp060/
DMISC194 wrk/fskeleton.s: 2.2
195 wrk/iskeleton.s: 2.2
196 wrk/os.s : 2.1
/linux-4.1.27/kernel/power/
Dswap.c538 unsigned char wrk[LZO1X_1_MEM_COMPRESS]; /* compression workspace */ member
562 d->wrk); in lzo_compress_threadfn()