123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- #ifndef __QDF_DEFER_H
- #define __QDF_DEFER_H
- #include <qdf_types.h>
- #include <i_qdf_defer.h>
- typedef __qdf_work_t qdf_work_t;
- typedef __qdf_delayed_work_t qdf_delayed_work_t;
- typedef __qdf_workqueue_t qdf_workqueue_t;
- typedef __qdf_bh_t qdf_bh_t;
- static inline void qdf_create_bh(qdf_handle_t hdl, qdf_bh_t *bh,
- qdf_defer_fn_t func, void *arg)
- {
- __qdf_init_bh(hdl, bh, func, arg);
- }
- static inline void qdf_sched_bh(qdf_handle_t hdl, qdf_bh_t *bh)
- {
- __qdf_sched_bh(hdl, bh);
- }
- static inline void qdf_destroy_bh(qdf_handle_t hdl, qdf_bh_t *bh)
- {
- __qdf_disable_bh(hdl, bh);
- }
- static inline void qdf_create_work(qdf_handle_t hdl, qdf_work_t *work,
- qdf_defer_fn_t func, void *arg)
- {
- __qdf_init_work(hdl, work, func, arg);
- }
- static inline void qdf_create_delayed_work(qdf_handle_t hdl,
- qdf_delayed_work_t *work,
- qdf_defer_fn_t func, void *arg)
- {
- __qdf_init_delayed_work(hdl, work, func, arg);
- }
- static inline qdf_workqueue_t *qdf_create_workqueue(char *name)
- {
- return __qdf_create_workqueue(name);
- }
- static inline void
- qdf_queue_work(qdf_handle_t hdl, qdf_workqueue_t *wqueue, qdf_work_t *work)
- {
- return __qdf_queue_work(hdl, wqueue, work);
- }
- static inline void qdf_queue_delayed_work(qdf_handle_t hdl,
- qdf_workqueue_t *wqueue,
- qdf_delayed_work_t *work,
- uint32_t delay)
- {
- return __qdf_queue_delayed_work(hdl, wqueue, work, delay);
- }
- static inline void qdf_flush_workqueue(qdf_handle_t hdl,
- qdf_workqueue_t *wqueue)
- {
- return __qdf_flush_workqueue(hdl, wqueue);
- }
- static inline void qdf_destroy_workqueue(qdf_handle_t hdl,
- qdf_workqueue_t *wqueue)
- {
- return __qdf_destroy_workqueue(hdl, wqueue);
- }
- static inline void qdf_sched_work(qdf_handle_t hdl, qdf_work_t *work)
- {
- __qdf_sched_work(hdl, work);
- }
- static inline void qdf_sched_delayed_work(qdf_handle_t hdl,
- qdf_delayed_work_t *work,
- uint32_t delay)
- {
- __qdf_sched_delayed_work(hdl, work, delay);
- }
- static inline bool qdf_cancel_work(qdf_handle_t hdl,
- qdf_work_t *work)
- {
- return __qdf_cancel_work(hdl, work);
- }
- static inline bool qdf_cancel_delayed_work(qdf_handle_t hdl,
- qdf_delayed_work_t *work)
- {
- return __qdf_cancel_delayed_work(hdl, work);
- }
- static inline void qdf_flush_work(qdf_handle_t hdl, qdf_work_t *work)
- {
- __qdf_flush_work(hdl, work);
- }
- static inline void qdf_flush_delayed_work(qdf_handle_t hdl,
- qdf_delayed_work_t *work)
- {
- __qdf_flush_delayed_work(hdl, work);
- }
- static inline uint32_t qdf_disable_work(qdf_handle_t hdl, qdf_work_t *work)
- {
- return __qdf_disable_work(hdl, work);
- }
- static inline void qdf_destroy_work(qdf_handle_t hdl, qdf_work_t *work)
- {
- __qdf_disable_work(hdl, work);
- }
- #endif
|