aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hv
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/hv')
-rw-r--r--drivers/hv/hv_kvp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/hv/hv_kvp.c b/drivers/hv/hv_kvp.c
index 0ef4c1f6ca54..779109b6f4f0 100644
--- a/drivers/hv/hv_kvp.c
+++ b/drivers/hv/hv_kvp.c
@@ -78,7 +78,7 @@ kvp_register(void)
78 78
79 if (msg) { 79 if (msg) {
80 kvp_msg = (struct hv_kvp_msg *)msg->data; 80 kvp_msg = (struct hv_kvp_msg *)msg->data;
81 version = kvp_msg->body.kvp_version; 81 version = kvp_msg->body.kvp_register.version;
82 msg->id.idx = CN_KVP_IDX; 82 msg->id.idx = CN_KVP_IDX;
83 msg->id.val = CN_KVP_VAL; 83 msg->id.val = CN_KVP_VAL;
84 84
@@ -122,7 +122,8 @@ kvp_cn_callback(struct cn_msg *msg, struct netlink_skb_parms *nsp)
122 * to the host. But first, cancel the timeout. 122 * to the host. But first, cancel the timeout.
123 */ 123 */
124 if (cancel_delayed_work_sync(&kvp_work)) 124 if (cancel_delayed_work_sync(&kvp_work))
125 kvp_respond_to_host(data->data.key, data->data.value, 125 kvp_respond_to_host(data->data.key,
126 data->data.value,
126 !strlen(data->data.key)); 127 !strlen(data->data.key));
127 } 128 }
128} 129}