Home
last modified time | relevance | path

Searched refs:queueh (Results 1 – 7 of 7) sorted by relevance

/trueos/sys/dev/vxge/vxgehal/
HDvxge-queue.c163 vxge_queue_produce(vxge_queue_h queueh, in vxge_queue_produce() argument
170 vxge_queue_t *queue = (vxge_queue_t *) queueh; in vxge_queue_produce()
176 vxge_assert(queueh != NULL); in vxge_queue_produce()
187 (ptr_t) queueh, event_type, (ptr_t) context, in vxge_queue_produce()
244 status = vxge_io_queue_grow(queueh); in vxge_queue_produce()
361 vxge_queue_destroy(vxge_queue_h queueh) in vxge_queue_destroy() argument
363 vxge_queue_t *queue = (vxge_queue_t *) queueh; in vxge_queue_destroy()
366 vxge_assert(queueh != NULL); in vxge_queue_destroy()
374 (ptr_t) queueh); in vxge_queue_destroy()
403 vxge_io_queue_grow(vxge_queue_h queueh) in vxge_io_queue_grow() argument
[all …]
/trueos/sys/dev/vxge/include/
HDvxge-queue.h181 vxge_queue_destroy(vxge_queue_h queueh);
218 vxge_queue_produce(vxge_queue_h queueh,
244 vxge_queue_produce_context(vxge_queue_h queueh, in vxge_queue_produce_context() argument
248 return (vxge_queue_produce(queueh, event_type, context, 0, 0, 0)); in vxge_queue_produce_context()
269 vxge_queue_consume(vxge_queue_h queueh,
281 vxge_queue_flush(vxge_queue_h queueh);
308 vxge_queue_get_reset_critical(vxge_queue_h queueh);
/trueos/sys/dev/nxge/include/
HDxge-queue.h151 void xge_queue_destroy(xge_queue_h queueh);
156 xge_queue_produce(xge_queue_h queueh, int event_type, void *context,
160 xge_queue_produce_context(xge_queue_h queueh, int event_type, void *context) { in xge_queue_produce_context() argument
161 return xge_queue_produce(queueh, event_type, context, 0, 0, 0); in xge_queue_produce_context()
164 xge_queue_status_e xge_queue_consume(xge_queue_h queueh, int data_max_size,
167 void xge_queue_flush(xge_queue_h queueh);
HDxgehal-device.h348 xge_queue_h queueh; member
650 return ((xge_hal_device_t*)devh)->queueh; in xge_hal_device_queue()
/trueos/sys/dev/nxge/xgehal/
HDxge-queue.c144 xge_queue_produce(xge_queue_h queueh, int event_type, void *context, in xge_queue_produce() argument
147 xge_queue_t *queue = (xge_queue_t *)queueh; in xge_queue_produce()
212 status = __io_queue_grow(queueh); in xge_queue_produce()
299 void xge_queue_destroy(xge_queue_h queueh) in xge_queue_destroy() argument
301 xge_queue_t *queue = (xge_queue_t *)queueh; in xge_queue_destroy()
326 __io_queue_grow(xge_queue_h queueh) in __io_queue_grow() argument
328 xge_queue_t *queue = (xge_queue_t *)queueh; in __io_queue_grow()
397 xge_queue_consume(xge_queue_h queueh, int data_max_size, xge_queue_item_t *item) in xge_queue_consume() argument
399 xge_queue_t *queue = (xge_queue_t *)queueh; in xge_queue_consume()
418 void xge_queue_flush(xge_queue_h queueh) in xge_queue_flush() argument
[all …]
HDxgehal-device.c2525 (void) xge_queue_produce_context(hldev->queueh, in __hal_device_handle_link_up_ind()
2619 (void) xge_queue_produce_context(hldev->queueh, in __hal_device_handle_link_down_ind()
2696 (void) xge_queue_produce(hldev->queueh, XGE_HAL_EVENT_SERR, hldev, in __hal_device_handle_serr()
2717 (void) xge_queue_produce(hldev->queueh, in __hal_device_handle_eccerr()
2737 (void) xge_queue_produce_context(hldev->queueh, in __hal_device_handle_parityerr()
2750 (void) xge_queue_produce_context(hldev->queueh, in __hal_device_handle_targetabort()
5197 hldev->queueh = xge_queue_create(hldev->pdev, hldev->irqh, in xge_hal_device_initialize()
5201 if (hldev->queueh == NULL) in xge_hal_device_initialize()
5484 xge_queue_flush(hldev->queueh); in xge_hal_device_terminate()
5517 if (hldev->queueh) { in xge_hal_device_terminate()
[all …]
HDxgehal-device-fp.c181 (void) xge_queue_produce(hldev->queueh, in xge_hal_device_begin_irq()