Lines Matching refs:outbound

295 	struct hv_ring_buffer_debug_info outbound;  in out_intr_mask_show()  local
301 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_intr_mask_show()
302 &outbound); in out_intr_mask_show()
306 return sprintf(buf, "%d\n", outbound.current_interrupt_mask); in out_intr_mask_show()
314 struct hv_ring_buffer_debug_info outbound; in out_read_index_show() local
320 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_read_index_show()
321 &outbound); in out_read_index_show()
324 return sprintf(buf, "%d\n", outbound.current_read_index); in out_read_index_show()
333 struct hv_ring_buffer_debug_info outbound; in out_write_index_show() local
339 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_write_index_show()
340 &outbound); in out_write_index_show()
343 return sprintf(buf, "%d\n", outbound.current_write_index); in out_write_index_show()
352 struct hv_ring_buffer_debug_info outbound; in out_read_bytes_avail_show() local
358 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_read_bytes_avail_show()
359 &outbound); in out_read_bytes_avail_show()
362 return sprintf(buf, "%d\n", outbound.bytes_avail_toread); in out_read_bytes_avail_show()
371 struct hv_ring_buffer_debug_info outbound; in out_write_bytes_avail_show() local
377 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_write_bytes_avail_show()
378 &outbound); in out_write_bytes_avail_show()
381 return sprintf(buf, "%d\n", outbound.bytes_avail_towrite); in out_write_bytes_avail_show()
1526 struct hv_ring_buffer_info *rbi = &channel->outbound; in out_mask_show()
1577 struct hv_ring_buffer_info *rbi = &channel->outbound; in write_avail_show()