diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-09-13 14:32:57 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-09-26 12:01:16 -0400 |
commit | 1cee272b0249c5007391da6cf42903b8f30dbc5a (patch) | |
tree | f7f68670d80561ad6fc7f65644f295178edd4492 | |
parent | 76c52bbe5e5ffc6812dcd49729c09f5a207b4a9a (diff) |
hv: move "client/server_monitor_latency" bus attributes to dev_groups
This moves the "client_monitor_latency" and "server_monitor_latency" bus
attributes to the dev_groups structure, removing the need for it to be
in a temporary structure.
Tested-by: "K. Y. Srinivasan" <kys@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/hv/channel.c | 4 | ||||
-rw-r--r-- | drivers/hv/vmbus_drv.c | 48 | ||||
-rw-r--r-- | include/linux/hyperv.h | 2 |
3 files changed, 38 insertions, 16 deletions
diff --git a/drivers/hv/channel.c b/drivers/hv/channel.c index d600360ee788..ff61464f57ca 100644 --- a/drivers/hv/channel.c +++ b/drivers/hv/channel.c | |||
@@ -70,15 +70,11 @@ void vmbus_get_debug_info(struct vmbus_channel *channel, | |||
70 | u8 monitor_offset = (u8)channel->offermsg.monitorid % 32; | 70 | u8 monitor_offset = (u8)channel->offermsg.monitorid % 32; |
71 | 71 | ||
72 | monitorpage = vmbus_connection.monitor_pages[0]; | 72 | monitorpage = vmbus_connection.monitor_pages[0]; |
73 | debuginfo->servermonitor_latency = | ||
74 | monitorpage->latency[monitor_group][monitor_offset]; | ||
75 | debuginfo->servermonitor_connectionid = | 73 | debuginfo->servermonitor_connectionid = |
76 | monitorpage->parameter[monitor_group] | 74 | monitorpage->parameter[monitor_group] |
77 | [monitor_offset].connectionid.u.id; | 75 | [monitor_offset].connectionid.u.id; |
78 | 76 | ||
79 | monitorpage = vmbus_connection.monitor_pages[1]; | 77 | monitorpage = vmbus_connection.monitor_pages[1]; |
80 | debuginfo->clientmonitor_latency = | ||
81 | monitorpage->latency[monitor_group][monitor_offset]; | ||
82 | debuginfo->clientmonitor_connectionid = | 78 | debuginfo->clientmonitor_connectionid = |
83 | monitorpage->parameter[monitor_group] | 79 | monitorpage->parameter[monitor_group] |
84 | [monitor_offset].connectionid.u.id; | 80 | [monitor_offset].connectionid.u.id; |
diff --git a/drivers/hv/vmbus_drv.c b/drivers/hv/vmbus_drv.c index 5a44957b7064..461b989835b6 100644 --- a/drivers/hv/vmbus_drv.c +++ b/drivers/hv/vmbus_drv.c | |||
@@ -47,9 +47,7 @@ static struct completion probe_event; | |||
47 | static int irq; | 47 | static int irq; |
48 | 48 | ||
49 | struct hv_device_info { | 49 | struct hv_device_info { |
50 | u32 server_monitor_latency; | ||
51 | u32 server_monitor_conn_id; | 50 | u32 server_monitor_conn_id; |
52 | u32 client_monitor_latency; | ||
53 | u32 client_monitor_conn_id; | 51 | u32 client_monitor_conn_id; |
54 | 52 | ||
55 | struct hv_dev_port_info inbound; | 53 | struct hv_dev_port_info inbound; |
@@ -75,10 +73,8 @@ static void get_channel_info(struct hv_device *device, | |||
75 | 73 | ||
76 | vmbus_get_debug_info(device->channel, &debug_info); | 74 | vmbus_get_debug_info(device->channel, &debug_info); |
77 | 75 | ||
78 | info->server_monitor_latency = debug_info.servermonitor_latency; | ||
79 | info->server_monitor_conn_id = debug_info.servermonitor_connectionid; | 76 | info->server_monitor_conn_id = debug_info.servermonitor_connectionid; |
80 | 77 | ||
81 | info->client_monitor_latency = debug_info.clientmonitor_latency; | ||
82 | info->client_monitor_conn_id = debug_info.clientmonitor_connectionid; | 78 | info->client_monitor_conn_id = debug_info.clientmonitor_connectionid; |
83 | 79 | ||
84 | info->inbound.int_mask = debug_info.inbound.current_interrupt_mask; | 80 | info->inbound.int_mask = debug_info.inbound.current_interrupt_mask; |
@@ -151,13 +147,9 @@ static ssize_t vmbus_show_device_attr(struct device *dev, | |||
151 | } else if (!strcmp(dev_attr->attr.name, "in_write_bytes_avail")) { | 147 | } else if (!strcmp(dev_attr->attr.name, "in_write_bytes_avail")) { |
152 | ret = sprintf(buf, "%d\n", | 148 | ret = sprintf(buf, "%d\n", |
153 | device_info->inbound.bytes_avail_towrite); | 149 | device_info->inbound.bytes_avail_towrite); |
154 | } else if (!strcmp(dev_attr->attr.name, "server_monitor_latency")) { | ||
155 | ret = sprintf(buf, "%d\n", device_info->server_monitor_latency); | ||
156 | } else if (!strcmp(dev_attr->attr.name, "server_monitor_conn_id")) { | 150 | } else if (!strcmp(dev_attr->attr.name, "server_monitor_conn_id")) { |
157 | ret = sprintf(buf, "%d\n", | 151 | ret = sprintf(buf, "%d\n", |
158 | device_info->server_monitor_conn_id); | 152 | device_info->server_monitor_conn_id); |
159 | } else if (!strcmp(dev_attr->attr.name, "client_monitor_latency")) { | ||
160 | ret = sprintf(buf, "%d\n", device_info->client_monitor_latency); | ||
161 | } else if (!strcmp(dev_attr->attr.name, "client_monitor_conn_id")) { | 153 | } else if (!strcmp(dev_attr->attr.name, "client_monitor_conn_id")) { |
162 | ret = sprintf(buf, "%d\n", | 154 | ret = sprintf(buf, "%d\n", |
163 | device_info->client_monitor_conn_id); | 155 | device_info->client_monitor_conn_id); |
@@ -184,6 +176,14 @@ static u32 channel_pending(struct vmbus_channel *channel, | |||
184 | return monitor_page->trigger_group[monitor_group].pending; | 176 | return monitor_page->trigger_group[monitor_group].pending; |
185 | } | 177 | } |
186 | 178 | ||
179 | static u32 channel_latency(struct vmbus_channel *channel, | ||
180 | struct hv_monitor_page *monitor_page) | ||
181 | { | ||
182 | u8 monitor_group = channel_monitor_group(channel); | ||
183 | u8 monitor_offset = channel_monitor_offset(channel); | ||
184 | return monitor_page->latency[monitor_group][monitor_offset]; | ||
185 | } | ||
186 | |||
187 | static ssize_t id_show(struct device *dev, struct device_attribute *dev_attr, | 187 | static ssize_t id_show(struct device *dev, struct device_attribute *dev_attr, |
188 | char *buf) | 188 | char *buf) |
189 | { | 189 | { |
@@ -280,6 +280,34 @@ static ssize_t client_monitor_pending_show(struct device *dev, | |||
280 | } | 280 | } |
281 | static DEVICE_ATTR_RO(client_monitor_pending); | 281 | static DEVICE_ATTR_RO(client_monitor_pending); |
282 | 282 | ||
283 | static ssize_t server_monitor_latency_show(struct device *dev, | ||
284 | struct device_attribute *dev_attr, | ||
285 | char *buf) | ||
286 | { | ||
287 | struct hv_device *hv_dev = device_to_hv_device(dev); | ||
288 | |||
289 | if (!hv_dev->channel) | ||
290 | return -ENODEV; | ||
291 | return sprintf(buf, "%d\n", | ||
292 | channel_latency(hv_dev->channel, | ||
293 | vmbus_connection.monitor_pages[0])); | ||
294 | } | ||
295 | static DEVICE_ATTR_RO(server_monitor_latency); | ||
296 | |||
297 | static ssize_t client_monitor_latency_show(struct device *dev, | ||
298 | struct device_attribute *dev_attr, | ||
299 | char *buf) | ||
300 | { | ||
301 | struct hv_device *hv_dev = device_to_hv_device(dev); | ||
302 | |||
303 | if (!hv_dev->channel) | ||
304 | return -ENODEV; | ||
305 | return sprintf(buf, "%d\n", | ||
306 | channel_latency(hv_dev->channel, | ||
307 | vmbus_connection.monitor_pages[1])); | ||
308 | } | ||
309 | static DEVICE_ATTR_RO(client_monitor_latency); | ||
310 | |||
283 | static struct attribute *vmbus_attrs[] = { | 311 | static struct attribute *vmbus_attrs[] = { |
284 | &dev_attr_id.attr, | 312 | &dev_attr_id.attr, |
285 | &dev_attr_state.attr, | 313 | &dev_attr_state.attr, |
@@ -289,16 +317,16 @@ static struct attribute *vmbus_attrs[] = { | |||
289 | &dev_attr_modalias.attr, | 317 | &dev_attr_modalias.attr, |
290 | &dev_attr_server_monitor_pending.attr, | 318 | &dev_attr_server_monitor_pending.attr, |
291 | &dev_attr_client_monitor_pending.attr, | 319 | &dev_attr_client_monitor_pending.attr, |
320 | &dev_attr_server_monitor_latency.attr, | ||
321 | &dev_attr_client_monitor_latency.attr, | ||
292 | NULL, | 322 | NULL, |
293 | }; | 323 | }; |
294 | ATTRIBUTE_GROUPS(vmbus); | 324 | ATTRIBUTE_GROUPS(vmbus); |
295 | 325 | ||
296 | /* Set up per device attributes in /sys/bus/vmbus/devices/<bus device> */ | 326 | /* Set up per device attributes in /sys/bus/vmbus/devices/<bus device> */ |
297 | static struct device_attribute vmbus_device_attrs[] = { | 327 | static struct device_attribute vmbus_device_attrs[] = { |
298 | __ATTR(server_monitor_latency, S_IRUGO, vmbus_show_device_attr, NULL), | ||
299 | __ATTR(server_monitor_conn_id, S_IRUGO, vmbus_show_device_attr, NULL), | 328 | __ATTR(server_monitor_conn_id, S_IRUGO, vmbus_show_device_attr, NULL), |
300 | 329 | ||
301 | __ATTR(client_monitor_latency, S_IRUGO, vmbus_show_device_attr, NULL), | ||
302 | __ATTR(client_monitor_conn_id, S_IRUGO, vmbus_show_device_attr, NULL), | 330 | __ATTR(client_monitor_conn_id, S_IRUGO, vmbus_show_device_attr, NULL), |
303 | 331 | ||
304 | __ATTR(out_intr_mask, S_IRUGO, vmbus_show_device_attr, NULL), | 332 | __ATTR(out_intr_mask, S_IRUGO, vmbus_show_device_attr, NULL), |
diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index f0a7d27ffb21..ec1e5033bb99 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h | |||
@@ -900,9 +900,7 @@ enum vmbus_channel_state { | |||
900 | }; | 900 | }; |
901 | 901 | ||
902 | struct vmbus_channel_debug_info { | 902 | struct vmbus_channel_debug_info { |
903 | u32 servermonitor_latency; | ||
904 | u32 servermonitor_connectionid; | 903 | u32 servermonitor_connectionid; |
905 | u32 clientmonitor_latency; | ||
906 | u32 clientmonitor_connectionid; | 904 | u32 clientmonitor_connectionid; |
907 | 905 | ||
908 | struct hv_ring_buffer_debug_info inbound; | 906 | struct hv_ring_buffer_debug_info inbound; |