Commit 03bad714 authored by Stephen Hemminger's avatar Stephen Hemminger Committed by Greg Kroah-Hartman

vmbus: more host signalling avoidance

Don't signal host if it has disabled interrupts for that
ring buffer. Check the feature bit to see if host supports
pending send size flag.
Signed-off-by: default avatarStephen Hemminger <sthemmin@microsoft.com>
Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 05d00bc9
...@@ -396,7 +396,6 @@ void hv_pkt_iter_close(struct vmbus_channel *channel) ...@@ -396,7 +396,6 @@ void hv_pkt_iter_close(struct vmbus_channel *channel)
{ {
struct hv_ring_buffer_info *rbi = &channel->inbound; struct hv_ring_buffer_info *rbi = &channel->inbound;
u32 orig_write_sz = hv_get_bytes_to_write(rbi); u32 orig_write_sz = hv_get_bytes_to_write(rbi);
u32 pending_sz;
/* /*
* Make sure all reads are done before we update the read index since * Make sure all reads are done before we update the read index since
...@@ -419,15 +418,27 @@ void hv_pkt_iter_close(struct vmbus_channel *channel) ...@@ -419,15 +418,27 @@ void hv_pkt_iter_close(struct vmbus_channel *channel)
*/ */
virt_mb(); virt_mb();
pending_sz = READ_ONCE(rbi->ring_buffer->pending_send_sz); /* If host has disabled notifications then skip */
/* If the other end is not blocked on write don't bother. */ if (rbi->ring_buffer->interrupt_mask)
if (pending_sz == 0)
return; return;
if (hv_get_bytes_to_write(rbi) < pending_sz) if (rbi->ring_buffer->feature_bits.feat_pending_send_sz) {
return; u32 pending_sz = READ_ONCE(rbi->ring_buffer->pending_send_sz);
if (orig_write_sz < pending_sz) /*
vmbus_setevent(channel); * If there was space before we began iteration,
* then host was not blocked. Also handles case where
* pending_sz is zero then host has nothing pending
* and does not need to be signaled.
*/
if (orig_write_sz > pending_sz)
return;
/* If pending write will not fit, don't give false hope. */
if (hv_get_bytes_to_write(rbi) < pending_sz)
return;
}
vmbus_setevent(channel);
} }
EXPORT_SYMBOL_GPL(hv_pkt_iter_close); EXPORT_SYMBOL_GPL(hv_pkt_iter_close);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment