diff options
author | 2017-02-11 23:02:18 -0700 | |
---|---|---|
committer | 2017-02-14 10:20:35 -0800 | |
commit | 51c6ce2ae35980c755af33461c3138570ded615e (patch) | |
tree | bbb47d5f65cb0358839ef65c2a6ee029697f27f5 | |
parent | binder: Add support for file-descriptor arrays (diff) | |
download | wireguard-linux-51c6ce2ae35980c755af33461c3138570ded615e.tar.xz wireguard-linux-51c6ce2ae35980c755af33461c3138570ded615e.zip |
vmbus: callback is in softirq not workqueue
The callback is done via tasklet not workqueue.
Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com>
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to '')
-rw-r--r-- | include/linux/hyperv.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index e208e6437f5b..c9b6d533958f 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h @@ -32,7 +32,6 @@ #include <linux/scatterlist.h> #include <linux/list.h> #include <linux/timer.h> -#include <linux/workqueue.h> #include <linux/completion.h> #include <linux/device.h> #include <linux/mod_devicetable.h> @@ -743,9 +742,7 @@ struct vmbus_channel { struct vmbus_close_msg close_msg; - /* Channel callback are invoked in this workqueue context */ - /* HANDLE dataWorkQueue; */ - + /* Channel callback's invoked in softirq context */ void (*onchannel_callback)(void *context); void *channel_callback_context; |