Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Feb 2016 09:14:55 +0000 (UTC)
From:      Sepherosa Ziehau <sephe@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r296188 - head/sys/dev/hyperv/vmbus
Message-ID:  <201602290914.u1T9EtQR083643@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602290914.u1T9EtQR083643>