Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/scsi/
DBusLogic.c182 ccb->next = adapter->free_ccbs; in blogic_init_ccbs()
184 adapter->free_ccbs = ccb; in blogic_init_ccbs()
225 adapter->free_ccbs = NULL; in blogic_destroy_ccbs()
287 ccb = adapter->free_ccbs; in blogic_alloc_ccb()
290 adapter->free_ccbs = ccb->next; in blogic_alloc_ccb()
292 if (adapter->free_ccbs == NULL) in blogic_alloc_ccb()
298 ccb = adapter->free_ccbs; in blogic_alloc_ccb()
302 adapter->free_ccbs = ccb->next; in blogic_alloc_ccb()
326 ccb->next = adapter->free_ccbs; in blogic_dealloc_ccb()
327 adapter->free_ccbs = ccb; in blogic_dealloc_ccb()
DBusLogic.h1061 struct blogic_ccb *free_ccbs; member