Commit 6d81d330 authored by K. Y. Srinivasan's avatar K. Y. Srinivasan Committed by Greg Kroah-Hartman

Staging: hv: Get rid of some dead code in connection.c

Get rid some commented code and dated comments.T
Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarHaiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarAbhishek Kane <v-abkane@microsoft.com>
Signed-off-by: default avatarHank Janssen <hjanssen@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent b0043863
......@@ -263,11 +263,6 @@ static void process_chn_event(u32 relid)
if (channel) {
vmbus_onchannel_event(channel);
/*
* WorkQueueQueueWorkItem(channel->dataWorkQueue,
* vmbus_onchannel_event,
* (void*)channel);
*/
} else {
pr_err("channel not found for relid - %u\n", relid);
}
......@@ -295,7 +290,10 @@ void vmbus_on_event(unsigned long data)
relid = (dword << 5) + bit;
if (relid == 0) {
/* special case - vmbus channel protocol msg */
/*
* Special case - vmbus
* channel protocol msg
*/
continue;
}
process_chn_event(relid);
......
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