Home
last modified time | relevance | path

Searched refs:dwork (Results 1 – 9 of 9) sorted by relevance

/include/linux/
Dkthread.h150 #define KTHREAD_DELAYED_WORK_INIT(dwork, fn) { \ argument
151 .work = KTHREAD_WORK_INIT((dwork).work, (fn)), \
159 #define DEFINE_KTHREAD_DELAYED_WORK(dwork, fn) \ argument
160 struct kthread_delayed_work dwork = \
161 KTHREAD_DELAYED_WORK_INIT(dwork, fn)
179 #define kthread_init_delayed_work(dwork, fn) \ argument
181 kthread_init_work(&(dwork)->work, (fn)); \
182 timer_setup(&(dwork)->timer, \
201 struct kthread_delayed_work *dwork,
205 struct kthread_delayed_work *dwork,
Dworkqueue.h452 struct delayed_work *dwork, unsigned long delay);
466 extern bool flush_delayed_work(struct delayed_work *dwork);
467 extern bool cancel_delayed_work(struct delayed_work *dwork);
468 extern bool cancel_delayed_work_sync(struct delayed_work *dwork);
522 struct delayed_work *dwork, in queue_delayed_work() argument
525 return queue_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay); in queue_delayed_work()
537 struct delayed_work *dwork, in mod_delayed_work() argument
540 return mod_delayed_work_on(WORK_CPU_UNBOUND, wq, dwork, delay); in mod_delayed_work()
660 static inline bool schedule_delayed_work_on(int cpu, struct delayed_work *dwork, in schedule_delayed_work_on() argument
663 return queue_delayed_work_on(cpu, system_wq, dwork, delay); in schedule_delayed_work_on()
[all …]
Dbacking-dev-defs.h142 struct delayed_work dwork; /* work item used for writeback */ member
Dblkdev.h1391 int kblockd_mod_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay);
Dlibata.h1941 extern void ata_sff_queue_delayed_work(struct delayed_work *dwork,
/include/linux/sunrpc/
Dsched.h177 struct delayed_work dwork; member
/include/net/netfilter/
Dnf_conntrack.h49 struct delayed_work dwork; member
/include/net/
Dcfg80211.h5810 static inline void wiphy_delayed_work_init(struct wiphy_delayed_work *dwork, in wiphy_delayed_work_init() argument
5813 timer_setup(&dwork->timer, wiphy_delayed_work_timer, 0); in wiphy_delayed_work_init()
5814 wiphy_work_init(&dwork->work, func); in wiphy_delayed_work_init()
5831 struct wiphy_delayed_work *dwork,
5843 struct wiphy_delayed_work *dwork);
5854 struct wiphy_delayed_work *dwork);
Dmac80211.h5952 struct delayed_work *dwork,