Searched refs:txl (Results 1 – 1 of 1) sorted by relevance
168 smb_net_txl_constructor(smb_txlst_t *txl) in smb_net_txl_constructor() argument170 ASSERT(txl->tl_magic != SMB_TXLST_MAGIC); in smb_net_txl_constructor()172 mutex_init(&txl->tl_mutex, NULL, MUTEX_DEFAULT, NULL); in smb_net_txl_constructor()173 list_create(&txl->tl_list, sizeof (smb_txreq_t), in smb_net_txl_constructor()175 txl->tl_active = B_FALSE; in smb_net_txl_constructor()176 txl->tl_magic = SMB_TXLST_MAGIC; in smb_net_txl_constructor()185 smb_net_txl_destructor(smb_txlst_t *txl) in smb_net_txl_destructor() argument187 ASSERT(txl->tl_magic == SMB_TXLST_MAGIC); in smb_net_txl_destructor()189 txl->tl_magic = 0; in smb_net_txl_destructor()190 list_destroy(&txl->tl_list); in smb_net_txl_destructor()[all …]