Home
last modified time | relevance | path

Searched refs:sib_size (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_idmap.c194 sib->sib_size = nmap * sizeof (smb_idmap_t); in smb_idmap_batch_create()
195 sib->sib_maps = kmem_zalloc(sib->sib_size, KM_SLEEP); in smb_idmap_batch_create()
240 if (sib->sib_size && sib->sib_maps) { in smb_idmap_batch_destroy()
241 kmem_free(sib->sib_maps, sib->sib_size); in smb_idmap_batch_destroy()
/illumos-gate/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_idmap.c164 sib->sib_size = nmap * sizeof (smb_idmap_t); in smb_idmap_batch_create()
165 sib->sib_maps = malloc(sib->sib_size); in smb_idmap_batch_create()
169 bzero(sib->sib_maps, sib->sib_size); in smb_idmap_batch_create()
213 if (sib->sib_size && sib->sib_maps) { in smb_idmap_batch_destroy()
/illumos-gate/usr/src/lib/smbsrv/libfksmbsrv/common/
H A Dfksmb_idmap.c167 sib->sib_size = nmap * sizeof (smb_idmap_t); in smb_idmap_batch_create()
168 sib->sib_maps = kmem_zalloc(sib->sib_size, KM_SLEEP); in smb_idmap_batch_create()
214 if (sib->sib_size && sib->sib_maps) { in smb_idmap_batch_destroy()
215 kmem_free(sib->sib_maps, sib->sib_size); in smb_idmap_batch_destroy()
/illumos-gate/usr/src/uts/common/smbsrv/
H A Dsmb_idmap.h84 uint32_t sib_size; member