Searched refs:cdw (Results 1 – 2 of 2) sorted by relevance
192 struct cache_destroy_work *cdw; in cache_destroy_workfn() local194 cdw = container_of(w, struct cache_destroy_work, work); in cache_destroy_workfn()195 kmem_cache_destroy(cdw->s); in cache_destroy_workfn()203 struct cache_destroy_work cdw; in test_kfree_rcu_wq_destroy() local212 INIT_WORK_ONSTACK(&cdw.work, cache_destroy_workfn); in test_kfree_rcu_wq_destroy()231 cdw.s = s; in test_kfree_rcu_wq_destroy()234 queue_work(wq, &cdw.work); in test_kfree_rcu_wq_destroy()235 flush_work(&cdw.work); in test_kfree_rcu_wq_destroy()
2362 struct acpi_scan_clear_dep_work *cdw; in acpi_scan_clear_dep_fn() local2364 cdw = container_of(work, struct acpi_scan_clear_dep_work, work); in acpi_scan_clear_dep_fn()2367 acpi_bus_attach(cdw->adev, (void *)true); in acpi_scan_clear_dep_fn()2370 acpi_dev_put(cdw->adev); in acpi_scan_clear_dep_fn()2371 kfree(cdw); in acpi_scan_clear_dep_fn()2376 struct acpi_scan_clear_dep_work *cdw; in acpi_scan_clear_dep_queue() local2381 cdw = kmalloc(sizeof(*cdw), GFP_KERNEL); in acpi_scan_clear_dep_queue()2382 if (!cdw) in acpi_scan_clear_dep_queue()2385 cdw->adev = adev; in acpi_scan_clear_dep_queue()2386 INIT_WORK(&cdw->work, acpi_scan_clear_dep_fn); in acpi_scan_clear_dep_queue()[all …]