Home
last modified time | relevance | path

Searched refs:notify_peers (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/net/team/
H A Dteam_core.c653 team = container_of(work, struct team, notify_peers.dw.work); in team_notify_peers_work()
656 schedule_delayed_work(&team->notify_peers.dw, 0); in team_notify_peers_work()
659 val = atomic_dec_if_positive(&team->notify_peers.count_pending); in team_notify_peers_work()
667 schedule_delayed_work(&team->notify_peers.dw, in team_notify_peers_work()
668 msecs_to_jiffies(team->notify_peers.interval)); in team_notify_peers_work()
673 if (!team->notify_peers.count || !netif_running(netdev_from_priv(team))) in team_notify_peers()
675 atomic_add(team->notify_peers.count, &team->notify_peers.count_pending); in team_notify_peers()
676 schedule_delayed_work(&team->notify_peers.dw, 0); in team_notify_peers()
681 INIT_DELAYED_WORK(&team->notify_peers.dw, team_notify_peers_work); in team_notify_peers_init()
686 cancel_delayed_work_sync(&team->notify_peers.dw); in team_notify_peers_fini()
[all …]
/linux/net/bluetooth/
H A D6lowpan.c82 struct delayed_work notify_peers; member
611 notify_peers.work); in do_notify_peers()
667 INIT_DELAYED_WORK(&dev->notify_peers, do_notify_peers); in add_peer_chan()
668 schedule_delayed_work(&dev->notify_peers, msecs_to_jiffies(100)); in add_peer_chan()
811 cancel_delayed_work_sync(&dev->notify_peers); in chan_close_cb()