Symbol: enable_work
block/blk-iolatency.c
100
struct work_struct enable_work;
block/blk-iolatency.c
640
flush_work(&blkiolat->enable_work);
block/blk-iolatency.c
731
enable_work);
block/blk-iolatency.c
776
INIT_WORK(&blkiolat->enable_work, blkiolatency_enable_work_fn);
block/blk-iolatency.c
800
schedule_work(&blkiolat->enable_work);
block/blk-iolatency.c
805
schedule_work(&blkiolat->enable_work);
drivers/firewire/core-iso.c
253
enable_work(&ctx->work);
drivers/firewire/ohci.c
1343
enable_work(&ctx->work);
drivers/firewire/ohci.c
2593
enable_work(&ctx->work);
drivers/net/ethernet/microsoft/mana/mana_en.c
3615
enable_work(&ac->link_change_work);
drivers/net/ethernet/microsoft/mana/mana_en.c
3649
enable_work(&apc->queue_reset_work);
drivers/net/ethernet/realtek/r8169_main.c
5032
enable_work(&tp->wk.work);
drivers/power/supply/qcom_battmgr.c
1588
struct qcom_battmgr *battmgr = container_of(work, struct qcom_battmgr, enable_work);
drivers/power/supply/qcom_battmgr.c
1607
schedule_work(&battmgr->enable_work);
drivers/power/supply/qcom_battmgr.c
1649
INIT_WORK(&battmgr->enable_work, qcom_battmgr_enable_worker);
drivers/power/supply/qcom_battmgr.c
334
struct work_struct enable_work;
drivers/scsi/libsas/sas_init.c
501
struct sas_phy_data *d = container_of(work, typeof(*d), enable_work.work);
drivers/scsi/libsas/sas_init.c
515
INIT_SAS_WORK(&d->enable_work, phy_enable_work);
drivers/scsi/libsas/sas_init.c
568
sas_queue_work(ha, &d->enable_work);
drivers/scsi/libsas/sas_internal.h
39
struct sas_work enable_work;
drivers/soc/qcom/pmic_glink_altmode.c
125
#define work_to_altmode(w) container_of((w), struct pmic_glink_altmode, enable_work)
drivers/soc/qcom/pmic_glink_altmode.c
138
struct work_struct enable_work;
drivers/soc/qcom/pmic_glink_altmode.c
560
schedule_work(&altmode->enable_work);
drivers/soc/qcom/pmic_glink_altmode.c
591
INIT_WORK(&altmode->enable_work, pmic_glink_altmode_enable_worker);
include/linux/workqueue.h
620
extern bool enable_work(struct work_struct *work);
include/linux/workqueue.h
752
if (enable_work(work)) {
kernel/workqueue.c
4451
enable_work(work);
kernel/workqueue.c
4588
EXPORT_SYMBOL_GPL(enable_work);
kernel/workqueue.c
4624
return enable_work(&dwork->work);