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

Staging: hv: vmbus: Get rid of the poll timer in the channel state

Since tis is not used anymore,  get rid of the poll timer in the channel state.
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 avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 0a62040e
...@@ -555,7 +555,6 @@ void vmbus_close(struct vmbus_channel *channel) ...@@ -555,7 +555,6 @@ void vmbus_close(struct vmbus_channel *channel)
/* Stop callback and cancel the timer asap */ /* Stop callback and cancel the timer asap */
channel->onchannel_callback = NULL; channel->onchannel_callback = NULL;
del_timer_sync(&channel->poll_timer);
/* Send a closing message */ /* Send a closing message */
info = kmalloc(sizeof(*info) + info = kmalloc(sizeof(*info) +
......
...@@ -283,10 +283,6 @@ static struct vmbus_channel *alloc_channel(void) ...@@ -283,10 +283,6 @@ static struct vmbus_channel *alloc_channel(void)
spin_lock_init(&channel->inbound_lock); spin_lock_init(&channel->inbound_lock);
init_timer(&channel->poll_timer);
channel->poll_timer.data = (unsigned long)channel;
channel->poll_timer.function = vmbus_ontimer;
channel->controlwq = create_workqueue("hv_vmbus_ctl"); channel->controlwq = create_workqueue("hv_vmbus_ctl");
if (!channel->controlwq) { if (!channel->controlwq) {
kfree(channel); kfree(channel);
...@@ -315,7 +311,6 @@ static void release_channel(struct work_struct *work) ...@@ -315,7 +311,6 @@ static void release_channel(struct work_struct *work)
*/ */
void free_channel(struct vmbus_channel *channel) void free_channel(struct vmbus_channel *channel)
{ {
del_timer_sync(&channel->poll_timer);
/* /*
* We have to release the channel's workqueue/thread in the vmbus's * We have to release the channel's workqueue/thread in the vmbus's
......
...@@ -528,7 +528,6 @@ struct vmbus_channel { ...@@ -528,7 +528,6 @@ struct vmbus_channel {
struct hv_device *device_obj; struct hv_device *device_obj;
struct timer_list poll_timer; /* SA-111 workaround */
struct work_struct work; struct work_struct work;
enum vmbus_channel_state state; enum vmbus_channel_state state;
......
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