Symbol: aha_ccb
sys/dev/ic/aha.c
103
static int aha_create_ccbs(struct aha_softc *, struct aha_ccb *, int);
sys/dev/ic/aha.c
1133
struct aha_ccb *ccb;
sys/dev/ic/aha.c
1250
offsetof(struct aha_ccb, scat_gath),
sys/dev/ic/aha.c
1273
AHA_CCB_OFF(ccb), sizeof(struct aha_ccb),
sys/dev/ic/aha.c
1336
struct aha_ccb *ccb = arg;
sys/dev/ic/aha.c
287
struct aha_ccb *ccb;
sys/dev/ic/aha.c
325
AHA_CCB_OFF(ccb), sizeof(struct aha_ccb),
sys/dev/ic/aha.c
435
aha_reset_ccb(struct aha_softc *sc, struct aha_ccb *ccb)
sys/dev/ic/aha.c
445
aha_free_ccb(struct aha_softc *sc, struct aha_ccb *ccb)
sys/dev/ic/aha.c
456
aha_init_ccb(struct aha_softc *sc, struct aha_ccb *ccb)
sys/dev/ic/aha.c
491
aha_create_ccbs(struct aha_softc *sc, struct aha_ccb *ccbstore, int count)
sys/dev/ic/aha.c
493
struct aha_ccb *ccb;
sys/dev/ic/aha.c
496
memset(ccbstore, 0, sizeof(struct aha_ccb) * count);
sys/dev/ic/aha.c
517
struct aha_ccb *
sys/dev/ic/aha.c
520
struct aha_ccb *ccb;
sys/dev/ic/aha.c
536
static struct aha_ccb *
sys/dev/ic/aha.c
540
struct aha_ccb *ccb = sc->sc_ccbhash[hashnum];
sys/dev/ic/aha.c
554
aha_queue_ccb(struct aha_softc *sc, struct aha_ccb *ccb)
sys/dev/ic/aha.c
569
struct aha_ccb *ccb;
sys/dev/ic/aha.c
602
struct aha_ccb *ccb;
sys/dev/ic/aha.c
658
aha_done(struct aha_softc *sc, struct aha_ccb *ccb)
sys/dev/ic/aha.c
88
static void aha_free_ccb(struct aha_softc *, struct aha_ccb *);
sys/dev/ic/aha.c
89
static int aha_init_ccb(struct aha_softc *, struct aha_ccb *);
sys/dev/ic/aha.c
90
static struct aha_ccb *aha_get_ccb(struct aha_softc *);
sys/dev/ic/aha.c
91
static struct aha_ccb *aha_ccb_phys_kv(struct aha_softc *, u_long);
sys/dev/ic/aha.c
92
static void aha_queue_ccb(struct aha_softc *, struct aha_ccb *);
sys/dev/ic/aha.c
95
static void aha_done(struct aha_softc *, struct aha_ccb *);
sys/dev/ic/ahareg.h
182
TAILQ_ENTRY(aha_ccb) chain;
sys/dev/ic/ahareg.h
183
struct aha_ccb *nexthash;
sys/dev/ic/ahavar.h
65
struct aha_ccb ac_ccbs[AHA_CCB_MAX]; /* all our control blocks */
sys/dev/ic/ahavar.h
81
struct aha_ccb *sc_ccbhash[CCB_HASH_SIZE];
sys/dev/ic/ahavar.h
82
TAILQ_HEAD(, aha_ccb) sc_free_ccb, sc_waiting_ccb;