Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/io/ib/adapters/hermon/
H A Dhermon_misc.c2554 hermon_fmr_list_t *fmr, *fmr_next; in hermon_create_fmr_pool() local
2622 fmrpool->fmr_free_list_tail = &fmr->fmr_next; in hermon_create_fmr_pool()
2623 fmr->fmr_next = fmrpool->fmr_free_list; in hermon_create_fmr_pool()
2633 for (fmr = fmrpool->fmr_free_list; fmr != NULL; fmr = fmr_next) { in hermon_create_fmr_pool()
2635 fmr_next = fmr->fmr_next; in hermon_create_fmr_pool()
2658 hermon_fmr_list_t *fmr, *fmr_next; in hermon_destroy_fmr_pool() local
2663 for (fmr = fmrpool->fmr_free_list; fmr != NULL; fmr = fmr_next) { in hermon_destroy_fmr_pool()
2664 fmr_next = fmr->fmr_next; in hermon_destroy_fmr_pool()
2757 if ((fmrpool->fmr_free_list = fmr->fmr_next) == NULL) in hermon_register_physical_fmr()
2759 fmr->fmr_next = NULL; in hermon_register_physical_fmr()
[all …]
/illumos-gate/usr/src/uts/common/sys/ib/adapters/hermon/
H A Dhermon_misc.h568 struct hermon_fmr_list_s *fmr_next; member