Searched refs:alq (Results 1 - 25 of 25) sorted by relevance

/freebsd-11-stable/sys/sys/
H A Dalq.h41 struct alq;
68 * alq Storage for a pointer to the newly created queue.
78 int alq_open_flags(struct alq **alqp, const char *file, struct ucred *cred, int cmode,
80 int alq_open(struct alq **alqp, const char *file, struct ucred *cred, int cmode,
87 * alq The queue we're writing to
98 int alq_writen(struct alq *alq, void *data, int len, int flags);
99 int alq_write(struct alq *alq, void *data, int flags);
104 void alq_flush(struct alq *al
139 alq_post(struct alq *alq, struct ale *ale) argument
[all...]
/freebsd-11-stable/sys/kern/
H A Dkern_alq.c48 #include <sys/alq.h>
57 struct alq { struct
69 * not be first field in the alq struct
75 LIST_ENTRY(alq) aq_act; /* List of active queues */
76 LIST_ENTRY(alq) aq_link; /* List of all queues */
86 #define ALQ_LOCK(alq) mtx_lock_spin(&(alq)->aq_mtx)
87 #define ALQ_UNLOCK(alq) mtx_unlock_spin(&(alq)->aq_mtx)
89 #define HAS_PENDING_DATA(alq) ((al
126 ald_add(struct alq *alq) argument
148 ald_rem(struct alq *alq) argument
169 ald_activate(struct alq *alq) argument
176 ald_deactivate(struct alq *alq) argument
194 struct alq *alq; local
230 struct alq *alq; local
260 alq_shutdown(struct alq *alq) argument
294 alq_destroy(struct alq *alq) argument
308 alq_doio(struct alq *alq) argument
436 struct alq *alq; local
509 alq_writen(struct alq *alq, void *data, int len, int flags) argument
663 alq_write(struct alq *alq, void *data, int flags) argument
675 alq_getn(struct alq *alq, int len, int flags) argument
819 alq_get(struct alq *alq, int flags) argument
828 alq_post_flags(struct alq *alq, struct ale *ale, int flags) argument
886 alq_flush(struct alq *alq) argument
916 alq_close(struct alq *alq) argument
[all...]
H A Dkern_ktr.c40 #include <sys/alq.h>
253 struct alq *ktr_alq;
/freebsd-11-stable/sys/dev/ath/
H A Dif_ath_alq.c45 #include <sys/alq.h>
53 if_ath_alq_get(struct if_ath_alq *alq, int len) argument
57 if (alq->sc_alq_isactive == 0)
60 ale = alq_getn(alq->sc_alq_alq, len, ALQ_NOWAIT);
62 alq->sc_alq_numlost++;
67 if_ath_alq_init(struct if_ath_alq *alq, const char *devname) argument
70 bzero(alq, sizeof(*alq));
72 strncpy(alq->sc_alq_devname, devname, ATH_ALQ_DEVNAME_LEN);
73 printf("%s (%s): attached\n", __func__, alq
82 if_ath_alq_setcfg(struct if_ath_alq *alq, uint32_t macVer, uint32_t macRev, uint32_t phyRev, uint32_t halMagic) argument
94 if_ath_alq_tidyup(struct if_ath_alq *alq) argument
103 if_ath_alq_start(struct if_ath_alq *alq) argument
131 if_ath_alq_stop(struct if_ath_alq *alq) argument
152 if_ath_alq_post(struct if_ath_alq *alq, uint16_t op, uint16_t len, const char *buf) argument
[all...]
H A Dif_ath_alq.h134 struct alq * sc_alq_alq; /* alq state */
161 if_ath_alq_checkdebug(struct if_ath_alq *alq, uint16_t op) argument
164 return ((alq->sc_alq_debug | ATH_ALQ_LOG_ALWAYS_MASK)
168 extern void if_ath_alq_init(struct if_ath_alq *alq, const char *devname);
169 extern void if_ath_alq_setcfg(struct if_ath_alq *alq, uint32_t macVer,
171 extern void if_ath_alq_tidyup(struct if_ath_alq *alq);
172 extern int if_ath_alq_start(struct if_ath_alq *alq);
173 extern int if_ath_alq_stop(struct if_ath_alq *alq);
174 extern void if_ath_alq_post(struct if_ath_alq *alq, uint16_
179 if_ath_alq_post_intr(struct if_ath_alq *alq, uint32_t status, uint32_t *state, uint32_t sync_state) argument
[all...]
H A Dah_osdep.c177 * Setting hw.ath.hal.alq=1 enables tracing of all register reads and
179 * fixed-size array of records. When done logging set hw.ath.hal.alq=0
187 #include <sys/alq.h>
191 static struct alq *ath_hal_alq;
236 SYSCTL_PROC(_hw_ath_hal, OID_AUTO, alq, CTLTYPE_INT|CTLFLAG_RW,
H A Dif_ath.c6656 MODULE_DEPEND(if_ath, alq, 1, 1, 1);
/freebsd-11-stable/sys/modules/alq/
H A DMakefile1 # $FreeBSD: stable/11/sys/modules/alq/Makefile 319182 2017-05-30 04:11:12Z ngie $
4 KMOD= alq
/freebsd-11-stable/sys/dev/nand/
H A Dnandsim_log.c36 #include <sys/alq.h>
58 error = alq_open(&sc->alq, filename,
76 alq_write(sc->alq, (void *) string, ALQ_NOWAIT);
79 alq_close(sc->alq);
103 if (!sc->alq && nandsim_log_output == NANDSIM_OUTPUT_FILE)
165 alq_write(sc->alq, (void *) string,
176 alq_write(sc->alq, (void *) string,
H A Dnandsim_chip.h63 struct alq *alq; member in struct:nandsim_softc
H A Dnandsim.c668 MODULE_DEPEND(nandsim, alq, 1, 1, 1);
/freebsd-11-stable/sys/net80211/
H A Dieee80211_alq.c50 #include <sys/alq.h>
63 static struct alq *ieee80211_alq;
113 SYSCTL_PROC(_net_wlan, OID_AUTO, alq, CTLTYPE_INT|CTLFLAG_RW,
114 0, 0, sysctl_ieee80211_alq_log, "I", "Enable net80211 alq logging");
H A Dieee80211_freebsd.c1007 MODULE_DEPEND(wlan, alq, 1, 1, 1);
/freebsd-11-stable/tools/tools/ath/arcode/
H A Darcode.c26 #include <sys/alq.h>
/freebsd-11-stable/tools/tools/ath/athalq/
H A Dtdma.c29 #include <sys/alq.h>
H A Dar5210_ds.c29 #include <sys/alq.h>
H A Dar5211_ds.c29 #include <sys/alq.h>
H A Dmain.c28 #include <sys/alq.h>
H A Dar5212_ds.c29 #include <sys/alq.h>
H A Dar5416_ds.c29 #include <sys/alq.h>
H A Dar9300_ds.c28 #include <sys/alq.h>
H A Dar5416_ds_tdma.c29 #include <sys/alq.h>
/freebsd-11-stable/share/man/man9/
H A DMakefile12 alq.9 \
424 MLINKS+=alq.9 ALQ.9 \
425 alq.9 alq_close.9 \
426 alq.9 alq_flush.9 \
427 alq.9 alq_get.9 \
428 alq.9 alq_getn.9 \
429 alq.9 alq_open.9 \
430 alq.9 alq_open_flags.9 \
431 alq.9 alq_post.9 \
432 alq
[all...]
/freebsd-11-stable/sys/netinet/
H A Dsiftr.c65 #include <sys/alq.h>
280 static struct alq *siftr_alq = NULL;
1158 struct alq *new_alq;
1176 * the alq as we've proved it can be opened.
1177 * If enabled, close the existing alq and switch the old
1222 * Create our alq
1568 MODULE_DEPEND(siftr, alq, 1, 1, 1);
/freebsd-11-stable/sys/modules/
H A DMakefile38 alq \

Completed in 244 milliseconds