blob: fc4a2895382490a6891636b38a6daf3087b789a8 [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>
Christof Schmittbd43a422008-12-25 13:38:50 +010029#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "zfcp_ext.h"
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static char *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +020034MODULE_AUTHOR("IBM Deutschland Entwicklung GmbH - linux390@de.ibm.com");
Swen Schillig317e6b62008-07-02 10:56:37 +020035MODULE_DESCRIPTION("FCP HBA driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070036MODULE_LICENSE("GPL");
37
6f71d9b2005-04-10 23:04:28 -050038module_param(device, charp, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039MODULE_PARM_DESC(device, "specify initial device");
40
Heiko Carstensca2d02c2007-05-08 11:17:54 +020041static int zfcp_reqlist_alloc(struct zfcp_adapter *adapter)
Volker Sameskefea9d6c2006-08-02 11:05:16 +020042{
Heiko Carstensca2d02c2007-05-08 11:17:54 +020043 int idx;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020044
45 adapter->req_list = kcalloc(REQUEST_LIST_SIZE, sizeof(struct list_head),
46 GFP_KERNEL);
Volker Sameskefea9d6c2006-08-02 11:05:16 +020047 if (!adapter->req_list)
48 return -ENOMEM;
49
Heiko Carstensca2d02c2007-05-08 11:17:54 +020050 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
51 INIT_LIST_HEAD(&adapter->req_list[idx]);
Volker Sameskefea9d6c2006-08-02 11:05:16 +020052 return 0;
53}
54
Swen Schillig317e6b62008-07-02 10:56:37 +020055/**
56 * zfcp_reqlist_isempty - is the request list empty
57 * @adapter: pointer to struct zfcp_adapter
58 *
59 * Returns: true if list is empty, false otherwise
60 */
Volker Sameskefea9d6c2006-08-02 11:05:16 +020061int zfcp_reqlist_isempty(struct zfcp_adapter *adapter)
62{
Heiko Carstensca2d02c2007-05-08 11:17:54 +020063 unsigned int idx;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020064
Heiko Carstensca2d02c2007-05-08 11:17:54 +020065 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
66 if (!list_empty(&adapter->req_list[idx]))
Volker Sameskefea9d6c2006-08-02 11:05:16 +020067 return 0;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020068 return 1;
69}
70
Swen Schillig317e6b62008-07-02 10:56:37 +020071static int __init zfcp_device_setup(char *devstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Swen Schillig317e6b62008-07-02 10:56:37 +020073 char *token;
74 char *str;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Andreas Herrmanncd8a3832005-06-13 13:22:25 +020076 if (!devstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return 0;
78
Swen Schillig317e6b62008-07-02 10:56:37 +020079 /* duplicate devstr and keep the original for sysfs presentation*/
80 str = kmalloc(strlen(devstr) + 1, GFP_KERNEL);
81 if (!str)
Christof Schmitt553448f2008-06-10 18:20:58 +020082 return 0;
Andreas Herrmanncd8a3832005-06-13 13:22:25 +020083
Swen Schillig317e6b62008-07-02 10:56:37 +020084 strcpy(str, devstr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Swen Schillig317e6b62008-07-02 10:56:37 +020086 token = strsep(&str, ",");
87 if (!token || strlen(token) >= BUS_ID_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 goto err_out;
Swen Schillig317e6b62008-07-02 10:56:37 +020089 strncpy(zfcp_data.init_busid, token, BUS_ID_SIZE);
90
91 token = strsep(&str, ",");
Swen Schillig7ba58c92008-10-01 12:42:18 +020092 if (!token || strict_strtoull(token, 0,
93 (unsigned long long *) &zfcp_data.init_wwpn))
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 goto err_out;
95
Swen Schillig317e6b62008-07-02 10:56:37 +020096 token = strsep(&str, ",");
Swen Schillig7ba58c92008-10-01 12:42:18 +020097 if (!token || strict_strtoull(token, 0,
98 (unsigned long long *) &zfcp_data.init_fcp_lun))
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 goto err_out;
Swen Schillig317e6b62008-07-02 10:56:37 +0200100
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200101 kfree(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return 1;
103
104 err_out:
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200105 kfree(str);
Christof Schmittff3b24f2008-10-01 12:42:15 +0200106 pr_err("zfcp: %s is not a valid SCSI device\n", devstr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return 0;
108}
109
Swen Schillig317e6b62008-07-02 10:56:37 +0200110static void __init zfcp_init_device_configure(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111{
112 struct zfcp_adapter *adapter;
113 struct zfcp_port *port;
114 struct zfcp_unit *unit;
115
116 down(&zfcp_data.config_sema);
117 read_lock_irq(&zfcp_data.config_lock);
118 adapter = zfcp_get_adapter_by_busid(zfcp_data.init_busid);
119 if (adapter)
120 zfcp_adapter_get(adapter);
121 read_unlock_irq(&zfcp_data.config_lock);
122
Swen Schillig317e6b62008-07-02 10:56:37 +0200123 if (!adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 goto out_adapter;
125 port = zfcp_port_enqueue(adapter, zfcp_data.init_wwpn, 0, 0);
Swen Schillig317e6b62008-07-02 10:56:37 +0200126 if (IS_ERR(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 goto out_port;
128 unit = zfcp_unit_enqueue(port, zfcp_data.init_fcp_lun);
Swen Schillig317e6b62008-07-02 10:56:37 +0200129 if (IS_ERR(unit))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 goto out_unit;
131 up(&zfcp_data.config_sema);
132 ccw_device_set_online(adapter->ccw_device);
Swen Schillig091694a2008-10-01 12:42:25 +0200133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 zfcp_erp_wait(adapter);
Swen Schillig091694a2008-10-01 12:42:25 +0200135 wait_event(adapter->erp_done_wqh,
136 !(atomic_read(&unit->status) &
137 ZFCP_STATUS_UNIT_SCSI_WORK_PENDING));
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 down(&zfcp_data.config_sema);
140 zfcp_unit_put(unit);
Swen Schillig317e6b62008-07-02 10:56:37 +0200141out_unit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 zfcp_port_put(port);
Swen Schillig317e6b62008-07-02 10:56:37 +0200143out_port:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 zfcp_adapter_put(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200145out_adapter:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 up(&zfcp_data.config_sema);
147 return;
148}
149
Swen Schillig317e6b62008-07-02 10:56:37 +0200150static struct kmem_cache *zfcp_cache_create(int size, char *name)
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200151{
152 int align = 1;
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200153 while ((size - align) > 0)
154 align <<= 1;
Swen Schillig317e6b62008-07-02 10:56:37 +0200155 return kmem_cache_create(name , size, align, 0, NULL);
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200156}
157
Swen Schillig317e6b62008-07-02 10:56:37 +0200158static int __init zfcp_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200160 int retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Swen Schillig317e6b62008-07-02 10:56:37 +0200162 zfcp_data.fsf_req_qtcb_cache = zfcp_cache_create(
163 sizeof(struct zfcp_fsf_req_qtcb), "zfcp_fsf");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200164 if (!zfcp_data.fsf_req_qtcb_cache)
165 goto out;
166
Swen Schillig317e6b62008-07-02 10:56:37 +0200167 zfcp_data.sr_buffer_cache = zfcp_cache_create(
168 sizeof(struct fsf_status_read_buffer), "zfcp_sr");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200169 if (!zfcp_data.sr_buffer_cache)
170 goto out_sr_cache;
171
Swen Schillig317e6b62008-07-02 10:56:37 +0200172 zfcp_data.gid_pn_cache = zfcp_cache_create(
173 sizeof(struct zfcp_gid_pn_data), "zfcp_gid");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200174 if (!zfcp_data.gid_pn_cache)
175 goto out_gid_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Swen Schilligb7f15f32008-10-01 12:42:22 +0200177 zfcp_data.work_queue = create_singlethread_workqueue("zfcp_wq");
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 INIT_LIST_HEAD(&zfcp_data.adapter_list_head);
Swen Schillig317e6b62008-07-02 10:56:37 +0200180 sema_init(&zfcp_data.config_sema, 1);
181 rwlock_init(&zfcp_data.config_lock);
182
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200183 zfcp_data.scsi_transport_template =
184 fc_attach_transport(&zfcp_transport_functions);
185 if (!zfcp_data.scsi_transport_template)
186 goto out_transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 retval = misc_register(&zfcp_cfdc_misc);
Swen Schillig317e6b62008-07-02 10:56:37 +0200189 if (retval) {
Christof Schmittff3b24f2008-10-01 12:42:15 +0200190 pr_err("zfcp: Registering the misc device zfcp_cfdc failed\n");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200191 goto out_misc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 retval = zfcp_ccw_register();
195 if (retval) {
Christof Schmittff3b24f2008-10-01 12:42:15 +0200196 pr_err("zfcp: The zfcp device driver could not register with "
197 "the common I/O layer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 goto out_ccw_register;
199 }
200
201 if (zfcp_device_setup(device))
202 zfcp_init_device_configure();
203
204 goto out;
205
Swen Schillig317e6b62008-07-02 10:56:37 +0200206out_ccw_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 misc_deregister(&zfcp_cfdc_misc);
Swen Schillig317e6b62008-07-02 10:56:37 +0200208out_misc:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200209 fc_release_transport(zfcp_data.scsi_transport_template);
Swen Schillig317e6b62008-07-02 10:56:37 +0200210out_transport:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200211 kmem_cache_destroy(zfcp_data.gid_pn_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200212out_gid_cache:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200213 kmem_cache_destroy(zfcp_data.sr_buffer_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200214out_sr_cache:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200215 kmem_cache_destroy(zfcp_data.fsf_req_qtcb_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200216out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return retval;
218}
219
Swen Schillig317e6b62008-07-02 10:56:37 +0200220module_init(zfcp_module_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222/**
223 * zfcp_get_unit_by_lun - find unit in unit list of port by FCP LUN
224 * @port: pointer to port to search for unit
225 * @fcp_lun: FCP LUN to search for
Swen Schillig317e6b62008-07-02 10:56:37 +0200226 *
227 * Returns: pointer to zfcp_unit or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200229struct zfcp_unit *zfcp_get_unit_by_lun(struct zfcp_port *port, u64 fcp_lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Swen Schillig317e6b62008-07-02 10:56:37 +0200233 list_for_each_entry(unit, &port->unit_list_head, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if ((unit->fcp_lun == fcp_lun) &&
Swen Schillig317e6b62008-07-02 10:56:37 +0200235 !(atomic_read(&unit->status) & ZFCP_STATUS_COMMON_REMOVE))
236 return unit;
237 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
240/**
241 * zfcp_get_port_by_wwpn - find port in port list of adapter by wwpn
242 * @adapter: pointer to adapter to search for port
243 * @wwpn: wwpn to search for
Swen Schillig317e6b62008-07-02 10:56:37 +0200244 *
245 * Returns: pointer to zfcp_port or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200247struct zfcp_port *zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter,
Swen Schillig7ba58c92008-10-01 12:42:18 +0200248 u64 wwpn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
250 struct zfcp_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Swen Schillig317e6b62008-07-02 10:56:37 +0200252 list_for_each_entry(port, &adapter->port_list_head, list)
253 if ((port->wwpn == wwpn) && !(atomic_read(&port->status) &
254 (ZFCP_STATUS_PORT_NO_WWPN | ZFCP_STATUS_COMMON_REMOVE)))
255 return port;
256 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
Swen Schillig60221922008-07-02 10:56:38 +0200259static void zfcp_sysfs_unit_release(struct device *dev)
260{
261 kfree(container_of(dev, struct zfcp_unit, sysfs_device));
262}
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264/**
265 * zfcp_unit_enqueue - enqueue unit to unit list of a port.
266 * @port: pointer to port where unit is added
267 * @fcp_lun: FCP LUN of unit to be enqueued
Swen Schillig317e6b62008-07-02 10:56:37 +0200268 * Returns: pointer to enqueued unit on success, ERR_PTR on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 * Locks: config_sema must be held to serialize changes to the unit list
270 *
271 * Sets up some unit internal structures and creates sysfs entry.
272 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200273struct zfcp_unit *zfcp_unit_enqueue(struct zfcp_port *port, u64 fcp_lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Christof Schmitt462b7852007-06-19 10:25:30 +0200275 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Swen Schillig317e6b62008-07-02 10:56:37 +0200277 unit = kzalloc(sizeof(struct zfcp_unit), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (!unit)
Swen Schillig317e6b62008-07-02 10:56:37 +0200279 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 atomic_set(&unit->refcount, 0);
282 init_waitqueue_head(&unit->remove_wq);
283
284 unit->port = port;
285 unit->fcp_lun = fcp_lun;
286
Cornelia Huck1bf5b282008-10-10 21:33:10 +0200287 dev_set_name(&unit->sysfs_device, "0x%016llx",
288 (unsigned long long) fcp_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 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
Swen Schillig60221922008-07-02 10:56:38 +0200314 if (sysfs_create_group(&unit->sysfs_device.kobj,
315 &zfcp_sysfs_unit_attrs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 device_unregister(&unit->sysfs_device);
Swen Schillig317e6b62008-07-02 10:56:37 +0200317 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319
320 zfcp_unit_get(unit);
321
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 zfcp_port_get(port);
330
331 return unit;
Swen Schillig317e6b62008-07-02 10:56:37 +0200332
333err_out_free:
334 kfree(unit);
335 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
337
Swen Schillig317e6b62008-07-02 10:56:37 +0200338/**
339 * zfcp_unit_dequeue - dequeue unit
340 * @unit: pointer to zfcp_unit
341 *
342 * waits until all work is done on unit and removes it then from the unit->list
343 * of the associated port.
344 */
345void zfcp_unit_dequeue(struct zfcp_unit *unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200347 wait_event(unit->remove_wq, atomic_read(&unit->refcount) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 write_lock_irq(&zfcp_data.config_lock);
349 list_del(&unit->list);
350 write_unlock_irq(&zfcp_data.config_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 zfcp_port_put(unit->port);
Swen Schillig60221922008-07-02 10:56:38 +0200352 sysfs_remove_group(&unit->sysfs_device.kobj, &zfcp_sysfs_unit_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 device_unregister(&unit->sysfs_device);
354}
355
Swen Schillig317e6b62008-07-02 10:56:37 +0200356static int zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Swen Schillig317e6b62008-07-02 10:56:37 +0200358 /* must only be called with zfcp_data.config_sema taken */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 adapter->pool.fsf_req_erp =
Swen Schillig317e6b62008-07-02 10:56:37 +0200360 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800361 if (!adapter->pool.fsf_req_erp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return -ENOMEM;
363
364 adapter->pool.fsf_req_scsi =
Swen Schillig317e6b62008-07-02 10:56:37 +0200365 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800366 if (!adapter->pool.fsf_req_scsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return -ENOMEM;
368
369 adapter->pool.fsf_req_abort =
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_abort)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return -ENOMEM;
373
374 adapter->pool.fsf_req_status_read =
Swen Schillig317e6b62008-07-02 10:56:37 +0200375 mempool_create_kmalloc_pool(FSF_STATUS_READS_RECOM,
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800376 sizeof(struct zfcp_fsf_req));
377 if (!adapter->pool.fsf_req_status_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 return -ENOMEM;
379
380 adapter->pool.data_status_read =
Swen Schillig317e6b62008-07-02 10:56:37 +0200381 mempool_create_slab_pool(FSF_STATUS_READS_RECOM,
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200382 zfcp_data.sr_buffer_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800383 if (!adapter->pool.data_status_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return -ENOMEM;
385
386 adapter->pool.data_gid_pn =
Swen Schillig317e6b62008-07-02 10:56:37 +0200387 mempool_create_slab_pool(1, zfcp_data.gid_pn_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800388 if (!adapter->pool.data_gid_pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return -ENOMEM;
390
391 return 0;
392}
393
Swen Schillig317e6b62008-07-02 10:56:37 +0200394static void zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Swen Schillig317e6b62008-07-02 10:56:37 +0200396 /* zfcp_data.config_sema must be held */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (adapter->pool.fsf_req_erp)
398 mempool_destroy(adapter->pool.fsf_req_erp);
399 if (adapter->pool.fsf_req_scsi)
400 mempool_destroy(adapter->pool.fsf_req_scsi);
401 if (adapter->pool.fsf_req_abort)
402 mempool_destroy(adapter->pool.fsf_req_abort);
403 if (adapter->pool.fsf_req_status_read)
404 mempool_destroy(adapter->pool.fsf_req_status_read);
405 if (adapter->pool.data_status_read)
406 mempool_destroy(adapter->pool.data_status_read);
407 if (adapter->pool.data_gid_pn)
408 mempool_destroy(adapter->pool.data_gid_pn);
409}
410
Swen Schillig317e6b62008-07-02 10:56:37 +0200411/**
412 * zfcp_status_read_refill - refill the long running status_read_requests
413 * @adapter: ptr to struct zfcp_adapter for which the buffers should be refilled
414 *
415 * Returns: 0 on success, 1 otherwise
416 *
417 * if there are 16 or more status_read requests missing an adapter_reopen
418 * is triggered
419 */
Swen Schilligd26ab062008-05-19 12:17:37 +0200420int zfcp_status_read_refill(struct zfcp_adapter *adapter)
421{
422 while (atomic_read(&adapter->stat_miss) > 0)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200423 if (zfcp_fsf_status_read(adapter)) {
Swen Schillig7afe29f2008-07-02 10:56:33 +0200424 if (atomic_read(&adapter->stat_miss) >= 16) {
425 zfcp_erp_adapter_reopen(adapter, 0, 103, NULL);
426 return 1;
427 }
Swen Schilligd26ab062008-05-19 12:17:37 +0200428 break;
Swen Schillig7afe29f2008-07-02 10:56:33 +0200429 } else
430 atomic_dec(&adapter->stat_miss);
Swen Schilligd26ab062008-05-19 12:17:37 +0200431 return 0;
432}
433
434static void _zfcp_status_read_scheduler(struct work_struct *work)
435{
436 zfcp_status_read_refill(container_of(work, struct zfcp_adapter,
437 stat_work));
438}
439
Christof Schmittbd43a422008-12-25 13:38:50 +0100440static void zfcp_print_sl(struct seq_file *m, struct service_level *sl)
441{
442 struct zfcp_adapter *adapter =
443 container_of(sl, struct zfcp_adapter, service_level);
444
445 seq_printf(m, "zfcp: %s microcode level %x\n",
446 dev_name(&adapter->ccw_device->dev),
447 adapter->fsf_lic_version);
448}
449
Swen Schillig317e6b62008-07-02 10:56:37 +0200450/**
451 * zfcp_adapter_enqueue - enqueue a new adapter to the list
452 * @ccw_device: pointer to the struct cc_device
453 *
454 * Returns: 0 if a new adapter was successfully enqueued
455 * -ENOMEM if alloc failed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 * Enqueues an adapter at the end of the adapter list in the driver data.
457 * All adapter internal structures are set up.
458 * Proc-fs entries are also created.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 * locks: config_sema must be held to serialise changes to the adapter list
460 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200461int zfcp_adapter_enqueue(struct ccw_device *ccw_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 struct zfcp_adapter *adapter;
464
465 /*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200466 * Note: It is safe to release the list_lock, as any list changes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 * are protected by the config_sema, which must be held to get here
468 */
469
Swen Schillig317e6b62008-07-02 10:56:37 +0200470 adapter = kzalloc(sizeof(struct zfcp_adapter), GFP_KERNEL);
Christof Schmitt553448f2008-06-10 18:20:58 +0200471 if (!adapter)
Swen Schillig317e6b62008-07-02 10:56:37 +0200472 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474 ccw_device->handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 adapter->ccw_device = ccw_device;
Swen Schillig317e6b62008-07-02 10:56:37 +0200476 atomic_set(&adapter->refcount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Swen Schillig00bab912008-06-10 18:20:57 +0200478 if (zfcp_qdio_allocate(adapter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 goto qdio_allocate_failed;
480
Swen Schillig00bab912008-06-10 18:20:57 +0200481 if (zfcp_allocate_low_mem_buffers(adapter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 goto failed_low_mem_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Swen Schillig00bab912008-06-10 18:20:57 +0200484 if (zfcp_reqlist_alloc(adapter))
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200485 goto failed_low_mem_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Swen Schillig317e6b62008-07-02 10:56:37 +0200487 if (zfcp_adapter_debug_register(adapter))
488 goto debug_register_failed;
489
490 init_waitqueue_head(&adapter->remove_wq);
491 init_waitqueue_head(&adapter->erp_thread_wqh);
492 init_waitqueue_head(&adapter->erp_done_wqh);
493
494 INIT_LIST_HEAD(&adapter->port_list_head);
Swen Schillig317e6b62008-07-02 10:56:37 +0200495 INIT_LIST_HEAD(&adapter->erp_ready_head);
496 INIT_LIST_HEAD(&adapter->erp_running_head);
497
498 spin_lock_init(&adapter->req_list_lock);
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100499
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100500 spin_lock_init(&adapter->hba_dbf_lock);
501 spin_lock_init(&adapter->san_dbf_lock);
502 spin_lock_init(&adapter->scsi_dbf_lock);
Martin Peschked79a83d2008-03-27 14:22:00 +0100503 spin_lock_init(&adapter->rec_dbf_lock);
Christof Schmitt04062892008-10-01 12:42:20 +0200504 spin_lock_init(&adapter->req_q_lock);
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100505
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100506 rwlock_init(&adapter->erp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 rwlock_init(&adapter->abort_lock);
Swen Schillig317e6b62008-07-02 10:56:37 +0200508
509 sema_init(&adapter->erp_ready_sem, 0);
510
Swen Schilligd26ab062008-05-19 12:17:37 +0200511 INIT_WORK(&adapter->stat_work, _zfcp_status_read_scheduler);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200512 INIT_WORK(&adapter->scan_work, _zfcp_scan_ports_later);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Christof Schmittbd43a422008-12-25 13:38:50 +0100514 adapter->service_level.seq_print = zfcp_print_sl;
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 /* mark adapter unusable as long as sysfs registration is not complete */
517 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 dev_set_drvdata(&ccw_device->dev, adapter);
520
Swen Schillig60221922008-07-02 10:56:38 +0200521 if (sysfs_create_group(&ccw_device->dev.kobj,
522 &zfcp_sysfs_adapter_attrs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 goto sysfs_failed;
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 write_lock_irq(&zfcp_data.config_lock);
526 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
527 list_add_tail(&adapter->list, &zfcp_data.adapter_list_head);
528 write_unlock_irq(&zfcp_data.config_lock);
529
Swen Schillig5ab944f2008-10-01 12:42:17 +0200530 zfcp_fc_nameserver_init(adapter);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200531
Swen Schillig317e6b62008-07-02 10:56:37 +0200532 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Swen Schillig317e6b62008-07-02 10:56:37 +0200534sysfs_failed:
Christof Schmittff17a292007-08-28 09:31:41 +0200535 zfcp_adapter_debug_unregister(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200536debug_register_failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 dev_set_drvdata(&ccw_device->dev, NULL);
Swen Schillig317e6b62008-07-02 10:56:37 +0200538 kfree(adapter->req_list);
539failed_low_mem_buffers:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 zfcp_free_low_mem_buffers(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200541qdio_allocate_failed:
Swen Schillig00bab912008-06-10 18:20:57 +0200542 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 kfree(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200544 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Swen Schillig317e6b62008-07-02 10:56:37 +0200547/**
548 * zfcp_adapter_dequeue - remove the adapter from the resource list
549 * @adapter: pointer to struct zfcp_adapter which should be removed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 * locks: adapter list write lock is assumed to be held by caller
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200552void zfcp_adapter_dequeue(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 int retval = 0;
555 unsigned long flags;
556
Swen Schilligcc8c2822008-06-10 18:21:00 +0200557 cancel_work_sync(&adapter->scan_work);
Swen Schilligd26ab062008-05-19 12:17:37 +0200558 cancel_work_sync(&adapter->stat_work);
Michael Loehr9f287452007-05-09 11:01:24 +0200559 zfcp_adapter_scsi_unregister(adapter);
Swen Schillig60221922008-07-02 10:56:38 +0200560 sysfs_remove_group(&adapter->ccw_device->dev.kobj,
561 &zfcp_sysfs_adapter_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 dev_set_drvdata(&adapter->ccw_device->dev, NULL);
563 /* sanity check: no pending FSF requests */
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200564 spin_lock_irqsave(&adapter->req_list_lock, flags);
565 retval = zfcp_reqlist_isempty(adapter);
566 spin_unlock_irqrestore(&adapter->req_list_lock, flags);
Swen Schillig317e6b62008-07-02 10:56:37 +0200567 if (!retval)
568 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Christof Schmittff17a292007-08-28 09:31:41 +0200570 zfcp_adapter_debug_unregister(adapter);
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 /* remove specified adapter data structure from list */
573 write_lock_irq(&zfcp_data.config_lock);
574 list_del(&adapter->list);
575 write_unlock_irq(&zfcp_data.config_lock);
576
Swen Schillig00bab912008-06-10 18:20:57 +0200577 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 zfcp_free_low_mem_buffers(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200580 kfree(adapter->req_list);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100581 kfree(adapter->fc_stats);
582 kfree(adapter->stats_reset_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 kfree(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
Swen Schillig60221922008-07-02 10:56:38 +0200586static void zfcp_sysfs_port_release(struct device *dev)
587{
588 kfree(container_of(dev, struct zfcp_port, sysfs_device));
589}
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591/**
592 * zfcp_port_enqueue - enqueue port to port list of adapter
593 * @adapter: adapter where remote port is added
594 * @wwpn: WWPN of the remote port to be enqueued
595 * @status: initial status for the port
596 * @d_id: destination id of the remote port to be enqueued
Swen Schillig317e6b62008-07-02 10:56:37 +0200597 * Returns: pointer to enqueued port on success, ERR_PTR on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 * Locks: config_sema must be held to serialize changes to the port list
599 *
600 * All port internal structures are set up and the sysfs entry is generated.
601 * d_id is used to enqueue ports with a well known address like the Directory
602 * Service for nameserver lookup.
603 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200604struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn,
Swen Schillig317e6b62008-07-02 10:56:37 +0200605 u32 status, u32 d_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700607 struct zfcp_port *port;
Swen Schillig60221922008-07-02 10:56:38 +0200608 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Swen Schillig317e6b62008-07-02 10:56:37 +0200610 port = kzalloc(sizeof(struct zfcp_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 if (!port)
Swen Schillig317e6b62008-07-02 10:56:37 +0200612 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 init_waitqueue_head(&port->remove_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 INIT_LIST_HEAD(&port->unit_list_head);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200616 INIT_WORK(&port->gid_pn_work, zfcp_erp_port_strategy_open_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 port->adapter = adapter;
Swen Schillig317e6b62008-07-02 10:56:37 +0200619 port->d_id = d_id;
620 port->wwpn = wwpn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Swen Schillig317e6b62008-07-02 10:56:37 +0200622 /* mark port unusable as long as sysfs registration is not complete */
623 atomic_set_mask(status | ZFCP_STATUS_COMMON_REMOVE, &port->status);
624 atomic_set(&port->refcount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Christof Schmittadc90da2008-11-04 16:35:09 +0100626 dev_set_name(&port->sysfs_device, "0x%016llx",
627 (unsigned long long)wwpn);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200628 port->sysfs_device.parent = &adapter->ccw_device->dev;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 port->sysfs_device.release = zfcp_sysfs_port_release;
631 dev_set_drvdata(&port->sysfs_device, port);
632
Swen Schillig317e6b62008-07-02 10:56:37 +0200633 read_lock_irq(&zfcp_data.config_lock);
634 if (!(status & ZFCP_STATUS_PORT_NO_WWPN))
635 if (zfcp_get_port_by_wwpn(adapter, wwpn)) {
636 read_unlock_irq(&zfcp_data.config_lock);
637 goto err_out_free;
638 }
639 read_unlock_irq(&zfcp_data.config_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Swen Schillig317e6b62008-07-02 10:56:37 +0200641 if (device_register(&port->sysfs_device))
642 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Swen Schillig5ab944f2008-10-01 12:42:17 +0200644 retval = sysfs_create_group(&port->sysfs_device.kobj,
645 &zfcp_sysfs_port_attrs);
Swen Schillig60221922008-07-02 10:56:38 +0200646
647 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 device_unregister(&port->sysfs_device);
Swen Schillig317e6b62008-07-02 10:56:37 +0200649 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
651
652 zfcp_port_get(port);
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 write_lock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700655 list_add_tail(&port->list, &adapter->port_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status);
657 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &port->status);
Swen Schillig317e6b62008-07-02 10:56:37 +0200658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 write_unlock_irq(&zfcp_data.config_lock);
660
661 zfcp_adapter_get(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return port;
Swen Schillig317e6b62008-07-02 10:56:37 +0200663
664err_out_free:
665 kfree(port);
666err_out:
667 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
669
Swen Schillig317e6b62008-07-02 10:56:37 +0200670/**
671 * zfcp_port_dequeue - dequeues a port from the port list of the adapter
672 * @port: pointer to struct zfcp_port which should be removed
673 */
674void zfcp_port_dequeue(struct zfcp_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200676 wait_event(port->remove_wq, atomic_read(&port->refcount) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 write_lock_irq(&zfcp_data.config_lock);
678 list_del(&port->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 write_unlock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700680 if (port->rport)
Heiko Carstens20b17302005-08-28 13:22:37 -0700681 fc_remote_port_delete(port->rport);
682 port->rport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 zfcp_adapter_put(port->adapter);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200684 sysfs_remove_group(&port->sysfs_device.kobj, &zfcp_sysfs_port_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 device_unregister(&port->sysfs_device);
686}
687
Swen Schillig317e6b62008-07-02 10:56:37 +0200688/**
689 * zfcp_sg_free_table - free memory used by scatterlists
690 * @sg: pointer to scatterlist
691 * @count: number of scatterlist which are to be free'ed
692 * the scatterlist are expected to reference pages always
693 */
Christof Schmitt45633fd2008-06-10 18:20:55 +0200694void zfcp_sg_free_table(struct scatterlist *sg, int count)
695{
696 int i;
697
698 for (i = 0; i < count; i++, sg++)
699 if (sg)
700 free_page((unsigned long) sg_virt(sg));
701 else
702 break;
703}
704
Swen Schillig317e6b62008-07-02 10:56:37 +0200705/**
706 * zfcp_sg_setup_table - init scatterlist and allocate, assign buffers
707 * @sg: pointer to struct scatterlist
708 * @count: number of scatterlists which should be assigned with buffers
709 * of size page
710 *
711 * Returns: 0 on success, -ENOMEM otherwise
712 */
Christof Schmitt45633fd2008-06-10 18:20:55 +0200713int zfcp_sg_setup_table(struct scatterlist *sg, int count)
714{
715 void *addr;
716 int i;
717
718 sg_init_table(sg, count);
719 for (i = 0; i < count; i++, sg++) {
720 addr = (void *) get_zeroed_page(GFP_KERNEL);
721 if (!addr) {
722 zfcp_sg_free_table(sg, i);
723 return -ENOMEM;
724 }
725 sg_set_buf(sg, addr, PAGE_SIZE);
726 }
727 return 0;
728}