Lines Matching refs:outbound
296 struct hv_ring_buffer_debug_info outbound; in out_intr_mask_show() local
302 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_intr_mask_show()
303 &outbound); in out_intr_mask_show()
307 return sysfs_emit(buf, "%d\n", outbound.current_interrupt_mask); in out_intr_mask_show()
315 struct hv_ring_buffer_debug_info outbound; in out_read_index_show() local
321 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_read_index_show()
322 &outbound); in out_read_index_show()
325 return sysfs_emit(buf, "%d\n", outbound.current_read_index); in out_read_index_show()
334 struct hv_ring_buffer_debug_info outbound; in out_write_index_show() local
340 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_write_index_show()
341 &outbound); in out_write_index_show()
344 return sysfs_emit(buf, "%d\n", outbound.current_write_index); in out_write_index_show()
353 struct hv_ring_buffer_debug_info outbound; in out_read_bytes_avail_show() local
359 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_read_bytes_avail_show()
360 &outbound); in out_read_bytes_avail_show()
363 return sysfs_emit(buf, "%d\n", outbound.bytes_avail_toread); in out_read_bytes_avail_show()
372 struct hv_ring_buffer_debug_info outbound; in out_write_bytes_avail_show() local
378 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_write_bytes_avail_show()
379 &outbound); in out_write_bytes_avail_show()
382 return sysfs_emit(buf, "%d\n", outbound.bytes_avail_towrite); in out_write_bytes_avail_show()
1574 struct hv_ring_buffer_info *rbi = &channel->outbound; in out_mask_show()
1625 struct hv_ring_buffer_info *rbi = &channel->outbound; in write_avail_show()