Home
last modified time | relevance | path

Searched refs:xge_os_malloc (Results 1 – 9 of 9) sorted by relevance

/titanic_41/usr/src/uts/common/io/xge/hal/xgehal/
H A Dxgehal-mm.c86 mempool->memblocks_priv_arr[i] = xge_os_malloc(mempool->pdev, in __hal_mempool_grow()
243 xge_os_malloc(pdev, sizeof(xge_hal_mempool_t)); in __hal_mempool_create()
268 mempool->memblocks_arr = (void ** ) xge_os_malloc(mempool->pdev, in __hal_mempool_create()
279 mempool->memblocks_priv_arr = (void **) xge_os_malloc(mempool->pdev, in __hal_mempool_create()
291 (xge_hal_mempool_dma_t *) xge_os_malloc(mempool->pdev, in __hal_mempool_create()
303 mempool->items_arr = (void **) xge_os_malloc(mempool->pdev, in __hal_mempool_create()
312 mempool->shadow_items_arr = (void **) xge_os_malloc(mempool->pdev, in __hal_mempool_create()
H A Dxgehal-channel.c122 channel = (xge_hal_channel_t *) xge_os_malloc(hldev->pdev, size); in __hal_channel_allocate()
189 channel->saved_arr = (void **) xge_os_malloc(hldev->pdev, in __hal_channel_initialize()
197 channel->work_arr = (void **) xge_os_malloc(hldev->pdev, in __hal_channel_initialize()
208 channel->orig_arr = (void **) xge_os_malloc(hldev->pdev, in __hal_channel_initialize()
H A Dxge-queue.c261 if ((queue = (xge_queue_t *) xge_os_malloc(pdev, sizeof(xge_queue_t))) == NULL) in xge_queue_create()
269 queue->start_ptr = xge_os_malloc(pdev, queue->pages_current * in xge_queue_create()
331 newbuf = xge_os_malloc(queue->pdev, in __io_queue_grow()
H A Dxgehal-driver.c223 g_tracebuf.data = (char *)xge_os_malloc(NULL, g_tracebuf.size); in xge_hal_driver_initialize()
H A Dxgehal-stats.c98 (xge_hal_stats_pcim_info_t *)xge_os_malloc( in __hal_stats_initialize()
106 (xge_hal_stats_pcim_info_t *)xge_os_malloc( in __hal_stats_initialize()
H A Dxgehal-ring.c281 ring->reserved_rxds_arr = (void **) xge_os_malloc(ring->channel.pdev, in __hal_ring_open()
H A Dxgehal-device.c2080 xge_os_malloc( in __hal_device_rth_spdm_configure()
2087 if ((mem = xge_os_malloc(hldev->pdev, spdm_table_size)) == NULL) in __hal_device_rth_spdm_configure()
5398 hldev->dump_buf=(char*)xge_os_malloc(hldev->pdev, XGE_HAL_DUMP_BUF_SIZE); in xge_hal_device_initialize()
5572 vpd_data = ( u8*) xge_os_malloc(hldev->pdev, XGE_HAL_VPD_BUFFER_SIZE + 16); in __hal_device_get_vpd_data()
H A Dxgehal-mgmtaux.c1574 dev_config = (xge_hal_device_config_t *) xge_os_malloc(hldev->pdev, in xge_hal_aux_device_config_read()
/titanic_41/usr/src/uts/common/io/xge/drv/
H A Dxge_osdep.h244 #define xge_os_malloc(pdev, size) \ macro