Home
last modified time | relevance | path

Searched refs:free_ccbs (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/scsi/
H A DBusLogic.c177 ccb->next = adapter->free_ccbs; in blogic_init_ccbs()
179 adapter->free_ccbs = ccb; in blogic_init_ccbs()
220 adapter->free_ccbs = NULL; in blogic_destroy_ccbs()
283 ccb = adapter->free_ccbs; in blogic_alloc_ccb()
286 adapter->free_ccbs = ccb->next; in blogic_alloc_ccb()
288 if (adapter->free_ccbs == NULL) in blogic_alloc_ccb()
294 ccb = adapter->free_ccbs; in blogic_alloc_ccb()
298 adapter->free_ccbs = ccb->next; in blogic_alloc_ccb()
322 ccb->next = adapter->free_ccbs; in blogic_dealloc_ccb()
323 adapter->free_ccbs in blogic_dealloc_ccb()
[all...]
H A DBusLogic.h1043 struct blogic_ccb *free_ccbs; member