diff options
Diffstat (limited to 'drivers/s390/scsi/zfcp_aux.c')
| -rw-r--r-- | drivers/s390/scsi/zfcp_aux.c | 131 | 
1 files changed, 42 insertions, 89 deletions
diff --git a/drivers/s390/scsi/zfcp_aux.c b/drivers/s390/scsi/zfcp_aux.c index 044fb22718d..8004b071a9f 100644 --- a/drivers/s390/scsi/zfcp_aux.c +++ b/drivers/s390/scsi/zfcp_aux.c @@ -3,7 +3,7 @@   *   * Module interface and handling of zfcp data structures.   * - * Copyright IBM Corporation 2002, 2010 + * Copyright IBM Corp. 2002, 2013   */  /* @@ -23,6 +23,7 @@   *            Christof Schmitt   *            Martin Petermann   *            Sven Schuetz + *            Steffen Maier   */  #define KMSG_COMPONENT "zfcp" @@ -31,6 +32,7 @@  #include <linux/miscdevice.h>  #include <linux/seq_file.h>  #include <linux/slab.h> +#include <linux/module.h>  #include "zfcp_ext.h"  #include "zfcp_fc.h"  #include "zfcp_reqlist.h" @@ -45,8 +47,8 @@ static char *init_device;  module_param_named(device, init_device, charp, 0400);  MODULE_PARM_DESC(device, "specify initial device"); -static struct kmem_cache *zfcp_cache_hw_align(const char *name, -					      unsigned long size) +static struct kmem_cache * __init zfcp_cache_hw_align(const char *name, +						      unsigned long size)  {  	return kmem_cache_create(name, size, roundup_pow_of_two(size), 0, NULL);  } @@ -102,11 +104,11 @@ static void __init zfcp_init_device_setup(char *devstr)  	strncpy(busid, token, ZFCP_BUS_ID_SIZE);  	token = strsep(&str, ","); -	if (!token || strict_strtoull(token, 0, (unsigned long long *) &wwpn)) +	if (!token || kstrtoull(token, 0, (unsigned long long *) &wwpn))  		goto err_out;  	token = strsep(&str, ","); -	if (!token || strict_strtoull(token, 0, (unsigned long long *) &lun)) +	if (!token || kstrtoull(token, 0, (unsigned long long *) &lun))  		goto err_out;  	kfree(str_saved); @@ -122,45 +124,23 @@ static int __init zfcp_module_init(void)  {  	int retval = -ENOMEM; -	zfcp_data.gpn_ft_cache = zfcp_cache_hw_align("zfcp_gpn", -					sizeof(struct zfcp_fc_gpn_ft_req)); -	if (!zfcp_data.gpn_ft_cache) -		goto out; - -	zfcp_data.qtcb_cache = zfcp_cache_hw_align("zfcp_qtcb", -					sizeof(struct fsf_qtcb)); -	if (!zfcp_data.qtcb_cache) +	zfcp_fsf_qtcb_cache = zfcp_cache_hw_align("zfcp_fsf_qtcb", +						  sizeof(struct fsf_qtcb)); +	if (!zfcp_fsf_qtcb_cache)  		goto out_qtcb_cache; -	zfcp_data.sr_buffer_cache = zfcp_cache_hw_align("zfcp_sr", -					sizeof(struct fsf_status_read_buffer)); -	if (!zfcp_data.sr_buffer_cache) -		goto out_sr_cache; - -	zfcp_data.gid_pn_cache = zfcp_cache_hw_align("zfcp_gid", -					sizeof(struct zfcp_fc_gid_pn)); -	if (!zfcp_data.gid_pn_cache) -		goto out_gid_cache; +	zfcp_fc_req_cache = zfcp_cache_hw_align("zfcp_fc_req", +						sizeof(struct zfcp_fc_req)); +	if (!zfcp_fc_req_cache) +		goto out_fc_cache; -	zfcp_data.adisc_cache = zfcp_cache_hw_align("zfcp_adisc", -					sizeof(struct zfcp_fc_els_adisc)); -	if (!zfcp_data.adisc_cache) -		goto out_adisc_cache; - -	zfcp_data.scsi_transport_template = +	zfcp_scsi_transport_template =  		fc_attach_transport(&zfcp_transport_functions); -	if (!zfcp_data.scsi_transport_template) +	if (!zfcp_scsi_transport_template)  		goto out_transport; -	scsi_transport_reserve_device(zfcp_data.scsi_transport_template, +	scsi_transport_reserve_device(zfcp_scsi_transport_template,  				      sizeof(struct zfcp_scsi_dev)); - -	retval = misc_register(&zfcp_cfdc_misc); -	if (retval) { -		pr_err("Registering the misc device zfcp_cfdc failed\n"); -		goto out_misc; -	} -  	retval = ccw_driver_register(&zfcp_ccw_driver);  	if (retval) {  		pr_err("The zfcp device driver could not register with " @@ -173,20 +153,12 @@ static int __init zfcp_module_init(void)  	return 0;  out_ccw_register: -	misc_deregister(&zfcp_cfdc_misc); -out_misc: -	fc_release_transport(zfcp_data.scsi_transport_template); +	fc_release_transport(zfcp_scsi_transport_template);  out_transport: -	kmem_cache_destroy(zfcp_data.adisc_cache); -out_adisc_cache: -	kmem_cache_destroy(zfcp_data.gid_pn_cache); -out_gid_cache: -	kmem_cache_destroy(zfcp_data.sr_buffer_cache); -out_sr_cache: -	kmem_cache_destroy(zfcp_data.qtcb_cache); +	kmem_cache_destroy(zfcp_fc_req_cache); +out_fc_cache: +	kmem_cache_destroy(zfcp_fsf_qtcb_cache);  out_qtcb_cache: -	kmem_cache_destroy(zfcp_data.gpn_ft_cache); -out:  	return retval;  } @@ -195,13 +167,9 @@ module_init(zfcp_module_init);  static void __exit zfcp_module_exit(void)  {  	ccw_driver_unregister(&zfcp_ccw_driver); -	misc_deregister(&zfcp_cfdc_misc); -	fc_release_transport(zfcp_data.scsi_transport_template); -	kmem_cache_destroy(zfcp_data.adisc_cache); -	kmem_cache_destroy(zfcp_data.gid_pn_cache); -	kmem_cache_destroy(zfcp_data.sr_buffer_cache); -	kmem_cache_destroy(zfcp_data.qtcb_cache); -	kmem_cache_destroy(zfcp_data.gpn_ft_cache); +	fc_release_transport(zfcp_scsi_transport_template); +	kmem_cache_destroy(zfcp_fc_req_cache); +	kmem_cache_destroy(zfcp_fsf_qtcb_cache);  }  module_exit(zfcp_module_exit); @@ -260,18 +228,18 @@ static int zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter)  		return -ENOMEM;  	adapter->pool.qtcb_pool = -		mempool_create_slab_pool(4, zfcp_data.qtcb_cache); +		mempool_create_slab_pool(4, zfcp_fsf_qtcb_cache);  	if (!adapter->pool.qtcb_pool)  		return -ENOMEM; -	adapter->pool.status_read_data = -		mempool_create_slab_pool(FSF_STATUS_READS_RECOM, -					 zfcp_data.sr_buffer_cache); -	if (!adapter->pool.status_read_data) +	BUILD_BUG_ON(sizeof(struct fsf_status_read_buffer) > PAGE_SIZE); +	adapter->pool.sr_data = +		mempool_create_page_pool(FSF_STATUS_READS_RECOM, 0); +	if (!adapter->pool.sr_data)  		return -ENOMEM;  	adapter->pool.gid_pn = -		mempool_create_slab_pool(1, zfcp_data.gid_pn_cache); +		mempool_create_slab_pool(1, zfcp_fc_req_cache);  	if (!adapter->pool.gid_pn)  		return -ENOMEM; @@ -290,8 +258,8 @@ static void zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter)  		mempool_destroy(adapter->pool.qtcb_pool);  	if (adapter->pool.status_read_req)  		mempool_destroy(adapter->pool.status_read_req); -	if (adapter->pool.status_read_data) -		mempool_destroy(adapter->pool.status_read_data); +	if (adapter->pool.sr_data) +		mempool_destroy(adapter->pool.sr_data);  	if (adapter->pool.gid_pn)  		mempool_destroy(adapter->pool.gid_pn);  } @@ -311,8 +279,7 @@ int zfcp_status_read_refill(struct zfcp_adapter *adapter)  		if (zfcp_fsf_status_read(adapter->qdio)) {  			if (atomic_read(&adapter->stat_miss) >=  			    adapter->stat_read_buf_num) { -				zfcp_erp_adapter_reopen(adapter, 0, "axsref1", -							NULL); +				zfcp_erp_adapter_reopen(adapter, 0, "axsref1");  				return 1;  			}  			break; @@ -387,6 +354,7 @@ struct zfcp_adapter *zfcp_adapter_enqueue(struct ccw_device *ccw_device)  	INIT_WORK(&adapter->stat_work, _zfcp_status_read_scheduler);  	INIT_WORK(&adapter->scan_work, zfcp_fc_scan_ports); +	INIT_WORK(&adapter->ns_up_work, zfcp_fc_sym_name_update);  	if (zfcp_qdio_setup(adapter))  		goto failed; @@ -438,7 +406,9 @@ struct zfcp_adapter *zfcp_adapter_enqueue(struct ccw_device *ccw_device)  	adapter->dma_parms.max_segment_size = ZFCP_QDIO_SBALE_LEN;  	adapter->ccw_device->dev.dma_parms = &adapter->dma_parms; -	if (!zfcp_adapter_scsi_register(adapter)) +	adapter->stat_read_buf_num = FSF_STATUS_READS_RECOM; + +	if (!zfcp_scsi_adapter_register(adapter))  		return adapter;  failed: @@ -452,14 +422,15 @@ void zfcp_adapter_unregister(struct zfcp_adapter *adapter)  	cancel_work_sync(&adapter->scan_work);  	cancel_work_sync(&adapter->stat_work); +	cancel_work_sync(&adapter->ns_up_work);  	zfcp_destroy_adapter_work_queue(adapter);  	zfcp_fc_wka_ports_force_offline(adapter->gs); -	zfcp_adapter_scsi_unregister(adapter); +	zfcp_scsi_adapter_unregister(adapter);  	sysfs_remove_group(&cdev->dev.kobj, &zfcp_sysfs_adapter_attrs);  	zfcp_erp_thread_kill(adapter); -	zfcp_dbf_adapter_unregister(adapter->dbf); +	zfcp_dbf_adapter_unregister(adapter);  	zfcp_qdio_destroy(adapter->qdio);  	zfcp_ccw_adapter_put(adapter); /* final put to release */ @@ -486,20 +457,6 @@ void zfcp_adapter_release(struct kref *ref)  	put_device(&cdev->dev);  } -/** - * zfcp_device_unregister - remove port, unit from system - * @dev: reference to device which is to be removed - * @grp: related reference to attribute group - * - * Helper function to unregister port, unit from system - */ -void zfcp_device_unregister(struct device *dev, -			    const struct attribute_group *grp) -{ -	sysfs_remove_group(&dev->kobj, grp); -	device_unregister(dev); -} -  static void zfcp_port_release(struct device *dev)  {  	struct zfcp_port *port = container_of(dev, struct zfcp_port, dev); @@ -541,6 +498,7 @@ struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn,  	rwlock_init(&port->unit_list_lock);  	INIT_LIST_HEAD(&port->unit_list); +	atomic_set(&port->units, 0);  	INIT_WORK(&port->gid_pn_work, zfcp_fc_port_did_lookup);  	INIT_WORK(&port->test_link_work, zfcp_fc_link_test_work); @@ -551,6 +509,7 @@ struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn,  	port->wwpn = wwpn;  	port->rport_task = RPORT_NONE;  	port->dev.parent = &adapter->ccw_device->dev; +	port->dev.groups = zfcp_port_attr_groups;  	port->dev.release = zfcp_port_release;  	if (dev_set_name(&port->dev, "0x%016llx", (unsigned long long)wwpn)) { @@ -564,10 +523,6 @@ struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn,  		goto err_out;  	} -	if (sysfs_create_group(&port->dev.kobj, -			       &zfcp_sysfs_port_attrs)) -		goto err_out_put; -  	write_lock_irq(&adapter->port_list_lock);  	list_add_tail(&port->list, &adapter->port_list);  	write_unlock_irq(&adapter->port_list_lock); @@ -576,8 +531,6 @@ struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn,  	return port; -err_out_put: -	device_unregister(&port->dev);  err_out:  	zfcp_ccw_adapter_put(adapter);  	return ERR_PTR(retval);  | 
