sys/net/fq_codel.c
141
static const struct ifq_ops fqcodel_ops = {
sys/net/fq_codel.c
151
const struct ifq_ops *const ifq_fqcodel_ops = &fqcodel_ops;
sys/net/fq_codel.h
47
extern const struct ifq_ops * const ifq_fqcodel_ops;
sys/net/hfsc.c
267
const struct ifq_ops hfsc_ops = {
sys/net/hfsc.c
277
const struct ifq_ops * const ifq_hfsc_ops = &hfsc_ops;
sys/net/hfsc.h
113
extern const struct ifq_ops * const ifq_hfsc_ops;
sys/net/hfsc.h
116
#define HFSC_ENABLED(ifq) ((ifq)->ifq_ops == ifq_hfsc_ops)
sys/net/if.c
710
if_attach_ifq(struct ifnet *ifp, const struct ifq_ops *newops, void *args)
sys/net/if.h
534
struct ifq_ops;
sys/net/if.h
541
void if_attach_ifq(struct ifnet *, const struct ifq_ops *, void *);
sys/net/ifq.c
264
ifq->ifq_ops = &priq_ops;
sys/net/ifq.c
303
ifq_attach(struct ifqueue *ifq, const struct ifq_ops *newops, void *opsarg)
sys/net/ifq.c
308
const struct ifq_ops *oldops;
sys/net/ifq.c
314
ifq->ifq_ops->ifqop_purge(ifq, &ml);
sys/net/ifq.c
317
oldops = ifq->ifq_ops;
sys/net/ifq.c
320
ifq->ifq_ops = newops;
sys/net/ifq.c
324
m = ifq->ifq_ops->ifqop_enq(ifq, m);
sys/net/ifq.c
352
ifq->ifq_ops->ifqop_purge(ifq, &ml);
sys/net/ifq.c
353
ifq->ifq_ops->ifqop_free(ifq->ifq_idx, ifq->ifq_q);
sys/net/ifq.c
376
dm = ifq->ifq_ops->ifqop_enq(ifq, m);
sys/net/ifq.c
424
(m = ifq->ifq_ops->ifqop_deq_begin(ifq, &cookie)) == NULL) {
sys/net/ifq.c
442
ifq->ifq_ops->ifqop_deq_commit(ifq, m, cookie);
sys/net/ifq.c
483
m = ifq->ifq_ops->ifqop_deq_begin(ifq, &cookie);
sys/net/ifq.c
485
ifq->ifq_ops->ifqop_deq_commit(ifq, m, cookie);
sys/net/ifq.c
51
const struct ifq_ops priq_ops = {
sys/net/ifq.c
540
ifq->ifq_ops->ifqop_purge(ifq, &ml);
sys/net/ifq.c
554
ifq_q_enter(struct ifqueue *ifq, const struct ifq_ops *ops)
sys/net/ifq.c
557
if (ifq->ifq_ops == ops)
sys/net/ifq.c
61
const struct ifq_ops * const ifq_priq_ops = &priq_ops;
sys/net/ifq.h
25
struct ifq_ops;
sys/net/ifq.h
422
extern const struct ifq_ops * const ifq_priq_ops;
sys/net/ifq.h
429
void ifq_attach(struct ifqueue *, const struct ifq_ops *, void *);
sys/net/ifq.h
443
void *ifq_q_enter(struct ifqueue *, const struct ifq_ops *);
sys/net/ifq.h
45
const struct ifq_ops *ifq_ops;
sys/net/ifq.h
460
return (ifq->ifq_ops == ifq_priq_ops);
sys/net/ifq.h
484
return ((*ifq->ifq_ops->ifqop_idx)(nifqs, m));
sys/net/pf_ioctl.c
642
const struct ifq_ops *ifqops;