aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hv/hyperv_vmbus.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/hv/hyperv_vmbus.h')
-rw-r--r--drivers/hv/hyperv_vmbus.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/hv/hyperv_vmbus.h b/drivers/hv/hyperv_vmbus.h
index 72eaba3d50fc..87d3d7da78f8 100644
--- a/drivers/hv/hyperv_vmbus.h
+++ b/drivers/hv/hyperv_vmbus.h
@@ -335,7 +335,14 @@ struct vmbus_connection {
335 struct list_head chn_list; 335 struct list_head chn_list;
336 struct mutex channel_mutex; 336 struct mutex channel_mutex;
337 337
338 /*
339 * An offer message is handled first on the work_queue, and then
340 * is further handled on handle_primary_chan_wq or
341 * handle_sub_chan_wq.
342 */
338 struct workqueue_struct *work_queue; 343 struct workqueue_struct *work_queue;
344 struct workqueue_struct *handle_primary_chan_wq;
345 struct workqueue_struct *handle_sub_chan_wq;
339}; 346};
340 347
341 348