Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1360979
| From | James Bottomley <James.Bottomley@HansenPartnership.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 2/2] storvsc_drv: make use of the lightweight FC transport class |
| Date | 2016-03-18 23:50 +0100 |
| Message-ID | <rebnr-2tp-7@gated-at.bofh.it> (permalink) |
| References | (6 earlier) <rdsJI-7sj-13@gated-at.bofh.it> <rdtcJ-7ER-9@gated-at.bofh.it> <rdtmq-7IS-3@gated-at.bofh.it> <rdtFN-865-31@gated-at.bofh.it> <rebnr-2tp-9@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Signed-off-by: James Bottomley <jejb@linux.vnet.ibm.com>
---
drivers/scsi/storvsc_drv.c | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
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
}
--
2.6.2
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 2/2] storvsc_drv: make use of the lightweight FC transport class James Bottomley <James.Bottomley@HansenPartnership.com> - 2016-03-18 23:50 +0100
csiph-web