From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752497AbcHIIq1 (ORCPT ); Tue, 9 Aug 2016 04:46:27 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51048 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751596AbcHIIqY (ORCPT ); Tue, 9 Aug 2016 04:46:24 -0400 From: Vitaly Kuznetsov To: devel@linuxdriverproject.org Cc: linux-kernel@vger.kernel.org, Haiyang Zhang , "K. Y. Srinivasan" Subject: [PATCH 1/2] Drivers: hv: make VMBus bus ids persistent Date: Tue, 9 Aug 2016 10:46:18 +0200 Message-Id: <1470732379-5013-2-git-send-email-vkuznets@redhat.com> In-Reply-To: <1470732379-5013-1-git-send-email-vkuznets@redhat.com> References: <1470732379-5013-1-git-send-email-vkuznets@redhat.com> X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Tue, 09 Aug 2016 08:46:23 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 --- 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