]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
Drivers: hv: vmbus: incorrect device name is printed when child device is unregistered
authorFernando Soto <fsoto@bluecatnetworks.com>
Fri, 14 Jun 2013 23:13:35 +0000 (23:13 +0000)
committerZefan Li <lizefan@huawei.com>
Tue, 14 Apr 2015 09:34:00 +0000 (17:34 +0800)
commit7191cb93e0ba61583388dd51a92ee5176d4c804c
tree270d840bf9b7f665c4a34b807f355d5003431285
parent28cd54f27d309bd65db8ff4b8e6275345287484c
Drivers: hv: vmbus: incorrect device name is printed when child device is unregistered

commit 84672369ffb98a51d4ddf74c20a23636da3ad615 upstream.

Whenever a device is unregistered in vmbus_device_unregister (drivers/hv/vmbus_drv.c), the device name in the log message may contain garbage as the memory has already been freed by the time pr_info is called. Log example:
 [ 3149.170475] hv_vmbus: child device àõsèè0_5 unregistered

By logging the message just before calling device_unregister, the correct device name is printed:
[ 3145.034652] hv_vmbus: child device vmbus_0_5 unregistered

Also changing register & unregister messages to debug to avoid unnecessarily cluttering the kernel log.

Signed-off-by: Fernando M Soto <fsoto@bluecatnetworks.com>
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Joseph Salisbury <joseph.salisbury@canonical.com>
Signed-off-by: Zefan Li <lizefan@huawei.com>
drivers/hv/vmbus_drv.c