Lines Matching refs:outbound

334 	struct hv_ring_buffer_debug_info outbound;  in out_intr_mask_show()  local
340 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_intr_mask_show()
341 &outbound); in out_intr_mask_show()
345 return sprintf(buf, "%d\n", outbound.current_interrupt_mask); in out_intr_mask_show()
353 struct hv_ring_buffer_debug_info outbound; in out_read_index_show() local
359 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_read_index_show()
360 &outbound); in out_read_index_show()
363 return sprintf(buf, "%d\n", outbound.current_read_index); in out_read_index_show()
372 struct hv_ring_buffer_debug_info outbound; in out_write_index_show() local
378 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_write_index_show()
379 &outbound); in out_write_index_show()
382 return sprintf(buf, "%d\n", outbound.current_write_index); in out_write_index_show()
391 struct hv_ring_buffer_debug_info outbound; in out_read_bytes_avail_show() local
397 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_read_bytes_avail_show()
398 &outbound); in out_read_bytes_avail_show()
401 return sprintf(buf, "%d\n", outbound.bytes_avail_toread); in out_read_bytes_avail_show()
410 struct hv_ring_buffer_debug_info outbound; in out_write_bytes_avail_show() local
416 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_write_bytes_avail_show()
417 &outbound); in out_write_bytes_avail_show()
420 return sprintf(buf, "%d\n", outbound.bytes_avail_towrite); in out_write_bytes_avail_show()
1720 struct hv_ring_buffer_info *rbi = &channel->outbound; in out_mask_show()
1771 struct hv_ring_buffer_info *rbi = &channel->outbound; in write_avail_show()