Home
last modified time | relevance | path

Searched refs:open_handles (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/sun_sas/common/
H A DSun_sasCloseAdapter.c51 if (global_hba_head->open_handles == NULL) { in Sun_sasCloseAdapter()
57 } else if (global_hba_head->open_handles->next == NULL) { in Sun_sasCloseAdapter()
59 if (global_hba_head->open_handles->handle == handle) { in Sun_sasCloseAdapter()
60 free(global_hba_head->open_handles); in Sun_sasCloseAdapter()
61 global_hba_head->open_handles = NULL; in Sun_sasCloseAdapter()
68 open_handle_ptr = global_hba_head->open_handles; in Sun_sasCloseAdapter()
70 global_hba_head->open_handles = open_handle_ptr->next; in Sun_sasCloseAdapter()
75 global_hba_head->open_handles; in Sun_sasCloseAdapter()
H A Dsun_sas.c86 if (global_hba_head->open_handles == NULL) { in CreateHandle()
87 global_hba_head->open_handles = new_open_handle; in CreateHandle()
89 new_open_handle->next = global_hba_head->open_handles; in CreateHandle()
90 global_hba_head->open_handles = new_open_handle; in CreateHandle()
142 for (open_handle_ptr = global_hba_head->open_handles; in RetrieveOpenHandle()
H A Ddevtree_hba_disco.c539 if (global_hba_head->open_handles) { in devtree_get_one_hba()
540 new_hba->open_handles = in devtree_get_one_hba()
541 global_hba_head->open_handles; in devtree_get_one_hba()
542 global_hba_head->open_handles = NULL; in devtree_get_one_hba()
581 if (global_hba_head->open_handles) { in devtree_get_one_hba()
582 new_hba->open_handles = global_hba_head->open_handles; in devtree_get_one_hba()
583 global_hba_head->open_handles = NULL; in devtree_get_one_hba()
H A DSun_sasFreeLibrary.c119 open_handle = hba_ptr->open_handles; in FreeHBA()
H A Dsun_sas.h126 struct open_handle *open_handles; member