svn commit: r296188 - head/sys/dev/hyperv/vmbus

Sepherosa Ziehau sephe at FreeBSD.org
Mon Feb 29 09:14:56 UTC 2016


Author: sephe
Date: Mon Feb 29 09:14:55 2016
New Revision: 296188
URL: https://svnweb.freebsd.org/changeset/base/296188

Log:
  hyperv/channel: Add sysctl node for channel owner cpu
  
  And add sysctl node for sub-channel's channel id.
  
  MFC after:	1 week
  Sponsored by:	Microsoft OSTC
  Differential Revision:	https://reviews.freebsd.org/D5489

Modified:
  head/sys/dev/hyperv/vmbus/hv_channel.c

Modified: head/sys/dev/hyperv/vmbus/hv_channel.c
==============================================================================
--- head/sys/dev/hyperv/vmbus/hv_channel.c	Mon Feb 29 09:05:33 2016	(r296187)
+++ head/sys/dev/hyperv/vmbus/hv_channel.c	Mon Feb 29 09:14:55 2016	(r296188)
@@ -122,8 +122,14 @@ hv_vmbus_channel_stat(hv_vmbus_channel* 
 		devch_id_sysctl = SYSCTL_ADD_NODE(ctx,
 			SYSCTL_CHILDREN(devch_sub_sysctl),
 			OID_AUTO, name, CTLFLAG_RD, 0, "");
+
+		SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(devch_id_sysctl),
+		    OID_AUTO, "chanid", CTLFLAG_RD,
+		    &channel->offer_msg.child_rel_id, 0, "channel id");
 	}
-	
+	SYSCTL_ADD_UINT(ctx, SYSCTL_CHILDREN(devch_id_sysctl), OID_AUTO,
+	    "cpu", CTLFLAG_RD, &channel->target_cpu, 0, "owner CPU id");
+
 	devch_id_in_sysctl = SYSCTL_ADD_NODE(ctx,
                     SYSCTL_CHILDREN(devch_id_sysctl),
                     OID_AUTO,


More information about the svn-src-head mailing list