Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1458515 > unrolled thread

[PATCH 1/2] Drivers: hv: make VMBus bus ids persistent

Started byVitaly Kuznetsov <vkuznets@redhat.com>
First post2016-08-09 10:50 +0200
Last post2016-08-09 10:50 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 1/2] Drivers: hv: make VMBus bus ids persistent Vitaly Kuznetsov <vkuznets@redhat.com> - 2016-08-09 10:50 +0200

#1458515 — [PATCH 1/2] Drivers: hv: make VMBus bus ids persistent

FromVitaly Kuznetsov <vkuznets@redhat.com>
Date2016-08-09 10:50 +0200
Subject[PATCH 1/2] Drivers: hv: make VMBus bus ids persistent
Message-ID<s4aTw-5c9-5@gated-at.bofh.it>
Some tools use bus ids to identify devices and they count on the fact
that these ids are persistent across reboot. This may be not true for
VMBus as we use auto incremented counter from alloc_channel() as such
id. Switch to using child_relid from channel offer, this id is supposed
to be persistent.

Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
---
 drivers/hv/vmbus_drv.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/hv/vmbus_drv.c b/drivers/hv/vmbus_drv.c
index e82f7e1..ef42909 100644
--- a/drivers/hv/vmbus_drv.c
+++ b/drivers/hv/vmbus_drv.c
@@ -962,7 +962,7 @@ int vmbus_device_register(struct hv_device *child_device_obj)
 	int ret = 0;
 
 	dev_set_name(&child_device_obj->device, "vmbus_%d",
-		     child_device_obj->channel->id);
+		     child_device_obj->channel->offermsg.child_relid);
 
 	child_device_obj->device.bus = &hv_bus;
 	child_device_obj->device.parent = &hv_acpi_dev->dev;
-- 
2.7.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web