diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2012-08-13 13:06:51 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-08-16 16:48:07 -0400 |
commit | 9b5957803cb444a99275355eb2309b6fecc63c5f (patch) | |
tree | 87a9d2885d7fbce7e5ce90b7cca1b9a871f586e3 /drivers/hv/hv_util.c | |
parent | 07646d9c0938d40b943c592dd1c6435ab24c4e2f (diff) |
Drivers: hv: Add KVP definitions for IP address injection
Add the necessary definitions for supporting the IP injection functionality.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>
Reviewed-by: Olaf Hering <olaf@aepfle.de>
Reviewed-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/hv/hv_util.c')
-rw-r--r-- | drivers/hv/hv_util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hv/hv_util.c b/drivers/hv/hv_util.c index d3ac6a40118b..a0667de7a04c 100644 --- a/drivers/hv/hv_util.c +++ b/drivers/hv/hv_util.c | |||
@@ -263,7 +263,7 @@ static int util_probe(struct hv_device *dev, | |||
263 | (struct hv_util_service *)dev_id->driver_data; | 263 | (struct hv_util_service *)dev_id->driver_data; |
264 | int ret; | 264 | int ret; |
265 | 265 | ||
266 | srv->recv_buffer = kmalloc(PAGE_SIZE, GFP_KERNEL); | 266 | srv->recv_buffer = kmalloc(PAGE_SIZE * 2, GFP_KERNEL); |
267 | if (!srv->recv_buffer) | 267 | if (!srv->recv_buffer) |
268 | return -ENOMEM; | 268 | return -ENOMEM; |
269 | if (srv->util_init) { | 269 | if (srv->util_init) { |
@@ -274,7 +274,7 @@ static int util_probe(struct hv_device *dev, | |||
274 | } | 274 | } |
275 | } | 275 | } |
276 | 276 | ||
277 | ret = vmbus_open(dev->channel, 2 * PAGE_SIZE, 2 * PAGE_SIZE, NULL, 0, | 277 | ret = vmbus_open(dev->channel, 4 * PAGE_SIZE, 4 * PAGE_SIZE, NULL, 0, |
278 | srv->util_cb, dev->channel); | 278 | srv->util_cb, dev->channel); |
279 | if (ret) | 279 | if (ret) |
280 | goto error; | 280 | goto error; |