The completion queue is no longer used, so nuke its associated code
and data structures.
This commit is contained in:
parent
5f22df9792
commit
3cbd08b843
@ -234,7 +234,6 @@ aac_attach(struct aac_softc *sc)
|
|||||||
aac_initq_free(sc);
|
aac_initq_free(sc);
|
||||||
aac_initq_ready(sc);
|
aac_initq_ready(sc);
|
||||||
aac_initq_busy(sc);
|
aac_initq_busy(sc);
|
||||||
aac_initq_complete(sc);
|
|
||||||
aac_initq_bio(sc);
|
aac_initq_bio(sc);
|
||||||
|
|
||||||
#if __FreeBSD_version >= 500005
|
#if __FreeBSD_version >= 500005
|
||||||
|
@ -342,8 +342,6 @@ struct aac_softc
|
|||||||
TAILQ_HEAD(,aac_command) aac_ready; /* commands on hold for
|
TAILQ_HEAD(,aac_command) aac_ready; /* commands on hold for
|
||||||
* controller resources */
|
* controller resources */
|
||||||
TAILQ_HEAD(,aac_command) aac_busy;
|
TAILQ_HEAD(,aac_command) aac_busy;
|
||||||
TAILQ_HEAD(,aac_command) aac_complete; /* commands which have been
|
|
||||||
* returned by the controller */
|
|
||||||
struct bio_queue_head aac_bioq;
|
struct bio_queue_head aac_bioq;
|
||||||
struct aac_queue_table *aac_queues;
|
struct aac_queue_table *aac_queues;
|
||||||
struct aac_queue_entry *aac_qentries[AAC_QUEUE_COUNT];
|
struct aac_queue_entry *aac_qentries[AAC_QUEUE_COUNT];
|
||||||
@ -559,7 +557,6 @@ struct hack
|
|||||||
AACQ_COMMAND_QUEUE(free, AACQ_FREE);
|
AACQ_COMMAND_QUEUE(free, AACQ_FREE);
|
||||||
AACQ_COMMAND_QUEUE(ready, AACQ_READY);
|
AACQ_COMMAND_QUEUE(ready, AACQ_READY);
|
||||||
AACQ_COMMAND_QUEUE(busy, AACQ_BUSY);
|
AACQ_COMMAND_QUEUE(busy, AACQ_BUSY);
|
||||||
AACQ_COMMAND_QUEUE(complete, AACQ_COMPLETE);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* outstanding bio queue
|
* outstanding bio queue
|
||||||
|
Loading…
Reference in New Issue
Block a user