blob: 7777729419eb03f5582871135c4fc6165791592c [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, ",");
91 if (!token || strict_strtoull(token, 0, &zfcp_data.init_wwpn))
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 goto err_out;
93
Swen Schillig317e6b62008-07-02 10:56:37 +020094 token = strsep(&str, ",");
95 if (!token || strict_strtoull(token, 0, &zfcp_data.init_fcp_lun))
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 goto err_out;
Swen Schillig317e6b62008-07-02 10:56:37 +020097
Andreas Herrmanncd8a3832005-06-13 13:22:25 +020098 kfree(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 return 1;
100
101 err_out:
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200102 kfree(str);
Swen Schillig317e6b62008-07-02 10:56:37 +0200103 pr_err("zfcp: Parse error for device parameter string %s, "
104 "device not attached.\n", devstr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 return 0;
106}
107
Swen Schillig317e6b62008-07-02 10:56:37 +0200108static struct zfcp_adapter *zfcp_get_adapter_by_busid(char *bus_id)
109{
110 struct zfcp_adapter *adapter;
111
112 list_for_each_entry(adapter, &zfcp_data.adapter_list_head, list)
113 if ((strncmp(bus_id, adapter->ccw_device->dev.bus_id,
114 BUS_ID_SIZE) == 0) &&
115 !(atomic_read(&adapter->status) &
116 ZFCP_STATUS_COMMON_REMOVE))
117 return adapter;
118 return NULL;
119}
120
121static void __init zfcp_init_device_configure(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 struct zfcp_adapter *adapter;
124 struct zfcp_port *port;
125 struct zfcp_unit *unit;
126
127 down(&zfcp_data.config_sema);
128 read_lock_irq(&zfcp_data.config_lock);
129 adapter = zfcp_get_adapter_by_busid(zfcp_data.init_busid);
130 if (adapter)
131 zfcp_adapter_get(adapter);
132 read_unlock_irq(&zfcp_data.config_lock);
133
Swen Schillig317e6b62008-07-02 10:56:37 +0200134 if (!adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 goto out_adapter;
136 port = zfcp_port_enqueue(adapter, zfcp_data.init_wwpn, 0, 0);
Swen Schillig317e6b62008-07-02 10:56:37 +0200137 if (IS_ERR(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 goto out_port;
139 unit = zfcp_unit_enqueue(port, zfcp_data.init_fcp_lun);
Swen Schillig317e6b62008-07-02 10:56:37 +0200140 if (IS_ERR(unit))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 goto out_unit;
142 up(&zfcp_data.config_sema);
143 ccw_device_set_online(adapter->ccw_device);
144 zfcp_erp_wait(adapter);
145 down(&zfcp_data.config_sema);
146 zfcp_unit_put(unit);
Swen Schillig317e6b62008-07-02 10:56:37 +0200147out_unit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 zfcp_port_put(port);
Swen Schillig317e6b62008-07-02 10:56:37 +0200149out_port:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 zfcp_adapter_put(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200151out_adapter:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 up(&zfcp_data.config_sema);
153 return;
154}
155
Swen Schillig317e6b62008-07-02 10:56:37 +0200156static struct kmem_cache *zfcp_cache_create(int size, char *name)
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200157{
158 int align = 1;
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200159 while ((size - align) > 0)
160 align <<= 1;
Swen Schillig317e6b62008-07-02 10:56:37 +0200161 return kmem_cache_create(name , size, align, 0, NULL);
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200162}
163
Swen Schillig317e6b62008-07-02 10:56:37 +0200164static int __init zfcp_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200166 int retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Swen Schillig317e6b62008-07-02 10:56:37 +0200168 zfcp_data.fsf_req_qtcb_cache = zfcp_cache_create(
169 sizeof(struct zfcp_fsf_req_qtcb), "zfcp_fsf");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200170 if (!zfcp_data.fsf_req_qtcb_cache)
171 goto out;
172
Swen Schillig317e6b62008-07-02 10:56:37 +0200173 zfcp_data.sr_buffer_cache = zfcp_cache_create(
174 sizeof(struct fsf_status_read_buffer), "zfcp_sr");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200175 if (!zfcp_data.sr_buffer_cache)
176 goto out_sr_cache;
177
Swen Schillig317e6b62008-07-02 10:56:37 +0200178 zfcp_data.gid_pn_cache = zfcp_cache_create(
179 sizeof(struct zfcp_gid_pn_data), "zfcp_gid");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200180 if (!zfcp_data.gid_pn_cache)
181 goto out_gid_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 INIT_LIST_HEAD(&zfcp_data.adapter_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 INIT_LIST_HEAD(&zfcp_data.adapter_remove_lh);
185
Swen Schillig317e6b62008-07-02 10:56:37 +0200186 sema_init(&zfcp_data.config_sema, 1);
187 rwlock_init(&zfcp_data.config_lock);
188
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200189 zfcp_data.scsi_transport_template =
190 fc_attach_transport(&zfcp_transport_functions);
191 if (!zfcp_data.scsi_transport_template)
192 goto out_transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 retval = misc_register(&zfcp_cfdc_misc);
Swen Schillig317e6b62008-07-02 10:56:37 +0200195 if (retval) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200196 pr_err("zfcp: registration of misc device zfcp_cfdc failed\n");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200197 goto out_misc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 retval = zfcp_ccw_register();
201 if (retval) {
Christof Schmitt553448f2008-06-10 18:20:58 +0200202 pr_err("zfcp: Registration with common I/O layer failed.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 goto out_ccw_register;
204 }
205
206 if (zfcp_device_setup(device))
207 zfcp_init_device_configure();
208
209 goto out;
210
Swen Schillig317e6b62008-07-02 10:56:37 +0200211out_ccw_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 misc_deregister(&zfcp_cfdc_misc);
Swen Schillig317e6b62008-07-02 10:56:37 +0200213out_misc:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200214 fc_release_transport(zfcp_data.scsi_transport_template);
Swen Schillig317e6b62008-07-02 10:56:37 +0200215out_transport:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200216 kmem_cache_destroy(zfcp_data.gid_pn_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200217out_gid_cache:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200218 kmem_cache_destroy(zfcp_data.sr_buffer_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200219out_sr_cache:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200220 kmem_cache_destroy(zfcp_data.fsf_req_qtcb_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200221out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return retval;
223}
224
Swen Schillig317e6b62008-07-02 10:56:37 +0200225module_init(zfcp_module_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227/**
228 * zfcp_get_unit_by_lun - find unit in unit list of port by FCP LUN
229 * @port: pointer to port to search for unit
230 * @fcp_lun: FCP LUN to search for
Swen Schillig317e6b62008-07-02 10:56:37 +0200231 *
232 * Returns: pointer to zfcp_unit or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200234struct zfcp_unit *zfcp_get_unit_by_lun(struct zfcp_port *port,
235 fcp_lun_t fcp_lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Swen Schillig317e6b62008-07-02 10:56:37 +0200239 list_for_each_entry(unit, &port->unit_list_head, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if ((unit->fcp_lun == fcp_lun) &&
Swen Schillig317e6b62008-07-02 10:56:37 +0200241 !(atomic_read(&unit->status) & ZFCP_STATUS_COMMON_REMOVE))
242 return unit;
243 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
245
246/**
247 * zfcp_get_port_by_wwpn - find port in port list of adapter by wwpn
248 * @adapter: pointer to adapter to search for port
249 * @wwpn: wwpn to search for
Swen Schillig317e6b62008-07-02 10:56:37 +0200250 *
251 * Returns: pointer to zfcp_port or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200253struct zfcp_port *zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter,
254 wwn_t wwpn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 struct zfcp_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Swen Schillig317e6b62008-07-02 10:56:37 +0200258 list_for_each_entry(port, &adapter->port_list_head, list)
259 if ((port->wwpn == wwpn) && !(atomic_read(&port->status) &
260 (ZFCP_STATUS_PORT_NO_WWPN | ZFCP_STATUS_COMMON_REMOVE)))
261 return port;
262 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265/**
266 * zfcp_unit_enqueue - enqueue unit to unit list of a port.
267 * @port: pointer to port where unit is added
268 * @fcp_lun: FCP LUN of unit to be enqueued
Swen Schillig317e6b62008-07-02 10:56:37 +0200269 * Returns: pointer to enqueued unit on success, ERR_PTR on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 * Locks: config_sema must be held to serialize changes to the unit list
271 *
272 * Sets up some unit internal structures and creates sysfs entry.
273 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200274struct zfcp_unit *zfcp_unit_enqueue(struct zfcp_port *port, fcp_lun_t fcp_lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Christof Schmitt462b7852007-06-19 10:25:30 +0200276 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Swen Schillig317e6b62008-07-02 10:56:37 +0200278 unit = kzalloc(sizeof(struct zfcp_unit), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (!unit)
Swen Schillig317e6b62008-07-02 10:56:37 +0200280 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 atomic_set(&unit->refcount, 0);
283 init_waitqueue_head(&unit->remove_wq);
284
285 unit->port = port;
286 unit->fcp_lun = fcp_lun;
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 snprintf(unit->sysfs_device.bus_id, BUS_ID_SIZE, "0x%016llx", fcp_lun);
289 unit->sysfs_device.parent = &port->sysfs_device;
290 unit->sysfs_device.release = zfcp_sysfs_unit_release;
291 dev_set_drvdata(&unit->sysfs_device, unit);
292
293 /* mark unit unusable as long as sysfs registration is not complete */
294 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
295
Christof Schmittc9615852008-05-06 11:00:05 +0200296 spin_lock_init(&unit->latencies.lock);
297 unit->latencies.write.channel.min = 0xFFFFFFFF;
298 unit->latencies.write.fabric.min = 0xFFFFFFFF;
299 unit->latencies.read.channel.min = 0xFFFFFFFF;
300 unit->latencies.read.fabric.min = 0xFFFFFFFF;
301 unit->latencies.cmd.channel.min = 0xFFFFFFFF;
302 unit->latencies.cmd.fabric.min = 0xFFFFFFFF;
303
Swen Schillig317e6b62008-07-02 10:56:37 +0200304 read_lock_irq(&zfcp_data.config_lock);
305 if (zfcp_get_unit_by_lun(port, fcp_lun)) {
306 read_unlock_irq(&zfcp_data.config_lock);
307 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
Swen Schillig317e6b62008-07-02 10:56:37 +0200309 read_unlock_irq(&zfcp_data.config_lock);
310
311 if (device_register(&unit->sysfs_device))
312 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 if (zfcp_sysfs_unit_create_files(&unit->sysfs_device)) {
315 device_unregister(&unit->sysfs_device);
Swen Schillig317e6b62008-07-02 10:56:37 +0200316 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
318
319 zfcp_unit_get(unit);
Christof Schmitt462b7852007-06-19 10:25:30 +0200320 unit->scsi_lun = scsilun_to_int((struct scsi_lun *)&unit->fcp_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 write_lock_irq(&zfcp_data.config_lock);
Christof Schmitt462b7852007-06-19 10:25:30 +0200323 list_add_tail(&unit->list, &port->unit_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
325 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &unit->status);
Swen Schillig317e6b62008-07-02 10:56:37 +0200326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 write_unlock_irq(&zfcp_data.config_lock);
328
329 port->units++;
330 zfcp_port_get(port);
331
332 return unit;
Swen Schillig317e6b62008-07-02 10:56:37 +0200333
334err_out_free:
335 kfree(unit);
336 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
Swen Schillig317e6b62008-07-02 10:56:37 +0200339/**
340 * zfcp_unit_dequeue - dequeue unit
341 * @unit: pointer to zfcp_unit
342 *
343 * waits until all work is done on unit and removes it then from the unit->list
344 * of the associated port.
345 */
346void zfcp_unit_dequeue(struct zfcp_unit *unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 zfcp_unit_wait(unit);
349 write_lock_irq(&zfcp_data.config_lock);
350 list_del(&unit->list);
351 write_unlock_irq(&zfcp_data.config_lock);
352 unit->port->units--;
353 zfcp_port_put(unit->port);
354 zfcp_sysfs_unit_remove_files(&unit->sysfs_device);
355 device_unregister(&unit->sysfs_device);
356}
357
Swen Schillig317e6b62008-07-02 10:56:37 +0200358static int zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Swen Schillig317e6b62008-07-02 10:56:37 +0200360 /* must only be called with zfcp_data.config_sema taken */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 adapter->pool.fsf_req_erp =
Swen Schillig317e6b62008-07-02 10:56:37 +0200362 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800363 if (!adapter->pool.fsf_req_erp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return -ENOMEM;
365
366 adapter->pool.fsf_req_scsi =
Swen Schillig317e6b62008-07-02 10:56:37 +0200367 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800368 if (!adapter->pool.fsf_req_scsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return -ENOMEM;
370
371 adapter->pool.fsf_req_abort =
Swen Schillig317e6b62008-07-02 10:56:37 +0200372 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800373 if (!adapter->pool.fsf_req_abort)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return -ENOMEM;
375
376 adapter->pool.fsf_req_status_read =
Swen Schillig317e6b62008-07-02 10:56:37 +0200377 mempool_create_kmalloc_pool(FSF_STATUS_READS_RECOM,
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800378 sizeof(struct zfcp_fsf_req));
379 if (!adapter->pool.fsf_req_status_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return -ENOMEM;
381
382 adapter->pool.data_status_read =
Swen Schillig317e6b62008-07-02 10:56:37 +0200383 mempool_create_slab_pool(FSF_STATUS_READS_RECOM,
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200384 zfcp_data.sr_buffer_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800385 if (!adapter->pool.data_status_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return -ENOMEM;
387
388 adapter->pool.data_gid_pn =
Swen Schillig317e6b62008-07-02 10:56:37 +0200389 mempool_create_slab_pool(1, zfcp_data.gid_pn_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800390 if (!adapter->pool.data_gid_pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return -ENOMEM;
392
393 return 0;
394}
395
Swen Schillig317e6b62008-07-02 10:56:37 +0200396static void zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Swen Schillig317e6b62008-07-02 10:56:37 +0200398 /* zfcp_data.config_sema must be held */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (adapter->pool.fsf_req_erp)
400 mempool_destroy(adapter->pool.fsf_req_erp);
401 if (adapter->pool.fsf_req_scsi)
402 mempool_destroy(adapter->pool.fsf_req_scsi);
403 if (adapter->pool.fsf_req_abort)
404 mempool_destroy(adapter->pool.fsf_req_abort);
405 if (adapter->pool.fsf_req_status_read)
406 mempool_destroy(adapter->pool.fsf_req_status_read);
407 if (adapter->pool.data_status_read)
408 mempool_destroy(adapter->pool.data_status_read);
409 if (adapter->pool.data_gid_pn)
410 mempool_destroy(adapter->pool.data_gid_pn);
411}
412
Heiko Carstens763968e2007-05-10 15:45:46 +0200413static void zfcp_dummy_release(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
415 return;
416}
417
Swen Schillig317e6b62008-07-02 10:56:37 +0200418/**
419 * zfcp_status_read_refill - refill the long running status_read_requests
420 * @adapter: ptr to struct zfcp_adapter for which the buffers should be refilled
421 *
422 * Returns: 0 on success, 1 otherwise
423 *
424 * if there are 16 or more status_read requests missing an adapter_reopen
425 * is triggered
426 */
Swen Schilligd26ab062008-05-19 12:17:37 +0200427int zfcp_status_read_refill(struct zfcp_adapter *adapter)
428{
429 while (atomic_read(&adapter->stat_miss) > 0)
Swen Schillig7afe29f2008-07-02 10:56:33 +0200430 if (zfcp_fsf_status_read(adapter, ZFCP_WAIT_FOR_SBAL)) {
431 if (atomic_read(&adapter->stat_miss) >= 16) {
432 zfcp_erp_adapter_reopen(adapter, 0, 103, NULL);
433 return 1;
434 }
Swen Schilligd26ab062008-05-19 12:17:37 +0200435 break;
Swen Schillig7afe29f2008-07-02 10:56:33 +0200436 } else
437 atomic_dec(&adapter->stat_miss);
Swen Schilligd26ab062008-05-19 12:17:37 +0200438 return 0;
439}
440
441static void _zfcp_status_read_scheduler(struct work_struct *work)
442{
443 zfcp_status_read_refill(container_of(work, struct zfcp_adapter,
444 stat_work));
445}
446
Swen Schilligcc8c2822008-06-10 18:21:00 +0200447static int zfcp_nameserver_enqueue(struct zfcp_adapter *adapter)
448{
449 struct zfcp_port *port;
450
451 port = zfcp_port_enqueue(adapter, 0, ZFCP_STATUS_PORT_WKA,
452 ZFCP_DID_DIRECTORY_SERVICE);
Swen Schillig317e6b62008-07-02 10:56:37 +0200453 if (IS_ERR(port))
454 return PTR_ERR(port);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200455 zfcp_port_put(port);
456
457 return 0;
458}
459
Swen Schillig317e6b62008-07-02 10:56:37 +0200460/**
461 * zfcp_adapter_enqueue - enqueue a new adapter to the list
462 * @ccw_device: pointer to the struct cc_device
463 *
464 * Returns: 0 if a new adapter was successfully enqueued
465 * -ENOMEM if alloc failed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 * Enqueues an adapter at the end of the adapter list in the driver data.
467 * All adapter internal structures are set up.
468 * Proc-fs entries are also created.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 * locks: config_sema must be held to serialise changes to the adapter list
470 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200471int zfcp_adapter_enqueue(struct ccw_device *ccw_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 struct zfcp_adapter *adapter;
474
475 /*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200476 * Note: It is safe to release the list_lock, as any list changes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 * are protected by the config_sema, which must be held to get here
478 */
479
Swen Schillig317e6b62008-07-02 10:56:37 +0200480 adapter = kzalloc(sizeof(struct zfcp_adapter), GFP_KERNEL);
Christof Schmitt553448f2008-06-10 18:20:58 +0200481 if (!adapter)
Swen Schillig317e6b62008-07-02 10:56:37 +0200482 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 ccw_device->handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 adapter->ccw_device = ccw_device;
Swen Schillig317e6b62008-07-02 10:56:37 +0200486 atomic_set(&adapter->refcount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Swen Schillig00bab912008-06-10 18:20:57 +0200488 if (zfcp_qdio_allocate(adapter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 goto qdio_allocate_failed;
490
Swen Schillig00bab912008-06-10 18:20:57 +0200491 if (zfcp_allocate_low_mem_buffers(adapter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 goto failed_low_mem_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
Swen Schillig00bab912008-06-10 18:20:57 +0200494 if (zfcp_reqlist_alloc(adapter))
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200495 goto failed_low_mem_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Swen Schillig317e6b62008-07-02 10:56:37 +0200497 if (zfcp_adapter_debug_register(adapter))
498 goto debug_register_failed;
499
500 init_waitqueue_head(&adapter->remove_wq);
501 init_waitqueue_head(&adapter->erp_thread_wqh);
502 init_waitqueue_head(&adapter->erp_done_wqh);
503
504 INIT_LIST_HEAD(&adapter->port_list_head);
505 INIT_LIST_HEAD(&adapter->port_remove_lh);
506 INIT_LIST_HEAD(&adapter->erp_ready_head);
507 INIT_LIST_HEAD(&adapter->erp_running_head);
508
509 spin_lock_init(&adapter->req_list_lock);
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100510
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100511 spin_lock_init(&adapter->hba_dbf_lock);
512 spin_lock_init(&adapter->san_dbf_lock);
513 spin_lock_init(&adapter->scsi_dbf_lock);
Martin Peschked79a83d2008-03-27 14:22:00 +0100514 spin_lock_init(&adapter->rec_dbf_lock);
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100515
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100516 rwlock_init(&adapter->erp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 rwlock_init(&adapter->abort_lock);
Swen Schillig00bab912008-06-10 18:20:57 +0200518 rwlock_init(&adapter->req_q.lock);
Swen Schillig317e6b62008-07-02 10:56:37 +0200519
520 sema_init(&adapter->erp_ready_sem, 0);
521
Swen Schilligd26ab062008-05-19 12:17:37 +0200522 INIT_WORK(&adapter->stat_work, _zfcp_status_read_scheduler);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200523 INIT_WORK(&adapter->scan_work, _zfcp_scan_ports_later);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 /* mark adapter unusable as long as sysfs registration is not complete */
526 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 dev_set_drvdata(&ccw_device->dev, adapter);
529
530 if (zfcp_sysfs_adapter_create_files(&ccw_device->dev))
531 goto sysfs_failed;
532
533 adapter->generic_services.parent = &adapter->ccw_device->dev;
534 adapter->generic_services.release = zfcp_dummy_release;
535 snprintf(adapter->generic_services.bus_id, BUS_ID_SIZE,
536 "generic_services");
537
538 if (device_register(&adapter->generic_services))
539 goto generic_services_failed;
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 write_lock_irq(&zfcp_data.config_lock);
542 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
543 list_add_tail(&adapter->list, &zfcp_data.adapter_list_head);
544 write_unlock_irq(&zfcp_data.config_lock);
545
546 zfcp_data.adapters++;
547
Swen Schilligcc8c2822008-06-10 18:21:00 +0200548 zfcp_nameserver_enqueue(adapter);
549
Swen Schillig317e6b62008-07-02 10:56:37 +0200550 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Swen Schillig317e6b62008-07-02 10:56:37 +0200552generic_services_failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 zfcp_sysfs_adapter_remove_files(&adapter->ccw_device->dev);
Swen Schillig317e6b62008-07-02 10:56:37 +0200554sysfs_failed:
Christof Schmittff17a292007-08-28 09:31:41 +0200555 zfcp_adapter_debug_unregister(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200556debug_register_failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 dev_set_drvdata(&ccw_device->dev, NULL);
Swen Schillig317e6b62008-07-02 10:56:37 +0200558 kfree(adapter->req_list);
559failed_low_mem_buffers:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 zfcp_free_low_mem_buffers(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200561qdio_allocate_failed:
Swen Schillig00bab912008-06-10 18:20:57 +0200562 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 kfree(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200564 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
Swen Schillig317e6b62008-07-02 10:56:37 +0200567/**
568 * zfcp_adapter_dequeue - remove the adapter from the resource list
569 * @adapter: pointer to struct zfcp_adapter which should be removed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 * locks: adapter list write lock is assumed to be held by caller
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200572void zfcp_adapter_dequeue(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
574 int retval = 0;
575 unsigned long flags;
576
Swen Schilligcc8c2822008-06-10 18:21:00 +0200577 cancel_work_sync(&adapter->scan_work);
Swen Schilligd26ab062008-05-19 12:17:37 +0200578 cancel_work_sync(&adapter->stat_work);
Michael Loehr9f287452007-05-09 11:01:24 +0200579 zfcp_adapter_scsi_unregister(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 device_unregister(&adapter->generic_services);
581 zfcp_sysfs_adapter_remove_files(&adapter->ccw_device->dev);
582 dev_set_drvdata(&adapter->ccw_device->dev, NULL);
583 /* sanity check: no pending FSF requests */
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200584 spin_lock_irqsave(&adapter->req_list_lock, flags);
585 retval = zfcp_reqlist_isempty(adapter);
586 spin_unlock_irqrestore(&adapter->req_list_lock, flags);
Swen Schillig317e6b62008-07-02 10:56:37 +0200587 if (!retval)
588 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Christof Schmittff17a292007-08-28 09:31:41 +0200590 zfcp_adapter_debug_unregister(adapter);
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 /* remove specified adapter data structure from list */
593 write_lock_irq(&zfcp_data.config_lock);
594 list_del(&adapter->list);
595 write_unlock_irq(&zfcp_data.config_lock);
596
597 /* decrease number of adapters in list */
598 zfcp_data.adapters--;
599
Swen Schillig00bab912008-06-10 18:20:57 +0200600 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602 zfcp_free_low_mem_buffers(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200603 kfree(adapter->req_list);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100604 kfree(adapter->fc_stats);
605 kfree(adapter->stats_reset_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 kfree(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
609/**
610 * zfcp_port_enqueue - enqueue port to port list of adapter
611 * @adapter: adapter where remote port is added
612 * @wwpn: WWPN of the remote port to be enqueued
613 * @status: initial status for the port
614 * @d_id: destination id of the remote port to be enqueued
Swen Schillig317e6b62008-07-02 10:56:37 +0200615 * Returns: pointer to enqueued port on success, ERR_PTR on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 * Locks: config_sema must be held to serialize changes to the port list
617 *
618 * All port internal structures are set up and the sysfs entry is generated.
619 * d_id is used to enqueue ports with a well known address like the Directory
620 * Service for nameserver lookup.
621 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200622struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, wwn_t wwpn,
623 u32 status, u32 d_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624{
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700625 struct zfcp_port *port;
Swen Schillig317e6b62008-07-02 10:56:37 +0200626 char *bus_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Swen Schillig317e6b62008-07-02 10:56:37 +0200628 port = kzalloc(sizeof(struct zfcp_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (!port)
Swen Schillig317e6b62008-07-02 10:56:37 +0200630 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 init_waitqueue_head(&port->remove_wq);
633
634 INIT_LIST_HEAD(&port->unit_list_head);
635 INIT_LIST_HEAD(&port->unit_remove_lh);
636
637 port->adapter = adapter;
Swen Schillig317e6b62008-07-02 10:56:37 +0200638 port->d_id = d_id;
639 port->wwpn = wwpn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Swen Schillig317e6b62008-07-02 10:56:37 +0200641 /* mark port unusable as long as sysfs registration is not complete */
642 atomic_set_mask(status | ZFCP_STATUS_COMMON_REMOVE, &port->status);
643 atomic_set(&port->refcount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (status & ZFCP_STATUS_PORT_WKA) {
646 switch (d_id) {
647 case ZFCP_DID_DIRECTORY_SERVICE:
Swen Schillig317e6b62008-07-02 10:56:37 +0200648 bus_id = "directory";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 break;
650 case ZFCP_DID_MANAGEMENT_SERVICE:
Swen Schillig317e6b62008-07-02 10:56:37 +0200651 bus_id = "management";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 break;
653 case ZFCP_DID_KEY_DISTRIBUTION_SERVICE:
Swen Schillig317e6b62008-07-02 10:56:37 +0200654 bus_id = "key_distribution";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 break;
656 case ZFCP_DID_ALIAS_SERVICE:
Swen Schillig317e6b62008-07-02 10:56:37 +0200657 bus_id = "alias";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 break;
659 case ZFCP_DID_TIME_SERVICE:
Swen Schillig317e6b62008-07-02 10:56:37 +0200660 bus_id = "time";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 break;
662 default:
663 kfree(port);
Swen Schillig317e6b62008-07-02 10:56:37 +0200664 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
Swen Schillig317e6b62008-07-02 10:56:37 +0200666 snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE, "%s", bus_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 port->sysfs_device.parent = &adapter->generic_services;
668 } else {
669 snprintf(port->sysfs_device.bus_id,
670 BUS_ID_SIZE, "0x%016llx", wwpn);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700671 port->sysfs_device.parent = &adapter->ccw_device->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 }
Swen Schilligcc8c2822008-06-10 18:21:00 +0200673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 port->sysfs_device.release = zfcp_sysfs_port_release;
675 dev_set_drvdata(&port->sysfs_device, port);
676
Swen Schillig317e6b62008-07-02 10:56:37 +0200677 read_lock_irq(&zfcp_data.config_lock);
678 if (!(status & ZFCP_STATUS_PORT_NO_WWPN))
679 if (zfcp_get_port_by_wwpn(adapter, wwpn)) {
680 read_unlock_irq(&zfcp_data.config_lock);
681 goto err_out_free;
682 }
683 read_unlock_irq(&zfcp_data.config_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Swen Schillig317e6b62008-07-02 10:56:37 +0200685 if (device_register(&port->sysfs_device))
686 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 if (zfcp_sysfs_port_create_files(&port->sysfs_device, status)) {
689 device_unregister(&port->sysfs_device);
Swen Schillig317e6b62008-07-02 10:56:37 +0200690 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 }
692
693 zfcp_port_get(port);
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 write_lock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700696 list_add_tail(&port->list, &adapter->port_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status);
698 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &port->status);
699 if (d_id == ZFCP_DID_DIRECTORY_SERVICE)
700 if (!adapter->nameserver_port)
701 adapter->nameserver_port = port;
702 adapter->ports++;
Swen Schillig317e6b62008-07-02 10:56:37 +0200703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 write_unlock_irq(&zfcp_data.config_lock);
705
706 zfcp_adapter_get(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return port;
Swen Schillig317e6b62008-07-02 10:56:37 +0200708
709err_out_free:
710 kfree(port);
711err_out:
712 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
Swen Schillig317e6b62008-07-02 10:56:37 +0200715/**
716 * zfcp_port_dequeue - dequeues a port from the port list of the adapter
717 * @port: pointer to struct zfcp_port which should be removed
718 */
719void zfcp_port_dequeue(struct zfcp_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
721 zfcp_port_wait(port);
722 write_lock_irq(&zfcp_data.config_lock);
723 list_del(&port->list);
724 port->adapter->ports--;
725 write_unlock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700726 if (port->rport)
Heiko Carstens20b17302005-08-28 13:22:37 -0700727 fc_remote_port_delete(port->rport);
728 port->rport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 zfcp_adapter_put(port->adapter);
730 zfcp_sysfs_port_remove_files(&port->sysfs_device,
731 atomic_read(&port->status));
732 device_unregister(&port->sysfs_device);
733}
734
Swen Schillig317e6b62008-07-02 10:56:37 +0200735/**
736 * zfcp_sg_free_table - free memory used by scatterlists
737 * @sg: pointer to scatterlist
738 * @count: number of scatterlist which are to be free'ed
739 * the scatterlist are expected to reference pages always
740 */
Christof Schmitt45633fd2008-06-10 18:20:55 +0200741void zfcp_sg_free_table(struct scatterlist *sg, int count)
742{
743 int i;
744
745 for (i = 0; i < count; i++, sg++)
746 if (sg)
747 free_page((unsigned long) sg_virt(sg));
748 else
749 break;
750}
751
Swen Schillig317e6b62008-07-02 10:56:37 +0200752/**
753 * zfcp_sg_setup_table - init scatterlist and allocate, assign buffers
754 * @sg: pointer to struct scatterlist
755 * @count: number of scatterlists which should be assigned with buffers
756 * of size page
757 *
758 * Returns: 0 on success, -ENOMEM otherwise
759 */
Christof Schmitt45633fd2008-06-10 18:20:55 +0200760int zfcp_sg_setup_table(struct scatterlist *sg, int count)
761{
762 void *addr;
763 int i;
764
765 sg_init_table(sg, count);
766 for (i = 0; i < count; i++, sg++) {
767 addr = (void *) get_zeroed_page(GFP_KERNEL);
768 if (!addr) {
769 zfcp_sg_free_table(sg, i);
770 return -ENOMEM;
771 }
772 sg_set_buf(sg, addr, PAGE_SIZE);
773 }
774 return 0;
775}