blob: 811ce8a2825033665a68d21719ec4d25a83ac20b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Christof Schmitt553448f2008-06-10 18:20:58 +02002 * zfcp device driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Christof Schmitt553448f2008-06-10 18:20:58 +02004 * Module interface and handling of zfcp data structures.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Christof Schmitt553448f2008-06-10 18:20:58 +02006 * Copyright IBM Corporation 2002, 2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +02009/*
10 * Driver authors:
11 * Martin Peschke (originator of the driver)
12 * Raimund Schroeder
13 * Aron Zeh
14 * Wolfgang Taphorn
15 * Stefan Bader
16 * Heiko Carstens (kernel 2.6 port of the driver)
17 * Andreas Herrmann
18 * Maxim Shchetynin
19 * Volker Sameske
20 * Ralph Wuerthner
Christof Schmitt553448f2008-06-10 18:20:58 +020021 * Michael Loehr
22 * Swen Schillig
23 * Christof Schmitt
24 * Martin Petermann
25 * Sven Schuetz
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +020026 */
27
Christof Schmitt45633fd2008-06-10 18:20:55 +020028#include <linux/miscdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "zfcp_ext.h"
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static char *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +020033MODULE_AUTHOR("IBM Deutschland Entwicklung GmbH - linux390@de.ibm.com");
Swen Schillig317e6b62008-07-02 10:56:37 +020034MODULE_DESCRIPTION("FCP HBA driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070035MODULE_LICENSE("GPL");
36
6f71d9b2005-04-10 23:04:28 -050037module_param(device, charp, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038MODULE_PARM_DESC(device, "specify initial device");
39
Heiko Carstensca2d02c2007-05-08 11:17:54 +020040static int zfcp_reqlist_alloc(struct zfcp_adapter *adapter)
Volker Sameskefea9d6c2006-08-02 11:05:16 +020041{
Heiko Carstensca2d02c2007-05-08 11:17:54 +020042 int idx;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020043
44 adapter->req_list = kcalloc(REQUEST_LIST_SIZE, sizeof(struct list_head),
45 GFP_KERNEL);
Volker Sameskefea9d6c2006-08-02 11:05:16 +020046 if (!adapter->req_list)
47 return -ENOMEM;
48
Heiko Carstensca2d02c2007-05-08 11:17:54 +020049 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
50 INIT_LIST_HEAD(&adapter->req_list[idx]);
Volker Sameskefea9d6c2006-08-02 11:05:16 +020051 return 0;
52}
53
Swen Schillig317e6b62008-07-02 10:56:37 +020054/**
55 * zfcp_reqlist_isempty - is the request list empty
56 * @adapter: pointer to struct zfcp_adapter
57 *
58 * Returns: true if list is empty, false otherwise
59 */
Volker Sameskefea9d6c2006-08-02 11:05:16 +020060int zfcp_reqlist_isempty(struct zfcp_adapter *adapter)
61{
Heiko Carstensca2d02c2007-05-08 11:17:54 +020062 unsigned int idx;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020063
Heiko Carstensca2d02c2007-05-08 11:17:54 +020064 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
65 if (!list_empty(&adapter->req_list[idx]))
Volker Sameskefea9d6c2006-08-02 11:05:16 +020066 return 0;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020067 return 1;
68}
69
Swen Schillig317e6b62008-07-02 10:56:37 +020070static int __init zfcp_device_setup(char *devstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Swen Schillig317e6b62008-07-02 10:56:37 +020072 char *token;
73 char *str;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Andreas Herrmanncd8a3832005-06-13 13:22:25 +020075 if (!devstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return 0;
77
Swen Schillig317e6b62008-07-02 10:56:37 +020078 /* duplicate devstr and keep the original for sysfs presentation*/
79 str = kmalloc(strlen(devstr) + 1, GFP_KERNEL);
80 if (!str)
Christof Schmitt553448f2008-06-10 18:20:58 +020081 return 0;
Andreas Herrmanncd8a3832005-06-13 13:22:25 +020082
Swen Schillig317e6b62008-07-02 10:56:37 +020083 strcpy(str, devstr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Swen Schillig317e6b62008-07-02 10:56:37 +020085 token = strsep(&str, ",");
86 if (!token || strlen(token) >= BUS_ID_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 goto err_out;
Swen Schillig317e6b62008-07-02 10:56:37 +020088 strncpy(zfcp_data.init_busid, token, BUS_ID_SIZE);
89
90 token = strsep(&str, ",");
Swen Schillig7ba58c92008-10-01 12:42:18 +020091 if (!token || strict_strtoull(token, 0,
92 (unsigned long long *) &zfcp_data.init_wwpn))
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 goto err_out;
94
Swen Schillig317e6b62008-07-02 10:56:37 +020095 token = strsep(&str, ",");
Swen Schillig7ba58c92008-10-01 12:42:18 +020096 if (!token || strict_strtoull(token, 0,
97 (unsigned long long *) &zfcp_data.init_fcp_lun))
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 goto err_out;
Swen Schillig317e6b62008-07-02 10:56:37 +020099
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200100 kfree(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return 1;
102
103 err_out:
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200104 kfree(str);
Christof Schmittff3b24f2008-10-01 12:42:15 +0200105 pr_err("zfcp: %s is not a valid SCSI device\n", devstr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 return 0;
107}
108
Swen Schillig317e6b62008-07-02 10:56:37 +0200109static struct zfcp_adapter *zfcp_get_adapter_by_busid(char *bus_id)
110{
111 struct zfcp_adapter *adapter;
112
113 list_for_each_entry(adapter, &zfcp_data.adapter_list_head, list)
114 if ((strncmp(bus_id, adapter->ccw_device->dev.bus_id,
115 BUS_ID_SIZE) == 0) &&
116 !(atomic_read(&adapter->status) &
117 ZFCP_STATUS_COMMON_REMOVE))
118 return adapter;
119 return NULL;
120}
121
122static void __init zfcp_init_device_configure(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
124 struct zfcp_adapter *adapter;
125 struct zfcp_port *port;
126 struct zfcp_unit *unit;
127
128 down(&zfcp_data.config_sema);
129 read_lock_irq(&zfcp_data.config_lock);
130 adapter = zfcp_get_adapter_by_busid(zfcp_data.init_busid);
131 if (adapter)
132 zfcp_adapter_get(adapter);
133 read_unlock_irq(&zfcp_data.config_lock);
134
Swen Schillig317e6b62008-07-02 10:56:37 +0200135 if (!adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 goto out_adapter;
137 port = zfcp_port_enqueue(adapter, zfcp_data.init_wwpn, 0, 0);
Swen Schillig317e6b62008-07-02 10:56:37 +0200138 if (IS_ERR(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 goto out_port;
140 unit = zfcp_unit_enqueue(port, zfcp_data.init_fcp_lun);
Swen Schillig317e6b62008-07-02 10:56:37 +0200141 if (IS_ERR(unit))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 goto out_unit;
143 up(&zfcp_data.config_sema);
144 ccw_device_set_online(adapter->ccw_device);
145 zfcp_erp_wait(adapter);
146 down(&zfcp_data.config_sema);
147 zfcp_unit_put(unit);
Swen Schillig317e6b62008-07-02 10:56:37 +0200148out_unit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 zfcp_port_put(port);
Swen Schillig317e6b62008-07-02 10:56:37 +0200150out_port:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 zfcp_adapter_put(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200152out_adapter:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 up(&zfcp_data.config_sema);
154 return;
155}
156
Swen Schillig317e6b62008-07-02 10:56:37 +0200157static struct kmem_cache *zfcp_cache_create(int size, char *name)
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200158{
159 int align = 1;
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200160 while ((size - align) > 0)
161 align <<= 1;
Swen Schillig317e6b62008-07-02 10:56:37 +0200162 return kmem_cache_create(name , size, align, 0, NULL);
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200163}
164
Swen Schillig317e6b62008-07-02 10:56:37 +0200165static int __init zfcp_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200167 int retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Swen Schillig317e6b62008-07-02 10:56:37 +0200169 zfcp_data.fsf_req_qtcb_cache = zfcp_cache_create(
170 sizeof(struct zfcp_fsf_req_qtcb), "zfcp_fsf");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200171 if (!zfcp_data.fsf_req_qtcb_cache)
172 goto out;
173
Swen Schillig317e6b62008-07-02 10:56:37 +0200174 zfcp_data.sr_buffer_cache = zfcp_cache_create(
175 sizeof(struct fsf_status_read_buffer), "zfcp_sr");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200176 if (!zfcp_data.sr_buffer_cache)
177 goto out_sr_cache;
178
Swen Schillig317e6b62008-07-02 10:56:37 +0200179 zfcp_data.gid_pn_cache = zfcp_cache_create(
180 sizeof(struct zfcp_gid_pn_data), "zfcp_gid");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200181 if (!zfcp_data.gid_pn_cache)
182 goto out_gid_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 INIT_LIST_HEAD(&zfcp_data.adapter_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 INIT_LIST_HEAD(&zfcp_data.adapter_remove_lh);
186
Swen Schillig317e6b62008-07-02 10:56:37 +0200187 sema_init(&zfcp_data.config_sema, 1);
188 rwlock_init(&zfcp_data.config_lock);
189
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200190 zfcp_data.scsi_transport_template =
191 fc_attach_transport(&zfcp_transport_functions);
192 if (!zfcp_data.scsi_transport_template)
193 goto out_transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 retval = misc_register(&zfcp_cfdc_misc);
Swen Schillig317e6b62008-07-02 10:56:37 +0200196 if (retval) {
Christof Schmittff3b24f2008-10-01 12:42:15 +0200197 pr_err("zfcp: Registering the misc device zfcp_cfdc failed\n");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200198 goto out_misc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 retval = zfcp_ccw_register();
202 if (retval) {
Christof Schmittff3b24f2008-10-01 12:42:15 +0200203 pr_err("zfcp: The zfcp device driver could not register with "
204 "the common I/O layer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 goto out_ccw_register;
206 }
207
208 if (zfcp_device_setup(device))
209 zfcp_init_device_configure();
210
211 goto out;
212
Swen Schillig317e6b62008-07-02 10:56:37 +0200213out_ccw_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 misc_deregister(&zfcp_cfdc_misc);
Swen Schillig317e6b62008-07-02 10:56:37 +0200215out_misc:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200216 fc_release_transport(zfcp_data.scsi_transport_template);
Swen Schillig317e6b62008-07-02 10:56:37 +0200217out_transport:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200218 kmem_cache_destroy(zfcp_data.gid_pn_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200219out_gid_cache:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200220 kmem_cache_destroy(zfcp_data.sr_buffer_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200221out_sr_cache:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200222 kmem_cache_destroy(zfcp_data.fsf_req_qtcb_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200223out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return retval;
225}
226
Swen Schillig317e6b62008-07-02 10:56:37 +0200227module_init(zfcp_module_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/**
230 * zfcp_get_unit_by_lun - find unit in unit list of port by FCP LUN
231 * @port: pointer to port to search for unit
232 * @fcp_lun: FCP LUN to search for
Swen Schillig317e6b62008-07-02 10:56:37 +0200233 *
234 * Returns: pointer to zfcp_unit or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200236struct zfcp_unit *zfcp_get_unit_by_lun(struct zfcp_port *port, u64 fcp_lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Swen Schillig317e6b62008-07-02 10:56:37 +0200240 list_for_each_entry(unit, &port->unit_list_head, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 if ((unit->fcp_lun == fcp_lun) &&
Swen Schillig317e6b62008-07-02 10:56:37 +0200242 !(atomic_read(&unit->status) & ZFCP_STATUS_COMMON_REMOVE))
243 return unit;
244 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
247/**
248 * zfcp_get_port_by_wwpn - find port in port list of adapter by wwpn
249 * @adapter: pointer to adapter to search for port
250 * @wwpn: wwpn to search for
Swen Schillig317e6b62008-07-02 10:56:37 +0200251 *
252 * Returns: pointer to zfcp_port or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200254struct zfcp_port *zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter,
Swen Schillig7ba58c92008-10-01 12:42:18 +0200255 u64 wwpn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 struct zfcp_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Swen Schillig317e6b62008-07-02 10:56:37 +0200259 list_for_each_entry(port, &adapter->port_list_head, list)
260 if ((port->wwpn == wwpn) && !(atomic_read(&port->status) &
261 (ZFCP_STATUS_PORT_NO_WWPN | ZFCP_STATUS_COMMON_REMOVE)))
262 return port;
263 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
Swen Schillig60221922008-07-02 10:56:38 +0200266static void zfcp_sysfs_unit_release(struct device *dev)
267{
268 kfree(container_of(dev, struct zfcp_unit, sysfs_device));
269}
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271/**
272 * zfcp_unit_enqueue - enqueue unit to unit list of a port.
273 * @port: pointer to port where unit is added
274 * @fcp_lun: FCP LUN of unit to be enqueued
Swen Schillig317e6b62008-07-02 10:56:37 +0200275 * Returns: pointer to enqueued unit on success, ERR_PTR on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 * Locks: config_sema must be held to serialize changes to the unit list
277 *
278 * Sets up some unit internal structures and creates sysfs entry.
279 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200280struct zfcp_unit *zfcp_unit_enqueue(struct zfcp_port *port, u64 fcp_lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Christof Schmitt462b7852007-06-19 10:25:30 +0200282 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Swen Schillig317e6b62008-07-02 10:56:37 +0200284 unit = kzalloc(sizeof(struct zfcp_unit), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (!unit)
Swen Schillig317e6b62008-07-02 10:56:37 +0200286 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 atomic_set(&unit->refcount, 0);
289 init_waitqueue_head(&unit->remove_wq);
290
291 unit->port = port;
292 unit->fcp_lun = fcp_lun;
293
Swen Schillig7ba58c92008-10-01 12:42:18 +0200294 snprintf(unit->sysfs_device.bus_id, BUS_ID_SIZE, "0x%016llx",
295 (unsigned long long) fcp_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 unit->sysfs_device.parent = &port->sysfs_device;
297 unit->sysfs_device.release = zfcp_sysfs_unit_release;
298 dev_set_drvdata(&unit->sysfs_device, unit);
299
300 /* mark unit unusable as long as sysfs registration is not complete */
301 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
302
Christof Schmittc9615852008-05-06 11:00:05 +0200303 spin_lock_init(&unit->latencies.lock);
304 unit->latencies.write.channel.min = 0xFFFFFFFF;
305 unit->latencies.write.fabric.min = 0xFFFFFFFF;
306 unit->latencies.read.channel.min = 0xFFFFFFFF;
307 unit->latencies.read.fabric.min = 0xFFFFFFFF;
308 unit->latencies.cmd.channel.min = 0xFFFFFFFF;
309 unit->latencies.cmd.fabric.min = 0xFFFFFFFF;
310
Swen Schillig317e6b62008-07-02 10:56:37 +0200311 read_lock_irq(&zfcp_data.config_lock);
312 if (zfcp_get_unit_by_lun(port, fcp_lun)) {
313 read_unlock_irq(&zfcp_data.config_lock);
314 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
Swen Schillig317e6b62008-07-02 10:56:37 +0200316 read_unlock_irq(&zfcp_data.config_lock);
317
318 if (device_register(&unit->sysfs_device))
319 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Swen Schillig60221922008-07-02 10:56:38 +0200321 if (sysfs_create_group(&unit->sysfs_device.kobj,
322 &zfcp_sysfs_unit_attrs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 device_unregister(&unit->sysfs_device);
Swen Schillig317e6b62008-07-02 10:56:37 +0200324 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
326
327 zfcp_unit_get(unit);
Christof Schmitt462b7852007-06-19 10:25:30 +0200328 unit->scsi_lun = scsilun_to_int((struct scsi_lun *)&unit->fcp_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 write_lock_irq(&zfcp_data.config_lock);
Christof Schmitt462b7852007-06-19 10:25:30 +0200331 list_add_tail(&unit->list, &port->unit_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
333 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &unit->status);
Swen Schillig317e6b62008-07-02 10:56:37 +0200334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 write_unlock_irq(&zfcp_data.config_lock);
336
337 port->units++;
338 zfcp_port_get(port);
339
340 return unit;
Swen Schillig317e6b62008-07-02 10:56:37 +0200341
342err_out_free:
343 kfree(unit);
344 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345}
346
Swen Schillig317e6b62008-07-02 10:56:37 +0200347/**
348 * zfcp_unit_dequeue - dequeue unit
349 * @unit: pointer to zfcp_unit
350 *
351 * waits until all work is done on unit and removes it then from the unit->list
352 * of the associated port.
353 */
354void zfcp_unit_dequeue(struct zfcp_unit *unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200356 wait_event(unit->remove_wq, atomic_read(&unit->refcount) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 write_lock_irq(&zfcp_data.config_lock);
358 list_del(&unit->list);
359 write_unlock_irq(&zfcp_data.config_lock);
360 unit->port->units--;
361 zfcp_port_put(unit->port);
Swen Schillig60221922008-07-02 10:56:38 +0200362 sysfs_remove_group(&unit->sysfs_device.kobj, &zfcp_sysfs_unit_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 device_unregister(&unit->sysfs_device);
364}
365
Swen Schillig317e6b62008-07-02 10:56:37 +0200366static int zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Swen Schillig317e6b62008-07-02 10:56:37 +0200368 /* must only be called with zfcp_data.config_sema taken */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 adapter->pool.fsf_req_erp =
Swen Schillig317e6b62008-07-02 10:56:37 +0200370 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800371 if (!adapter->pool.fsf_req_erp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return -ENOMEM;
373
374 adapter->pool.fsf_req_scsi =
Swen Schillig317e6b62008-07-02 10:56:37 +0200375 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800376 if (!adapter->pool.fsf_req_scsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return -ENOMEM;
378
379 adapter->pool.fsf_req_abort =
Swen Schillig317e6b62008-07-02 10:56:37 +0200380 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800381 if (!adapter->pool.fsf_req_abort)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return -ENOMEM;
383
384 adapter->pool.fsf_req_status_read =
Swen Schillig317e6b62008-07-02 10:56:37 +0200385 mempool_create_kmalloc_pool(FSF_STATUS_READS_RECOM,
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800386 sizeof(struct zfcp_fsf_req));
387 if (!adapter->pool.fsf_req_status_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return -ENOMEM;
389
390 adapter->pool.data_status_read =
Swen Schillig317e6b62008-07-02 10:56:37 +0200391 mempool_create_slab_pool(FSF_STATUS_READS_RECOM,
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200392 zfcp_data.sr_buffer_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800393 if (!adapter->pool.data_status_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return -ENOMEM;
395
396 adapter->pool.data_gid_pn =
Swen Schillig317e6b62008-07-02 10:56:37 +0200397 mempool_create_slab_pool(1, zfcp_data.gid_pn_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800398 if (!adapter->pool.data_gid_pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return -ENOMEM;
400
401 return 0;
402}
403
Swen Schillig317e6b62008-07-02 10:56:37 +0200404static void zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
Swen Schillig317e6b62008-07-02 10:56:37 +0200406 /* zfcp_data.config_sema must be held */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (adapter->pool.fsf_req_erp)
408 mempool_destroy(adapter->pool.fsf_req_erp);
409 if (adapter->pool.fsf_req_scsi)
410 mempool_destroy(adapter->pool.fsf_req_scsi);
411 if (adapter->pool.fsf_req_abort)
412 mempool_destroy(adapter->pool.fsf_req_abort);
413 if (adapter->pool.fsf_req_status_read)
414 mempool_destroy(adapter->pool.fsf_req_status_read);
415 if (adapter->pool.data_status_read)
416 mempool_destroy(adapter->pool.data_status_read);
417 if (adapter->pool.data_gid_pn)
418 mempool_destroy(adapter->pool.data_gid_pn);
419}
420
Heiko Carstens763968e2007-05-10 15:45:46 +0200421static void zfcp_dummy_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
423 return;
424}
425
Swen Schillig317e6b62008-07-02 10:56:37 +0200426/**
427 * zfcp_status_read_refill - refill the long running status_read_requests
428 * @adapter: ptr to struct zfcp_adapter for which the buffers should be refilled
429 *
430 * Returns: 0 on success, 1 otherwise
431 *
432 * if there are 16 or more status_read requests missing an adapter_reopen
433 * is triggered
434 */
Swen Schilligd26ab062008-05-19 12:17:37 +0200435int zfcp_status_read_refill(struct zfcp_adapter *adapter)
436{
437 while (atomic_read(&adapter->stat_miss) > 0)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200438 if (zfcp_fsf_status_read(adapter)) {
Swen Schillig7afe29f2008-07-02 10:56:33 +0200439 if (atomic_read(&adapter->stat_miss) >= 16) {
440 zfcp_erp_adapter_reopen(adapter, 0, 103, NULL);
441 return 1;
442 }
Swen Schilligd26ab062008-05-19 12:17:37 +0200443 break;
Swen Schillig7afe29f2008-07-02 10:56:33 +0200444 } else
445 atomic_dec(&adapter->stat_miss);
Swen Schilligd26ab062008-05-19 12:17:37 +0200446 return 0;
447}
448
449static void _zfcp_status_read_scheduler(struct work_struct *work)
450{
451 zfcp_status_read_refill(container_of(work, struct zfcp_adapter,
452 stat_work));
453}
454
Swen Schillig317e6b62008-07-02 10:56:37 +0200455/**
456 * zfcp_adapter_enqueue - enqueue a new adapter to the list
457 * @ccw_device: pointer to the struct cc_device
458 *
459 * Returns: 0 if a new adapter was successfully enqueued
460 * -ENOMEM if alloc failed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 * Enqueues an adapter at the end of the adapter list in the driver data.
462 * All adapter internal structures are set up.
463 * Proc-fs entries are also created.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 * locks: config_sema must be held to serialise changes to the adapter list
465 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200466int zfcp_adapter_enqueue(struct ccw_device *ccw_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 struct zfcp_adapter *adapter;
469
470 /*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200471 * Note: It is safe to release the list_lock, as any list changes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 * are protected by the config_sema, which must be held to get here
473 */
474
Swen Schillig317e6b62008-07-02 10:56:37 +0200475 adapter = kzalloc(sizeof(struct zfcp_adapter), GFP_KERNEL);
Christof Schmitt553448f2008-06-10 18:20:58 +0200476 if (!adapter)
Swen Schillig317e6b62008-07-02 10:56:37 +0200477 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 ccw_device->handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 adapter->ccw_device = ccw_device;
Swen Schillig317e6b62008-07-02 10:56:37 +0200481 atomic_set(&adapter->refcount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Swen Schillig00bab912008-06-10 18:20:57 +0200483 if (zfcp_qdio_allocate(adapter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 goto qdio_allocate_failed;
485
Swen Schillig00bab912008-06-10 18:20:57 +0200486 if (zfcp_allocate_low_mem_buffers(adapter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 goto failed_low_mem_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Swen Schillig00bab912008-06-10 18:20:57 +0200489 if (zfcp_reqlist_alloc(adapter))
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200490 goto failed_low_mem_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Swen Schillig317e6b62008-07-02 10:56:37 +0200492 if (zfcp_adapter_debug_register(adapter))
493 goto debug_register_failed;
494
495 init_waitqueue_head(&adapter->remove_wq);
496 init_waitqueue_head(&adapter->erp_thread_wqh);
497 init_waitqueue_head(&adapter->erp_done_wqh);
498
499 INIT_LIST_HEAD(&adapter->port_list_head);
500 INIT_LIST_HEAD(&adapter->port_remove_lh);
501 INIT_LIST_HEAD(&adapter->erp_ready_head);
502 INIT_LIST_HEAD(&adapter->erp_running_head);
503
504 spin_lock_init(&adapter->req_list_lock);
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100505
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100506 spin_lock_init(&adapter->hba_dbf_lock);
507 spin_lock_init(&adapter->san_dbf_lock);
508 spin_lock_init(&adapter->scsi_dbf_lock);
Martin Peschked79a83d2008-03-27 14:22:00 +0100509 spin_lock_init(&adapter->rec_dbf_lock);
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200510 spin_lock_init(&adapter->req_q.lock);
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100511
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100512 rwlock_init(&adapter->erp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 rwlock_init(&adapter->abort_lock);
Swen Schillig317e6b62008-07-02 10:56:37 +0200514
515 sema_init(&adapter->erp_ready_sem, 0);
516
Swen Schilligd26ab062008-05-19 12:17:37 +0200517 INIT_WORK(&adapter->stat_work, _zfcp_status_read_scheduler);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200518 INIT_WORK(&adapter->scan_work, _zfcp_scan_ports_later);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 /* mark adapter unusable as long as sysfs registration is not complete */
521 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 dev_set_drvdata(&ccw_device->dev, adapter);
524
Swen Schillig60221922008-07-02 10:56:38 +0200525 if (sysfs_create_group(&ccw_device->dev.kobj,
526 &zfcp_sysfs_adapter_attrs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 goto sysfs_failed;
528
529 adapter->generic_services.parent = &adapter->ccw_device->dev;
530 adapter->generic_services.release = zfcp_dummy_release;
531 snprintf(adapter->generic_services.bus_id, BUS_ID_SIZE,
532 "generic_services");
533
534 if (device_register(&adapter->generic_services))
535 goto generic_services_failed;
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 write_lock_irq(&zfcp_data.config_lock);
538 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
539 list_add_tail(&adapter->list, &zfcp_data.adapter_list_head);
540 write_unlock_irq(&zfcp_data.config_lock);
541
542 zfcp_data.adapters++;
543
Swen Schillig5ab944f2008-10-01 12:42:17 +0200544 zfcp_fc_nameserver_init(adapter);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200545
Swen Schillig317e6b62008-07-02 10:56:37 +0200546 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Swen Schillig317e6b62008-07-02 10:56:37 +0200548generic_services_failed:
Swen Schillig60221922008-07-02 10:56:38 +0200549 sysfs_remove_group(&ccw_device->dev.kobj,
550 &zfcp_sysfs_adapter_attrs);
Swen Schillig317e6b62008-07-02 10:56:37 +0200551sysfs_failed:
Christof Schmittff17a292007-08-28 09:31:41 +0200552 zfcp_adapter_debug_unregister(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200553debug_register_failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 dev_set_drvdata(&ccw_device->dev, NULL);
Swen Schillig317e6b62008-07-02 10:56:37 +0200555 kfree(adapter->req_list);
556failed_low_mem_buffers:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 zfcp_free_low_mem_buffers(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200558qdio_allocate_failed:
Swen Schillig00bab912008-06-10 18:20:57 +0200559 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 kfree(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200561 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
Swen Schillig317e6b62008-07-02 10:56:37 +0200564/**
565 * zfcp_adapter_dequeue - remove the adapter from the resource list
566 * @adapter: pointer to struct zfcp_adapter which should be removed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 * locks: adapter list write lock is assumed to be held by caller
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200569void zfcp_adapter_dequeue(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
571 int retval = 0;
572 unsigned long flags;
573
Swen Schilligcc8c2822008-06-10 18:21:00 +0200574 cancel_work_sync(&adapter->scan_work);
Swen Schilligd26ab062008-05-19 12:17:37 +0200575 cancel_work_sync(&adapter->stat_work);
Michael Loehr9f287452007-05-09 11:01:24 +0200576 zfcp_adapter_scsi_unregister(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 device_unregister(&adapter->generic_services);
Swen Schillig60221922008-07-02 10:56:38 +0200578 sysfs_remove_group(&adapter->ccw_device->dev.kobj,
579 &zfcp_sysfs_adapter_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 dev_set_drvdata(&adapter->ccw_device->dev, NULL);
581 /* sanity check: no pending FSF requests */
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200582 spin_lock_irqsave(&adapter->req_list_lock, flags);
583 retval = zfcp_reqlist_isempty(adapter);
584 spin_unlock_irqrestore(&adapter->req_list_lock, flags);
Swen Schillig317e6b62008-07-02 10:56:37 +0200585 if (!retval)
586 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Christof Schmittff17a292007-08-28 09:31:41 +0200588 zfcp_adapter_debug_unregister(adapter);
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 /* remove specified adapter data structure from list */
591 write_lock_irq(&zfcp_data.config_lock);
592 list_del(&adapter->list);
593 write_unlock_irq(&zfcp_data.config_lock);
594
595 /* decrease number of adapters in list */
596 zfcp_data.adapters--;
597
Swen Schillig00bab912008-06-10 18:20:57 +0200598 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 zfcp_free_low_mem_buffers(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200601 kfree(adapter->req_list);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100602 kfree(adapter->fc_stats);
603 kfree(adapter->stats_reset_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 kfree(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
Swen Schillig60221922008-07-02 10:56:38 +0200607static void zfcp_sysfs_port_release(struct device *dev)
608{
609 kfree(container_of(dev, struct zfcp_port, sysfs_device));
610}
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612/**
613 * zfcp_port_enqueue - enqueue port to port list of adapter
614 * @adapter: adapter where remote port is added
615 * @wwpn: WWPN of the remote port to be enqueued
616 * @status: initial status for the port
617 * @d_id: destination id of the remote port to be enqueued
Swen Schillig317e6b62008-07-02 10:56:37 +0200618 * Returns: pointer to enqueued port on success, ERR_PTR on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 * Locks: config_sema must be held to serialize changes to the port list
620 *
621 * All port internal structures are set up and the sysfs entry is generated.
622 * d_id is used to enqueue ports with a well known address like the Directory
623 * Service for nameserver lookup.
624 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200625struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn,
Swen Schillig317e6b62008-07-02 10:56:37 +0200626 u32 status, u32 d_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700628 struct zfcp_port *port;
Swen Schillig60221922008-07-02 10:56:38 +0200629 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
Swen Schillig317e6b62008-07-02 10:56:37 +0200631 port = kzalloc(sizeof(struct zfcp_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 if (!port)
Swen Schillig317e6b62008-07-02 10:56:37 +0200633 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 init_waitqueue_head(&port->remove_wq);
636
637 INIT_LIST_HEAD(&port->unit_list_head);
638 INIT_LIST_HEAD(&port->unit_remove_lh);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200639 INIT_WORK(&port->gid_pn_work, zfcp_erp_port_strategy_open_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 port->adapter = adapter;
Swen Schillig317e6b62008-07-02 10:56:37 +0200642 port->d_id = d_id;
643 port->wwpn = wwpn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Swen Schillig317e6b62008-07-02 10:56:37 +0200645 /* mark port unusable as long as sysfs registration is not complete */
646 atomic_set_mask(status | ZFCP_STATUS_COMMON_REMOVE, &port->status);
647 atomic_set(&port->refcount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Swen Schillig7ba58c92008-10-01 12:42:18 +0200649 snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE, "0x%016llx",
650 (unsigned long long) wwpn);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200651 port->sysfs_device.parent = &adapter->ccw_device->dev;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 port->sysfs_device.release = zfcp_sysfs_port_release;
654 dev_set_drvdata(&port->sysfs_device, port);
655
Swen Schillig317e6b62008-07-02 10:56:37 +0200656 read_lock_irq(&zfcp_data.config_lock);
657 if (!(status & ZFCP_STATUS_PORT_NO_WWPN))
658 if (zfcp_get_port_by_wwpn(adapter, wwpn)) {
659 read_unlock_irq(&zfcp_data.config_lock);
660 goto err_out_free;
661 }
662 read_unlock_irq(&zfcp_data.config_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Swen Schillig317e6b62008-07-02 10:56:37 +0200664 if (device_register(&port->sysfs_device))
665 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Swen Schillig5ab944f2008-10-01 12:42:17 +0200667 retval = sysfs_create_group(&port->sysfs_device.kobj,
668 &zfcp_sysfs_port_attrs);
Swen Schillig60221922008-07-02 10:56:38 +0200669
670 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 device_unregister(&port->sysfs_device);
Swen Schillig317e6b62008-07-02 10:56:37 +0200672 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
674
675 zfcp_port_get(port);
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 write_lock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700678 list_add_tail(&port->list, &adapter->port_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status);
680 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &port->status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 adapter->ports++;
Swen Schillig317e6b62008-07-02 10:56:37 +0200682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 write_unlock_irq(&zfcp_data.config_lock);
684
685 zfcp_adapter_get(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return port;
Swen Schillig317e6b62008-07-02 10:56:37 +0200687
688err_out_free:
689 kfree(port);
690err_out:
691 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
Swen Schillig317e6b62008-07-02 10:56:37 +0200694/**
695 * zfcp_port_dequeue - dequeues a port from the port list of the adapter
696 * @port: pointer to struct zfcp_port which should be removed
697 */
698void zfcp_port_dequeue(struct zfcp_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200700 wait_event(port->remove_wq, atomic_read(&port->refcount) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 write_lock_irq(&zfcp_data.config_lock);
702 list_del(&port->list);
703 port->adapter->ports--;
704 write_unlock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700705 if (port->rport)
Heiko Carstens20b17302005-08-28 13:22:37 -0700706 fc_remote_port_delete(port->rport);
707 port->rport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 zfcp_adapter_put(port->adapter);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200709 sysfs_remove_group(&port->sysfs_device.kobj, &zfcp_sysfs_port_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 device_unregister(&port->sysfs_device);
711}
712
Swen Schillig317e6b62008-07-02 10:56:37 +0200713/**
714 * zfcp_sg_free_table - free memory used by scatterlists
715 * @sg: pointer to scatterlist
716 * @count: number of scatterlist which are to be free'ed
717 * the scatterlist are expected to reference pages always
718 */
Christof Schmitt45633fd2008-06-10 18:20:55 +0200719void zfcp_sg_free_table(struct scatterlist *sg, int count)
720{
721 int i;
722
723 for (i = 0; i < count; i++, sg++)
724 if (sg)
725 free_page((unsigned long) sg_virt(sg));
726 else
727 break;
728}
729
Swen Schillig317e6b62008-07-02 10:56:37 +0200730/**
731 * zfcp_sg_setup_table - init scatterlist and allocate, assign buffers
732 * @sg: pointer to struct scatterlist
733 * @count: number of scatterlists which should be assigned with buffers
734 * of size page
735 *
736 * Returns: 0 on success, -ENOMEM otherwise
737 */
Christof Schmitt45633fd2008-06-10 18:20:55 +0200738int zfcp_sg_setup_table(struct scatterlist *sg, int count)
739{
740 void *addr;
741 int i;
742
743 sg_init_table(sg, count);
744 for (i = 0; i < count; i++, sg++) {
745 addr = (void *) get_zeroed_page(GFP_KERNEL);
746 if (!addr) {
747 zfcp_sg_free_table(sg, i);
748 return -ENOMEM;
749 }
750 sg_set_buf(sg, addr, PAGE_SIZE);
751 }
752 return 0;
753}