diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2013-03-15 15:25:39 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-03-15 15:11:50 -0400 |
commit | 7a64b864a0989302b5f6869f8b65b630b10bd9db (patch) | |
tree | fbaa311112e1e69aa63be78d38dc8835333ef656 /drivers/hv | |
parent | 75db601496e97ffa2476dcd00053c0ca95e977a5 (diff) |
Drivers: hv: balloon: Do not request completion notification
There is no need to request completion notification; get rid of it.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/hv')
-rw-r--r-- | drivers/hv/hv_balloon.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/hv/hv_balloon.c b/drivers/hv/hv_balloon.c index 37873213e24f..7fb72dd05ba2 100644 --- a/drivers/hv/hv_balloon.c +++ b/drivers/hv/hv_balloon.c | |||
@@ -962,8 +962,7 @@ static int balloon_probe(struct hv_device *dev, | |||
962 | ret = vmbus_sendpacket(dev->channel, &version_req, | 962 | ret = vmbus_sendpacket(dev->channel, &version_req, |
963 | sizeof(struct dm_version_request), | 963 | sizeof(struct dm_version_request), |
964 | (unsigned long)NULL, | 964 | (unsigned long)NULL, |
965 | VM_PKT_DATA_INBAND, | 965 | VM_PKT_DATA_INBAND, 0); |
966 | VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); | ||
967 | if (ret) | 966 | if (ret) |
968 | goto probe_error2; | 967 | goto probe_error2; |
969 | 968 | ||
@@ -1009,8 +1008,7 @@ static int balloon_probe(struct hv_device *dev, | |||
1009 | ret = vmbus_sendpacket(dev->channel, &cap_msg, | 1008 | ret = vmbus_sendpacket(dev->channel, &cap_msg, |
1010 | sizeof(struct dm_capabilities), | 1009 | sizeof(struct dm_capabilities), |
1011 | (unsigned long)NULL, | 1010 | (unsigned long)NULL, |
1012 | VM_PKT_DATA_INBAND, | 1011 | VM_PKT_DATA_INBAND, 0); |
1013 | VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); | ||
1014 | if (ret) | 1012 | if (ret) |
1015 | goto probe_error2; | 1013 | goto probe_error2; |
1016 | 1014 | ||