From 09e12a20a4b17c2ab353d73650475d0d866044caa6d3c35b0e5b366d432f54a1 Mon Sep 17 00:00:00 2001 From: Olaf Hering Date: Thu, 1 Aug 2013 11:50:51 +0000 Subject: [PATCH] - Double the size of kvp_send_buffer, for current struct hv_kvp_msg OBS-URL: https://build.opensuse.org/package/show/Virtualization/hyper-v?expand=0&rev=63 --- hyper-v.changes | 5 +++++ hyper-v.tools.hv.hv_kvp_daemon.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/hyper-v.changes b/hyper-v.changes index 5ee0b75..ae9611b 100644 --- a/hyper-v.changes +++ b/hyper-v.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Aug 1 13:49:42 CEST 2013 - ohering@suse.de + +- Double the size of kvp_send_buffer, for current struct hv_kvp_msg + ------------------------------------------------------------------- Wed Jul 24 10:18:34 CEST 2013 - ohering@suse.de diff --git a/hyper-v.tools.hv.hv_kvp_daemon.c b/hyper-v.tools.hv.hv_kvp_daemon.c index d4fcafa..b60c680 100644 --- a/hyper-v.tools.hv.hv_kvp_daemon.c +++ b/hyper-v.tools.hv.hv_kvp_daemon.c @@ -79,7 +79,7 @@ enum { DNS }; -static char kvp_send_buffer[4096]; +static char kvp_send_buffer[4096 * 2]; static char kvp_recv_buffer[4096 * 2]; static struct sockaddr_nl addr; static int in_hand_shake = 1;