Lines Matching refs:outbound
289 struct hv_ring_buffer_debug_info outbound; in out_intr_mask_show() local
295 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_intr_mask_show()
296 &outbound); in out_intr_mask_show()
300 return sysfs_emit(buf, "%d\n", outbound.current_interrupt_mask); in out_intr_mask_show()
308 struct hv_ring_buffer_debug_info outbound; in out_read_index_show() local
314 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_read_index_show()
315 &outbound); in out_read_index_show()
318 return sysfs_emit(buf, "%d\n", outbound.current_read_index); in out_read_index_show()
327 struct hv_ring_buffer_debug_info outbound; in out_write_index_show() local
333 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_write_index_show()
334 &outbound); in out_write_index_show()
337 return sysfs_emit(buf, "%d\n", outbound.current_write_index); in out_write_index_show()
346 struct hv_ring_buffer_debug_info outbound; in out_read_bytes_avail_show() local
352 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_read_bytes_avail_show()
353 &outbound); in out_read_bytes_avail_show()
356 return sysfs_emit(buf, "%d\n", outbound.bytes_avail_toread); in out_read_bytes_avail_show()
365 struct hv_ring_buffer_debug_info outbound; in out_write_bytes_avail_show() local
371 ret = hv_ringbuffer_get_debuginfo(&hv_dev->channel->outbound, in out_write_bytes_avail_show()
372 &outbound); in out_write_bytes_avail_show()
375 return sysfs_emit(buf, "%d\n", outbound.bytes_avail_towrite); in out_write_bytes_avail_show()
1544 struct hv_ring_buffer_info *rbi = &channel->outbound; in out_mask_show()
1595 struct hv_ring_buffer_info *rbi = &channel->outbound; in write_avail_show()