Home
last modified time | relevance | path

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

/openbmc/linux/drivers/scsi/
H A DBusLogic.c176 ccb->next = adapter->free_ccbs; in blogic_init_ccbs()
178 adapter->free_ccbs = ccb; in blogic_init_ccbs()
219 adapter->free_ccbs = NULL; in blogic_destroy_ccbs()
282 ccb = adapter->free_ccbs; in blogic_alloc_ccb()
285 adapter->free_ccbs = ccb->next; in blogic_alloc_ccb()
287 if (adapter->free_ccbs == NULL) in blogic_alloc_ccb()
293 ccb = adapter->free_ccbs; in blogic_alloc_ccb()
297 adapter->free_ccbs = ccb->next; in blogic_alloc_ccb()
321 ccb->next = adapter->free_ccbs; in blogic_dealloc_ccb()
322 adapter->free_ccbs = ccb; in blogic_dealloc_ccb()
H A DBusLogic.h1043 struct blogic_ccb *free_ccbs; member