]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
Drivers: hv: vmbus: Export the vmbus_set_event() API
authorK. Y. Srinivasan <kys@microsoft.com>
Sun, 3 Apr 2016 00:59:49 +0000 (17:59 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 30 Apr 2016 21:00:19 +0000 (14:00 -0700)
In preparation for moving some ring buffer functionality out of the
vmbus driver, export the API for signaling the host.

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/hv/connection.c
drivers/hv/hyperv_vmbus.h
include/linux/hyperv.h

index d02f1373dd98c6d82777e744ba9679eefc6a80e0..fcf8a02dc0eadb04522ce782be64a37dc8014813 100644 (file)
@@ -495,3 +495,4 @@ void vmbus_set_event(struct vmbus_channel *channel)
 
        hv_do_hypercall(HVCALL_SIGNAL_EVENT, channel->sig_event, NULL);
 }
+EXPORT_SYMBOL_GPL(vmbus_set_event);
index 12321b93a756b947f09b95f79dade93849794040..e5c586fab0e57dd616c8b8da0142896f8bd398e3 100644 (file)
@@ -667,8 +667,6 @@ void vmbus_disconnect(void);
 
 int vmbus_post_msg(void *buffer, size_t buflen);
 
-void vmbus_set_event(struct vmbus_channel *channel);
-
 void vmbus_on_event(unsigned long data);
 void vmbus_on_msg_dpc(unsigned long data);
 
index 66226ceade37665efd6a26b00ab3b4afe2216bc7..40fd608475f7c85595e355f08afef966e2603d6f 100644 (file)
@@ -1365,4 +1365,5 @@ extern __u32 vmbus_proto_version;
 
 int vmbus_send_tl_connect_request(const uuid_le *shv_guest_servie_id,
                                  const uuid_le *shv_host_servie_id);
+void vmbus_set_event(struct vmbus_channel *channel);
 #endif /* _HYPERV_H */