]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Drivers: hv: vmbus: Fix a bug in hv_need_to_signal()
authorK. Y. Srinivasan <kys@microsoft.com>
Fri, 29 Mar 2013 21:30:38 +0000 (14:30 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 8 May 2013 03:33:08 +0000 (20:33 -0700)
commit 288fa3e022eb85fa151e0f9bcd15caeb81679af6 upstream.

As part of updating the vmbus protocol, the function hv_need_to_signal()
was introduced. This functions helps optimize signalling from guest to
host. The newly added memory barrier is needed to ensure that we correctly
decide when to signal the host.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>
Reported-by: Olaf Hering <olh@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/hv/ring_buffer.c

index cafa72ffdc30074ee60c36d8ccb1a059eb66a42c..d6fbb5772b8d62ff371d968bde11779a3a47302b 100644 (file)
@@ -71,6 +71,7 @@ u32 hv_end_read(struct hv_ring_buffer_info *rbi)
 
 static bool hv_need_to_signal(u32 old_write, struct hv_ring_buffer_info *rbi)
 {
+       smp_mb();
        if (rbi->ring_buffer->interrupt_mask)
                return false;