Home
last modified time | relevance | path

Searched refs:wwk (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/compat/linuxkpi/common/include/net/
H A Dcfg80211.h2213 wiphy_work_init(struct wiphy_work *wwk, wiphy_work_fn fn) in wiphy_work_init() argument
2215 INIT_LIST_HEAD(&wwk->entry); in wiphy_work_init()
2216 wwk->fn = fn; in wiphy_work_init()
2220 wiphy_work_queue(struct wiphy *wiphy, struct wiphy_work *wwk) in wiphy_work_queue() argument
2222 linuxkpi_wiphy_work_queue(wiphy, wwk); in wiphy_work_queue()
2226 wiphy_work_cancel(struct wiphy *wiphy, struct wiphy_work *wwk) in wiphy_work_cancel() argument
2228 linuxkpi_wiphy_work_cancel(wiphy, wwk); in wiphy_work_cancel()
2232 wiphy_work_flush(struct wiphy *wiphy, struct wiphy_work *wwk) in wiphy_work_flush() argument
2234 linuxkpi_wiphy_work_flush(wiphy, wwk); in wiphy_work_flush()
/freebsd/sys/compat/linuxkpi/common/src/
H A Dlinux_80211.c6571 lwiphy = container_of(work, struct lkpi_wiphy, wwk);
6598 linuxkpi_wiphy_work_queue(struct wiphy *wiphy, struct wiphy_work *wwk) argument
6606 if (list_empty(&wwk->entry))
6607 list_add_tail(&wwk->entry, &lwiphy->wwk_list);
6615 queue_work(system_wq, &lwiphy->wwk);
6619 linuxkpi_wiphy_work_cancel(struct wiphy *wiphy, struct wiphy_work *wwk) argument
6627 if (!list_empty(&wwk->entry))
6628 list_del_init(&wwk->entry);
6633 linuxkpi_wiphy_work_flush(struct wiphy *wiphy, struct wiphy_work *wwk) argument
6641 if (wwk != NULL && list_empty(&wwk->entry)) {
[all …]
H A Dlinux_80211.h298 struct work_struct wwk; member