Home
last modified time | relevance | path

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

/drivers/scsi/
DBusLogic.c175 ccb->next = adapter->free_ccbs; in blogic_init_ccbs()
177 adapter->free_ccbs = ccb; in blogic_init_ccbs()
218 adapter->free_ccbs = NULL; in blogic_destroy_ccbs()
281 ccb = adapter->free_ccbs; in blogic_alloc_ccb()
284 adapter->free_ccbs = ccb->next; in blogic_alloc_ccb()
286 if (adapter->free_ccbs == NULL) in blogic_alloc_ccb()
292 ccb = adapter->free_ccbs; in blogic_alloc_ccb()
296 adapter->free_ccbs = ccb->next; in blogic_alloc_ccb()
320 ccb->next = adapter->free_ccbs; in blogic_dealloc_ccb()
321 adapter->free_ccbs = ccb; in blogic_dealloc_ccb()
DBusLogic.h1054 struct blogic_ccb *free_ccbs; member