Lines Matching refs:outbound

330 	struct hv_ring_buffer_debug_info outbound;  in out_intr_mask_show()  local
336 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_intr_mask_show()
337 &outbound); in out_intr_mask_show()
341 return sprintf(buf, "%d\n", outbound.current_interrupt_mask); in out_intr_mask_show()
349 struct hv_ring_buffer_debug_info outbound; in out_read_index_show() local
355 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_read_index_show()
356 &outbound); in out_read_index_show()
359 return sprintf(buf, "%d\n", outbound.current_read_index); in out_read_index_show()
368 struct hv_ring_buffer_debug_info outbound; in out_write_index_show() local
374 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_write_index_show()
375 &outbound); in out_write_index_show()
378 return sprintf(buf, "%d\n", outbound.current_write_index); in out_write_index_show()
387 struct hv_ring_buffer_debug_info outbound; in out_read_bytes_avail_show() local
393 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_read_bytes_avail_show()
394 &outbound); in out_read_bytes_avail_show()
397 return sprintf(buf, "%d\n", outbound.bytes_avail_toread); in out_read_bytes_avail_show()
406 struct hv_ring_buffer_debug_info outbound; in out_write_bytes_avail_show() local
412 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_write_bytes_avail_show()
413 &outbound); in out_write_bytes_avail_show()
416 return sprintf(buf, "%d\n", outbound.bytes_avail_towrite); in out_write_bytes_avail_show()
1639 struct hv_ring_buffer_info *rbi = &channel->outbound; in out_mask_show()
1690 struct hv_ring_buffer_info *rbi = &channel->outbound; in write_avail_show()