free_channel() has been invoked in
vmbus_remove() -> hv_process_channel_removal(), or vmbus_remove() ->
... -> vmbus_close_internal() -> hv_process_channel_removal().

We also change to use list_for_each_entry_safe(), because the entry
is removed in hv_process_channel_removal().

Thank Dan Carpenter for finding the issue!

Signed-off-by: Dexuan Cui <de...@microsoft.com>
Reported-by: Dan Carpenter <dan.carpen...@oracle.com>
Cc: K. Y. Srinivasan <k...@microsoft.com>
Cc: Vitaly Kuznetsov <vkuzn...@redhat.com>
---
 drivers/hv/channel_mgmt.c | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/drivers/hv/channel_mgmt.c b/drivers/hv/channel_mgmt.c
index 0eeb1b3..865a3af 100644
--- a/drivers/hv/channel_mgmt.c
+++ b/drivers/hv/channel_mgmt.c
@@ -212,11 +212,16 @@ void hv_process_channel_removal(struct vmbus_channel 
*channel, u32 relid)
 
 void vmbus_free_channels(void)
 {
-       struct vmbus_channel *channel;
+       struct vmbus_channel *channel, *tmp;
+
+       list_for_each_entry_safe(channel, tmp, &vmbus_connection.chn_list,
+               listentry) {
+               /* if we don't set rescind to true, vmbus_close_internal()
+                * won't invoke hv_process_channel_removal().
+                */
+               channel->rescind = true;
 
-       list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) {
                vmbus_device_unregister(channel->device_obj);
-               free_channel(channel);
        }
 }
 
-- 
2.1.0

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to