Lines Matching refs:outbound
356 struct hv_ring_buffer_debug_info outbound; in out_intr_mask_show() local
362 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_intr_mask_show()
363 &outbound); in out_intr_mask_show()
367 return sprintf(buf, "%d\n", outbound.current_interrupt_mask); in out_intr_mask_show()
375 struct hv_ring_buffer_debug_info outbound; in out_read_index_show() local
381 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_read_index_show()
382 &outbound); in out_read_index_show()
385 return sprintf(buf, "%d\n", outbound.current_read_index); in out_read_index_show()
394 struct hv_ring_buffer_debug_info outbound; in out_write_index_show() local
400 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_write_index_show()
401 &outbound); in out_write_index_show()
404 return sprintf(buf, "%d\n", outbound.current_write_index); in out_write_index_show()
413 struct hv_ring_buffer_debug_info outbound; in out_read_bytes_avail_show() local
419 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_read_bytes_avail_show()
420 &outbound); in out_read_bytes_avail_show()
423 return sprintf(buf, "%d\n", outbound.bytes_avail_toread); in out_read_bytes_avail_show()
432 struct hv_ring_buffer_debug_info outbound; in out_write_bytes_avail_show() local
438 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_write_bytes_avail_show()
439 &outbound); in out_write_bytes_avail_show()
442 return sprintf(buf, "%d\n", outbound.bytes_avail_towrite); in out_write_bytes_avail_show()
1714 struct hv_ring_buffer_info *rbi = &channel->outbound; in out_mask_show()
1765 struct hv_ring_buffer_info *rbi = &channel->outbound; in write_avail_show()