Lines Matching refs:outbound
335 struct hv_ring_buffer_debug_info outbound; in out_intr_mask_show() local
341 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_intr_mask_show()
342 &outbound); in out_intr_mask_show()
346 return sprintf(buf, "%d\n", outbound.current_interrupt_mask); in out_intr_mask_show()
354 struct hv_ring_buffer_debug_info outbound; in out_read_index_show() local
360 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_read_index_show()
361 &outbound); in out_read_index_show()
364 return sprintf(buf, "%d\n", outbound.current_read_index); in out_read_index_show()
373 struct hv_ring_buffer_debug_info outbound; in out_write_index_show() local
379 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_write_index_show()
380 &outbound); in out_write_index_show()
383 return sprintf(buf, "%d\n", outbound.current_write_index); in out_write_index_show()
392 struct hv_ring_buffer_debug_info outbound; in out_read_bytes_avail_show() local
398 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_read_bytes_avail_show()
399 &outbound); in out_read_bytes_avail_show()
402 return sprintf(buf, "%d\n", outbound.bytes_avail_toread); in out_read_bytes_avail_show()
411 struct hv_ring_buffer_debug_info outbound; in out_write_bytes_avail_show() local
417 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_write_bytes_avail_show()
418 &outbound); in out_write_bytes_avail_show()
421 return sprintf(buf, "%d\n", outbound.bytes_avail_towrite); in out_write_bytes_avail_show()
1692 struct hv_ring_buffer_info *rbi = &channel->outbound; in out_mask_show()
1743 struct hv_ring_buffer_info *rbi = &channel->outbound; in write_avail_show()