Commit 7c959127 authored by Vitaly Kuznetsov's avatar Vitaly Kuznetsov Committed by Greg Kroah-Hartman

Drivers: hv: utils: unify driver registration reporting

Unify driver registration reporting and move it to debug level as normally daemons write to syslog themselves
and these kernel messages are useless.
Signed-off-by: default avatarVitaly Kuznetsov <vkuznets@redhat.com>
Tested-by: default avatarAlex Ng <alexng@microsoft.com>
Signed-off-by: default avatarK. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a4d1ee5b
...@@ -107,8 +107,7 @@ static int fcopy_handle_handshake(u32 version) ...@@ -107,8 +107,7 @@ static int fcopy_handle_handshake(u32 version)
*/ */
return -EINVAL; return -EINVAL;
} }
pr_info("FCP: user-mode registering done. Daemon version: %d\n", pr_debug("FCP: userspace daemon ver. %d registered\n", version);
version);
fcopy_transaction.state = HVUTIL_READY; fcopy_transaction.state = HVUTIL_READY;
hv_poll_channel(fcopy_transaction.fcopy_context, hv_poll_channel(fcopy_transaction.fcopy_context,
hv_fcopy_onchannelcallback); hv_fcopy_onchannelcallback);
......
...@@ -150,7 +150,8 @@ static int kvp_handle_handshake(struct hv_kvp_msg *msg) ...@@ -150,7 +150,8 @@ static int kvp_handle_handshake(struct hv_kvp_msg *msg)
/* /*
* We have a compatible daemon; complete the handshake. * We have a compatible daemon; complete the handshake.
*/ */
pr_info("KVP: user-mode registering done.\n"); pr_debug("KVP: userspace daemon ver. %d registered\n",
KVP_OP_REGISTER);
kvp_register(dm_reg_value); kvp_register(dm_reg_value);
kvp_transaction.state = HVUTIL_READY; kvp_transaction.state = HVUTIL_READY;
......
...@@ -113,7 +113,7 @@ static int vss_handle_handshake(struct hv_vss_msg *vss_msg) ...@@ -113,7 +113,7 @@ static int vss_handle_handshake(struct hv_vss_msg *vss_msg)
return -EINVAL; return -EINVAL;
} }
vss_transaction.state = HVUTIL_READY; vss_transaction.state = HVUTIL_READY;
pr_info("VSS daemon registered\n"); pr_debug("VSS: userspace daemon ver. %d registered\n", dm_reg_value);
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment