diff options
author | Dexuan Cui <decui@microsoft.com> | 2019-09-06 01:01:19 +0200 |
---|---|---|
committer | Sasha Levin <sashal@kernel.org> | 2019-09-06 20:52:44 +0200 |
commit | f53335e3289f9ac3a6a8faf6c2f819eee508bd39 (patch) | |
tree | e8206b915df497dd3ab54d6602a4d1da2d873538 /drivers/hv/connection.c | |
parent | Drivers: hv: vmbus: Ignore the offers when resuming from hibernation (diff) | |
download | linux-f53335e3289f9ac3a6a8faf6c2f819eee508bd39.tar.xz linux-f53335e3289f9ac3a6a8faf6c2f819eee508bd39.zip |
Drivers: hv: vmbus: Suspend/resume the vmbus itself for hibernation
Before Linux enters hibernation, it sends the CHANNELMSG_UNLOAD message to
the host so all the offers are gone. After hibernation, Linux needs to
re-negotiate with the host using the same vmbus protocol version (which
was in use before hibernation), and ask the host to re-offer the vmbus
devices.
Signed-off-by: Dexuan Cui <decui@microsoft.com>
Reviewed-by: Michael Kelley <mikelley@microsoft.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/hv/connection.c')
-rw-r--r-- | drivers/hv/connection.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/hv/connection.c b/drivers/hv/connection.c index 09829e15d4a0..806319cd5ccf 100644 --- a/drivers/hv/connection.c +++ b/drivers/hv/connection.c @@ -59,8 +59,7 @@ static __u32 vmbus_get_next_version(__u32 current_version) } } -static int vmbus_negotiate_version(struct vmbus_channel_msginfo *msginfo, - __u32 version) +int vmbus_negotiate_version(struct vmbus_channel_msginfo *msginfo, u32 version) { int ret = 0; unsigned int cur_cpu; |