svn commit: r307479 - stable/11/sys/dev/hyperv/utilities

Sepherosa Ziehau sephe at FreeBSD.org
Mon Oct 17 06:18:12 UTC 2016


Author: sephe
Date: Mon Oct 17 06:18:10 2016
New Revision: 307479
URL: https://svnweb.freebsd.org/changeset/base/307479

Log:
  MFC 304331
  
      hyperv/kvp: Remove unnecessary function parameter.
  
      Sponsored by:   Microsoft
      Differential Revision:  https://reviews.freebsd.org/D7550

Modified:
  stable/11/sys/dev/hyperv/utilities/hv_kvp.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/hyperv/utilities/hv_kvp.c
==============================================================================
--- stable/11/sys/dev/hyperv/utilities/hv_kvp.c	Mon Oct 17 06:16:08 2016	(r307478)
+++ stable/11/sys/dev/hyperv/utilities/hv_kvp.c	Mon Oct 17 06:18:10 2016	(r307479)
@@ -217,10 +217,9 @@ hv_kvp_transaction_init(hv_kvp_sc *sc, u
  * hv_kvp - version neogtiation function
  */
 static void
-hv_kvp_negotiate_version(struct hv_vmbus_icmsg_hdr *icmsghdrp,
-			 struct hv_vmbus_icmsg_negotiate *negop,
-			 uint8_t *buf)
+hv_kvp_negotiate_version(struct hv_vmbus_icmsg_hdr *icmsghdrp, uint8_t *buf)
 {
+	struct hv_vmbus_icmsg_negotiate *negop;
 	int icframe_vercnt;
 	int icmsg_vercnt;
 
@@ -641,7 +640,7 @@ hv_kvp_process_request(void *context, in
 
 		hv_kvp_transaction_init(sc, recvlen, requestid, kvp_buf);
 		if (icmsghdrp->icmsgtype == HV_ICMSGTYPE_NEGOTIATE) {
-			hv_kvp_negotiate_version(icmsghdrp, NULL, kvp_buf);
+			hv_kvp_negotiate_version(icmsghdrp, kvp_buf);
 			hv_kvp_respond_host(sc, ret);
 
 			/*


More information about the svn-src-all mailing list