diff mbox

[2/2] storvsc_drv: make use of the lightweight FC transport class

Message ID 1458340950.2892.9.camel@HansenPartnership.com (mailing list archive)
State Awaiting Upstream, archived
Headers show

Commit Message

James Bottomley March 18, 2016, 10:42 p.m. UTC
Signed-off-by: James Bottomley <jejb@linux.vnet.ibm.com>
---
 drivers/scsi/storvsc_drv.c | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)
diff mbox

Patch

diff --git a/drivers/scsi/storvsc_drv.c b/drivers/scsi/storvsc_drv.c
index 3ddcabb..dcb7393 100644
--- a/drivers/scsi/storvsc_drv.c
+++ b/drivers/scsi/storvsc_drv.c
@@ -1769,21 +1769,16 @@  static int __init storvsc_drv_init(void)
 		sizeof(u64)));
 
 #if IS_ENABLED(CONFIG_SCSI_FC_ATTRS)
-	fc_transport_template = fc_attach_transport(&fc_transport_functions);
+	fc_transport_template = fc_lw_attach_transport(&fc_transport_functions);
 	if (!fc_transport_template)
 		return -ENODEV;
-
-	/*
-	 * Install Hyper-V specific timeout handler.
-	 */
-	fc_transport_template->eh_timed_out = storvsc_eh_timed_out;
 #endif
 
 	ret = vmbus_driver_register(&storvsc_drv);
 
 #if IS_ENABLED(CONFIG_SCSI_FC_ATTRS)
 	if (ret)
-		fc_release_transport(fc_transport_template);
+		fc_lw_release_transport(fc_transport_template);
 #endif
 
 	return ret;
@@ -1793,7 +1788,7 @@  static void __exit storvsc_drv_exit(void)
 {
 	vmbus_driver_unregister(&storvsc_drv);
 #if IS_ENABLED(CONFIG_SCSI_FC_ATTRS)
-	fc_release_transport(fc_transport_template);
+	fc_lw_release_transport(fc_transport_template);
 #endif
 }