Searched defs:dep (Results 1 - 3 of 3) sorted by relevance

/net/mac80211/
H A Doffchannel.c214 struct ieee80211_roc_work *roc, *dep, *tmp; local
231 list_for_each_entry_safe(dep, tmp, &roc->dependents, list) {
232 ieee80211_handle_roc_started(dep);
234 if (dep->duration > roc->duration) {
235 u32 dur = dep->duration;
236 dep->duration = dur - roc->duration;
238 list_move(&dep->list, &roc->list);
304 struct ieee80211_roc_work *dep, *tmp; local
323 list_for_each_entry_safe(dep, tmp, &roc->dependents, list)
324 ieee80211_roc_notify_destroy(dep, tru
357 struct ieee80211_roc_work *dep; local
[all...]
H A Dcfg.c2613 struct ieee80211_roc_work *dep, *tmp2; local
2615 list_for_each_entry_safe(dep, tmp2, &roc->dependents, list) {
2616 if (!mgmt_tx && dep->cookie != cookie)
2618 else if (mgmt_tx && dep->mgmt_tx_cookie != cookie)
2621 list_del(&dep->list);
2624 ieee80211_roc_notify_destroy(dep, true);
/net/sched/
H A Dsch_sfq.c97 * are 'pointers' to dep[] array
109 struct sfq_head dep; /* anchor in dep[] chains */ member in struct:sfq_slot
136 struct sfq_head dep[SFQ_MAX_DEPTH + 1]; member in struct:sfq_sched_data
138 * dep[0] : list of unused flows
139 * dep[1] : list of flows with 1 packet
140 * dep[X] : list of flows with X packets
150 * sfq_head are either in a sfq_slot or in dep[] array
155 return &q->slots[val].dep;
156 return &q->dep[va
[all...]

Completed in 60 milliseconds