blob: 2ccbd185a5fb8cc44c6698769b50427bb66a0fc0 [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 Schmitta2fa0ae2009-03-02 13:09:08 +01006 * Copyright IBM Corporation 2002, 2009
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 Schmittecf39d42008-12-25 13:39:53 +010028#define KMSG_COMPONENT "zfcp"
29#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
30
Christof Schmitt45633fd2008-06-10 18:20:55 +020031#include <linux/miscdevice.h>
Christof Schmittbd43a42b72008-12-25 13:38:50 +010032#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "zfcp_ext.h"
34
Kay Sievers98df67b2008-12-25 13:38:55 +010035#define ZFCP_BUS_ID_SIZE 20
36
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +020037MODULE_AUTHOR("IBM Deutschland Entwicklung GmbH - linux390@de.ibm.com");
Swen Schillig317e6b62008-07-02 10:56:37 +020038MODULE_DESCRIPTION("FCP HBA driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070039MODULE_LICENSE("GPL");
40
Christof Schmitt3623ecb2008-12-19 16:56:57 +010041static char *init_device;
42module_param_named(device, init_device, charp, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043MODULE_PARM_DESC(device, "specify initial device");
44
Heiko Carstensca2d02c2007-05-08 11:17:54 +020045static int zfcp_reqlist_alloc(struct zfcp_adapter *adapter)
Volker Sameskefea9d6c2006-08-02 11:05:16 +020046{
Heiko Carstensca2d02c2007-05-08 11:17:54 +020047 int idx;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020048
49 adapter->req_list = kcalloc(REQUEST_LIST_SIZE, sizeof(struct list_head),
50 GFP_KERNEL);
Volker Sameskefea9d6c2006-08-02 11:05:16 +020051 if (!adapter->req_list)
52 return -ENOMEM;
53
Heiko Carstensca2d02c2007-05-08 11:17:54 +020054 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
55 INIT_LIST_HEAD(&adapter->req_list[idx]);
Volker Sameskefea9d6c2006-08-02 11:05:16 +020056 return 0;
57}
58
Swen Schillig317e6b62008-07-02 10:56:37 +020059/**
60 * zfcp_reqlist_isempty - is the request list empty
61 * @adapter: pointer to struct zfcp_adapter
62 *
63 * Returns: true if list is empty, false otherwise
64 */
Volker Sameskefea9d6c2006-08-02 11:05:16 +020065int zfcp_reqlist_isempty(struct zfcp_adapter *adapter)
66{
Heiko Carstensca2d02c2007-05-08 11:17:54 +020067 unsigned int idx;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020068
Heiko Carstensca2d02c2007-05-08 11:17:54 +020069 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
70 if (!list_empty(&adapter->req_list[idx]))
Volker Sameskefea9d6c2006-08-02 11:05:16 +020071 return 0;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020072 return 1;
73}
74
Christof Schmitt3623ecb2008-12-19 16:56:57 +010075static void __init zfcp_init_device_configure(char *busid, u64 wwpn, u64 lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 struct zfcp_adapter *adapter;
78 struct zfcp_port *port;
79 struct zfcp_unit *unit;
80
81 down(&zfcp_data.config_sema);
82 read_lock_irq(&zfcp_data.config_lock);
Christof Schmitt3623ecb2008-12-19 16:56:57 +010083 adapter = zfcp_get_adapter_by_busid(busid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (adapter)
85 zfcp_adapter_get(adapter);
86 read_unlock_irq(&zfcp_data.config_lock);
87
Swen Schillig317e6b62008-07-02 10:56:37 +020088 if (!adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 goto out_adapter;
Christof Schmitt3623ecb2008-12-19 16:56:57 +010090 port = zfcp_port_enqueue(adapter, wwpn, 0, 0);
Swen Schillig317e6b62008-07-02 10:56:37 +020091 if (IS_ERR(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 goto out_port;
Christof Schmitt3623ecb2008-12-19 16:56:57 +010093 unit = zfcp_unit_enqueue(port, lun);
Swen Schillig317e6b62008-07-02 10:56:37 +020094 if (IS_ERR(unit))
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 goto out_unit;
96 up(&zfcp_data.config_sema);
97 ccw_device_set_online(adapter->ccw_device);
Swen Schillig091694a2008-10-01 12:42:25 +020098
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 zfcp_erp_wait(adapter);
Swen Schillig92d51932009-04-17 15:08:04 +0200100 flush_work(&unit->scsi_work);
Swen Schillig091694a2008-10-01 12:42:25 +0200101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 down(&zfcp_data.config_sema);
103 zfcp_unit_put(unit);
Swen Schillig317e6b62008-07-02 10:56:37 +0200104out_unit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 zfcp_port_put(port);
Swen Schillig317e6b62008-07-02 10:56:37 +0200106out_port:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 zfcp_adapter_put(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200108out_adapter:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 up(&zfcp_data.config_sema);
110 return;
111}
112
Swen Schillig317e6b62008-07-02 10:56:37 +0200113static struct kmem_cache *zfcp_cache_create(int size, char *name)
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200114{
115 int align = 1;
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200116 while ((size - align) > 0)
117 align <<= 1;
Swen Schillig317e6b62008-07-02 10:56:37 +0200118 return kmem_cache_create(name , size, align, 0, NULL);
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200119}
120
Christof Schmitt3623ecb2008-12-19 16:56:57 +0100121static void __init zfcp_init_device_setup(char *devstr)
122{
123 char *token;
124 char *str;
125 char busid[ZFCP_BUS_ID_SIZE];
126 u64 wwpn, lun;
127
128 /* duplicate devstr and keep the original for sysfs presentation*/
129 str = kmalloc(strlen(devstr) + 1, GFP_KERNEL);
130 if (!str)
131 return;
132
133 strcpy(str, devstr);
134
135 token = strsep(&str, ",");
136 if (!token || strlen(token) >= ZFCP_BUS_ID_SIZE)
137 goto err_out;
138 strncpy(busid, token, ZFCP_BUS_ID_SIZE);
139
140 token = strsep(&str, ",");
141 if (!token || strict_strtoull(token, 0, (unsigned long long *) &wwpn))
142 goto err_out;
143
144 token = strsep(&str, ",");
145 if (!token || strict_strtoull(token, 0, (unsigned long long *) &lun))
146 goto err_out;
147
148 kfree(str);
149 zfcp_init_device_configure(busid, wwpn, lun);
150 return;
151
152 err_out:
153 kfree(str);
154 pr_err("%s is not a valid SCSI device\n", devstr);
155}
156
Swen Schillig317e6b62008-07-02 10:56:37 +0200157static int __init zfcp_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200159 int retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Swen Schillig317e6b62008-07-02 10:56:37 +0200161 zfcp_data.fsf_req_qtcb_cache = zfcp_cache_create(
162 sizeof(struct zfcp_fsf_req_qtcb), "zfcp_fsf");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200163 if (!zfcp_data.fsf_req_qtcb_cache)
164 goto out;
165
Swen Schillig317e6b62008-07-02 10:56:37 +0200166 zfcp_data.sr_buffer_cache = zfcp_cache_create(
167 sizeof(struct fsf_status_read_buffer), "zfcp_sr");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200168 if (!zfcp_data.sr_buffer_cache)
169 goto out_sr_cache;
170
Swen Schillig317e6b62008-07-02 10:56:37 +0200171 zfcp_data.gid_pn_cache = zfcp_cache_create(
172 sizeof(struct zfcp_gid_pn_data), "zfcp_gid");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200173 if (!zfcp_data.gid_pn_cache)
174 goto out_gid_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Swen Schilligb7f15f32008-10-01 12:42:22 +0200176 zfcp_data.work_queue = create_singlethread_workqueue("zfcp_wq");
177
Swen Schillig317e6b62008-07-02 10:56:37 +0200178 sema_init(&zfcp_data.config_sema, 1);
179 rwlock_init(&zfcp_data.config_lock);
180
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200181 zfcp_data.scsi_transport_template =
182 fc_attach_transport(&zfcp_transport_functions);
183 if (!zfcp_data.scsi_transport_template)
184 goto out_transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 retval = misc_register(&zfcp_cfdc_misc);
Swen Schillig317e6b62008-07-02 10:56:37 +0200187 if (retval) {
Christof Schmittecf39d42008-12-25 13:39:53 +0100188 pr_err("Registering the misc device zfcp_cfdc failed\n");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200189 goto out_misc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 retval = zfcp_ccw_register();
193 if (retval) {
Christof Schmittecf39d42008-12-25 13:39:53 +0100194 pr_err("The zfcp device driver could not register with "
Christof Schmittff3b24f2008-10-01 12:42:15 +0200195 "the common I/O layer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 goto out_ccw_register;
197 }
198
Christof Schmitt3623ecb2008-12-19 16:56:57 +0100199 if (init_device)
200 zfcp_init_device_setup(init_device);
201 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Swen Schillig317e6b62008-07-02 10:56:37 +0200203out_ccw_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 misc_deregister(&zfcp_cfdc_misc);
Swen Schillig317e6b62008-07-02 10:56:37 +0200205out_misc:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200206 fc_release_transport(zfcp_data.scsi_transport_template);
Swen Schillig317e6b62008-07-02 10:56:37 +0200207out_transport:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200208 kmem_cache_destroy(zfcp_data.gid_pn_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200209out_gid_cache:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200210 kmem_cache_destroy(zfcp_data.sr_buffer_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200211out_sr_cache:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200212 kmem_cache_destroy(zfcp_data.fsf_req_qtcb_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200213out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return retval;
215}
216
Swen Schillig317e6b62008-07-02 10:56:37 +0200217module_init(zfcp_module_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219/**
220 * zfcp_get_unit_by_lun - find unit in unit list of port by FCP LUN
221 * @port: pointer to port to search for unit
222 * @fcp_lun: FCP LUN to search for
Swen Schillig317e6b62008-07-02 10:56:37 +0200223 *
224 * Returns: pointer to zfcp_unit or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200226struct zfcp_unit *zfcp_get_unit_by_lun(struct zfcp_port *port, u64 fcp_lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Swen Schillig317e6b62008-07-02 10:56:37 +0200230 list_for_each_entry(unit, &port->unit_list_head, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 if ((unit->fcp_lun == fcp_lun) &&
Swen Schillig317e6b62008-07-02 10:56:37 +0200232 !(atomic_read(&unit->status) & ZFCP_STATUS_COMMON_REMOVE))
233 return unit;
234 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
237/**
238 * zfcp_get_port_by_wwpn - find port in port list of adapter by wwpn
239 * @adapter: pointer to adapter to search for port
240 * @wwpn: wwpn to search for
Swen Schillig317e6b62008-07-02 10:56:37 +0200241 *
242 * Returns: pointer to zfcp_port or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200244struct zfcp_port *zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter,
Swen Schillig7ba58c92008-10-01 12:42:18 +0200245 u64 wwpn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
247 struct zfcp_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Swen Schillig317e6b62008-07-02 10:56:37 +0200249 list_for_each_entry(port, &adapter->port_list_head, list)
Christof Schmitta5b11dd2009-03-02 13:08:54 +0100250 if ((port->wwpn == wwpn) &&
251 !(atomic_read(&port->status) & ZFCP_STATUS_COMMON_REMOVE))
Swen Schillig317e6b62008-07-02 10:56:37 +0200252 return port;
253 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Swen Schillig60221922008-07-02 10:56:38 +0200256static void zfcp_sysfs_unit_release(struct device *dev)
257{
258 kfree(container_of(dev, struct zfcp_unit, sysfs_device));
259}
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261/**
262 * zfcp_unit_enqueue - enqueue unit to unit list of a port.
263 * @port: pointer to port where unit is added
264 * @fcp_lun: FCP LUN of unit to be enqueued
Swen Schillig317e6b62008-07-02 10:56:37 +0200265 * Returns: pointer to enqueued unit on success, ERR_PTR on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 * Locks: config_sema must be held to serialize changes to the unit list
267 *
268 * Sets up some unit internal structures and creates sysfs entry.
269 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200270struct zfcp_unit *zfcp_unit_enqueue(struct zfcp_port *port, u64 fcp_lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Christof Schmitt462b7852007-06-19 10:25:30 +0200272 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Swen Schillig317e6b62008-07-02 10:56:37 +0200274 unit = kzalloc(sizeof(struct zfcp_unit), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (!unit)
Swen Schillig317e6b62008-07-02 10:56:37 +0200276 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 atomic_set(&unit->refcount, 0);
279 init_waitqueue_head(&unit->remove_wq);
Swen Schillig92d51932009-04-17 15:08:04 +0200280 INIT_WORK(&unit->scsi_work, zfcp_scsi_scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 unit->port = port;
283 unit->fcp_lun = fcp_lun;
284
Cornelia Huck1bf5b282008-10-10 21:33:10 +0200285 dev_set_name(&unit->sysfs_device, "0x%016llx",
286 (unsigned long long) fcp_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 unit->sysfs_device.parent = &port->sysfs_device;
288 unit->sysfs_device.release = zfcp_sysfs_unit_release;
289 dev_set_drvdata(&unit->sysfs_device, unit);
290
291 /* mark unit unusable as long as sysfs registration is not complete */
292 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
293
Christof Schmittc9615852008-05-06 11:00:05 +0200294 spin_lock_init(&unit->latencies.lock);
295 unit->latencies.write.channel.min = 0xFFFFFFFF;
296 unit->latencies.write.fabric.min = 0xFFFFFFFF;
297 unit->latencies.read.channel.min = 0xFFFFFFFF;
298 unit->latencies.read.fabric.min = 0xFFFFFFFF;
299 unit->latencies.cmd.channel.min = 0xFFFFFFFF;
300 unit->latencies.cmd.fabric.min = 0xFFFFFFFF;
301
Swen Schillig317e6b62008-07-02 10:56:37 +0200302 read_lock_irq(&zfcp_data.config_lock);
303 if (zfcp_get_unit_by_lun(port, fcp_lun)) {
304 read_unlock_irq(&zfcp_data.config_lock);
305 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
Swen Schillig317e6b62008-07-02 10:56:37 +0200307 read_unlock_irq(&zfcp_data.config_lock);
308
309 if (device_register(&unit->sysfs_device))
310 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Swen Schillig60221922008-07-02 10:56:38 +0200312 if (sysfs_create_group(&unit->sysfs_device.kobj,
313 &zfcp_sysfs_unit_attrs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 device_unregister(&unit->sysfs_device);
Swen Schillig317e6b62008-07-02 10:56:37 +0200315 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
317
318 zfcp_unit_get(unit);
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 write_lock_irq(&zfcp_data.config_lock);
Christof Schmitt462b7852007-06-19 10:25:30 +0200321 list_add_tail(&unit->list, &port->unit_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
323 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &unit->status);
Swen Schillig317e6b62008-07-02 10:56:37 +0200324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 write_unlock_irq(&zfcp_data.config_lock);
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 zfcp_port_get(port);
328
329 return unit;
Swen Schillig317e6b62008-07-02 10:56:37 +0200330
331err_out_free:
332 kfree(unit);
333 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
Swen Schillig317e6b62008-07-02 10:56:37 +0200336/**
337 * zfcp_unit_dequeue - dequeue unit
338 * @unit: pointer to zfcp_unit
339 *
340 * waits until all work is done on unit and removes it then from the unit->list
341 * of the associated port.
342 */
343void zfcp_unit_dequeue(struct zfcp_unit *unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200345 wait_event(unit->remove_wq, atomic_read(&unit->refcount) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 write_lock_irq(&zfcp_data.config_lock);
347 list_del(&unit->list);
348 write_unlock_irq(&zfcp_data.config_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 zfcp_port_put(unit->port);
Swen Schillig60221922008-07-02 10:56:38 +0200350 sysfs_remove_group(&unit->sysfs_device.kobj, &zfcp_sysfs_unit_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 device_unregister(&unit->sysfs_device);
352}
353
Swen Schillig317e6b62008-07-02 10:56:37 +0200354static int zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
Swen Schillig317e6b62008-07-02 10:56:37 +0200356 /* must only be called with zfcp_data.config_sema taken */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 adapter->pool.fsf_req_erp =
Swen Schillig317e6b62008-07-02 10:56:37 +0200358 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800359 if (!adapter->pool.fsf_req_erp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return -ENOMEM;
361
362 adapter->pool.fsf_req_scsi =
Swen Schillig317e6b62008-07-02 10:56:37 +0200363 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800364 if (!adapter->pool.fsf_req_scsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 return -ENOMEM;
366
367 adapter->pool.fsf_req_abort =
Swen Schillig317e6b62008-07-02 10:56:37 +0200368 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800369 if (!adapter->pool.fsf_req_abort)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return -ENOMEM;
371
372 adapter->pool.fsf_req_status_read =
Swen Schillig317e6b62008-07-02 10:56:37 +0200373 mempool_create_kmalloc_pool(FSF_STATUS_READS_RECOM,
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800374 sizeof(struct zfcp_fsf_req));
375 if (!adapter->pool.fsf_req_status_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return -ENOMEM;
377
378 adapter->pool.data_status_read =
Swen Schillig317e6b62008-07-02 10:56:37 +0200379 mempool_create_slab_pool(FSF_STATUS_READS_RECOM,
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200380 zfcp_data.sr_buffer_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800381 if (!adapter->pool.data_status_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return -ENOMEM;
383
384 adapter->pool.data_gid_pn =
Swen Schillig317e6b62008-07-02 10:56:37 +0200385 mempool_create_slab_pool(1, zfcp_data.gid_pn_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800386 if (!adapter->pool.data_gid_pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return -ENOMEM;
388
389 return 0;
390}
391
Swen Schillig317e6b62008-07-02 10:56:37 +0200392static void zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
Swen Schillig317e6b62008-07-02 10:56:37 +0200394 /* zfcp_data.config_sema must be held */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (adapter->pool.fsf_req_erp)
396 mempool_destroy(adapter->pool.fsf_req_erp);
397 if (adapter->pool.fsf_req_scsi)
398 mempool_destroy(adapter->pool.fsf_req_scsi);
399 if (adapter->pool.fsf_req_abort)
400 mempool_destroy(adapter->pool.fsf_req_abort);
401 if (adapter->pool.fsf_req_status_read)
402 mempool_destroy(adapter->pool.fsf_req_status_read);
403 if (adapter->pool.data_status_read)
404 mempool_destroy(adapter->pool.data_status_read);
405 if (adapter->pool.data_gid_pn)
406 mempool_destroy(adapter->pool.data_gid_pn);
407}
408
Swen Schillig317e6b62008-07-02 10:56:37 +0200409/**
410 * zfcp_status_read_refill - refill the long running status_read_requests
411 * @adapter: ptr to struct zfcp_adapter for which the buffers should be refilled
412 *
413 * Returns: 0 on success, 1 otherwise
414 *
415 * if there are 16 or more status_read requests missing an adapter_reopen
416 * is triggered
417 */
Swen Schilligd26ab062008-05-19 12:17:37 +0200418int zfcp_status_read_refill(struct zfcp_adapter *adapter)
419{
420 while (atomic_read(&adapter->stat_miss) > 0)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200421 if (zfcp_fsf_status_read(adapter)) {
Swen Schillig7afe29f2008-07-02 10:56:33 +0200422 if (atomic_read(&adapter->stat_miss) >= 16) {
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100423 zfcp_erp_adapter_reopen(adapter, 0, "axsref1",
424 NULL);
Swen Schillig7afe29f2008-07-02 10:56:33 +0200425 return 1;
426 }
Swen Schilligd26ab062008-05-19 12:17:37 +0200427 break;
Swen Schillig7afe29f2008-07-02 10:56:33 +0200428 } else
429 atomic_dec(&adapter->stat_miss);
Swen Schilligd26ab062008-05-19 12:17:37 +0200430 return 0;
431}
432
433static void _zfcp_status_read_scheduler(struct work_struct *work)
434{
435 zfcp_status_read_refill(container_of(work, struct zfcp_adapter,
436 stat_work));
437}
438
Christof Schmittbd43a42b72008-12-25 13:38:50 +0100439static void zfcp_print_sl(struct seq_file *m, struct service_level *sl)
440{
441 struct zfcp_adapter *adapter =
442 container_of(sl, struct zfcp_adapter, service_level);
443
444 seq_printf(m, "zfcp: %s microcode level %x\n",
445 dev_name(&adapter->ccw_device->dev),
446 adapter->fsf_lic_version);
447}
448
Swen Schillig317e6b62008-07-02 10:56:37 +0200449/**
450 * zfcp_adapter_enqueue - enqueue a new adapter to the list
451 * @ccw_device: pointer to the struct cc_device
452 *
453 * Returns: 0 if a new adapter was successfully enqueued
454 * -ENOMEM if alloc failed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 * Enqueues an adapter at the end of the adapter list in the driver data.
456 * All adapter internal structures are set up.
457 * Proc-fs entries are also created.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 * locks: config_sema must be held to serialise changes to the adapter list
459 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200460int zfcp_adapter_enqueue(struct ccw_device *ccw_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 struct zfcp_adapter *adapter;
463
464 /*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200465 * Note: It is safe to release the list_lock, as any list changes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 * are protected by the config_sema, which must be held to get here
467 */
468
Swen Schillig317e6b62008-07-02 10:56:37 +0200469 adapter = kzalloc(sizeof(struct zfcp_adapter), GFP_KERNEL);
Christof Schmitt553448f2008-06-10 18:20:58 +0200470 if (!adapter)
Swen Schillig317e6b62008-07-02 10:56:37 +0200471 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Sven Schuetz9d544f22009-04-06 18:31:47 +0200473 adapter->gs = kzalloc(sizeof(struct zfcp_wka_ports), GFP_KERNEL);
474 if (!adapter->gs) {
475 kfree(adapter);
476 return -ENOMEM;
477 }
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 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);
Swen Schillig317e6b62008-07-02 10:56:37 +0200500 INIT_LIST_HEAD(&adapter->erp_ready_head);
501 INIT_LIST_HEAD(&adapter->erp_running_head);
502
503 spin_lock_init(&adapter->req_list_lock);
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100504
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100505 spin_lock_init(&adapter->hba_dbf_lock);
506 spin_lock_init(&adapter->san_dbf_lock);
507 spin_lock_init(&adapter->scsi_dbf_lock);
Martin Peschked79a83d2008-03-27 14:22:00 +0100508 spin_lock_init(&adapter->rec_dbf_lock);
Christof Schmitt04062892008-10-01 12:42:20 +0200509 spin_lock_init(&adapter->req_q_lock);
Martin Peschke94506fd2009-03-02 13:08:56 +0100510 spin_lock_init(&adapter->qdio_stat_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
Christof Schmittbd43a42b72008-12-25 13:38:50 +0100520 adapter->service_level.seq_print = zfcp_print_sl;
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 /* mark adapter unusable as long as sysfs registration is not complete */
523 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 dev_set_drvdata(&ccw_device->dev, adapter);
526
Swen Schillig60221922008-07-02 10:56:38 +0200527 if (sysfs_create_group(&ccw_device->dev.kobj,
528 &zfcp_sysfs_adapter_attrs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 goto sysfs_failed;
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200532 zfcp_fc_wka_ports_init(adapter);
Swen Schillig828bc122009-04-17 15:08:05 +0200533
Swen Schillig1d3aab02008-12-19 16:56:53 +0100534 if (!zfcp_adapter_scsi_register(adapter))
535 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Swen Schillig317e6b62008-07-02 10:56:37 +0200537sysfs_failed:
Christof Schmittff17a292007-08-28 09:31:41 +0200538 zfcp_adapter_debug_unregister(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200539debug_register_failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 dev_set_drvdata(&ccw_device->dev, NULL);
Swen Schillig317e6b62008-07-02 10:56:37 +0200541 kfree(adapter->req_list);
542failed_low_mem_buffers:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 zfcp_free_low_mem_buffers(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200544qdio_allocate_failed:
Swen Schillig00bab912008-06-10 18:20:57 +0200545 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 kfree(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200547 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
Swen Schillig317e6b62008-07-02 10:56:37 +0200550/**
551 * zfcp_adapter_dequeue - remove the adapter from the resource list
552 * @adapter: pointer to struct zfcp_adapter which should be removed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 * locks: adapter list write lock is assumed to be held by caller
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200555void zfcp_adapter_dequeue(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 int retval = 0;
558 unsigned long flags;
559
Swen Schilligcc8c2822008-06-10 18:21:00 +0200560 cancel_work_sync(&adapter->scan_work);
Swen Schilligd26ab062008-05-19 12:17:37 +0200561 cancel_work_sync(&adapter->stat_work);
Michael Loehr9f287452007-05-09 11:01:24 +0200562 zfcp_adapter_scsi_unregister(adapter);
Swen Schillig60221922008-07-02 10:56:38 +0200563 sysfs_remove_group(&adapter->ccw_device->dev.kobj,
564 &zfcp_sysfs_adapter_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 dev_set_drvdata(&adapter->ccw_device->dev, NULL);
566 /* sanity check: no pending FSF requests */
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200567 spin_lock_irqsave(&adapter->req_list_lock, flags);
568 retval = zfcp_reqlist_isempty(adapter);
569 spin_unlock_irqrestore(&adapter->req_list_lock, flags);
Swen Schillig317e6b62008-07-02 10:56:37 +0200570 if (!retval)
571 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Christof Schmittff17a292007-08-28 09:31:41 +0200573 zfcp_adapter_debug_unregister(adapter);
Swen Schillig00bab912008-06-10 18:20:57 +0200574 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 zfcp_free_low_mem_buffers(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200576 kfree(adapter->req_list);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100577 kfree(adapter->fc_stats);
578 kfree(adapter->stats_reset_data);
Sven Schuetz9d544f22009-04-06 18:31:47 +0200579 kfree(adapter->gs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 kfree(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Swen Schillig60221922008-07-02 10:56:38 +0200583static void zfcp_sysfs_port_release(struct device *dev)
584{
585 kfree(container_of(dev, struct zfcp_port, sysfs_device));
586}
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588/**
589 * zfcp_port_enqueue - enqueue port to port list of adapter
590 * @adapter: adapter where remote port is added
591 * @wwpn: WWPN of the remote port to be enqueued
592 * @status: initial status for the port
593 * @d_id: destination id of the remote port to be enqueued
Swen Schillig317e6b62008-07-02 10:56:37 +0200594 * Returns: pointer to enqueued port on success, ERR_PTR on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 * Locks: config_sema must be held to serialize changes to the port list
596 *
597 * All port internal structures are set up and the sysfs entry is generated.
598 * d_id is used to enqueue ports with a well known address like the Directory
599 * Service for nameserver lookup.
600 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200601struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn,
Swen Schillig317e6b62008-07-02 10:56:37 +0200602 u32 status, u32 d_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603{
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700604 struct zfcp_port *port;
Swen Schillig60221922008-07-02 10:56:38 +0200605 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Swen Schillig317e6b62008-07-02 10:56:37 +0200607 port = kzalloc(sizeof(struct zfcp_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (!port)
Swen Schillig317e6b62008-07-02 10:56:37 +0200609 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 init_waitqueue_head(&port->remove_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 INIT_LIST_HEAD(&port->unit_list_head);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200613 INIT_WORK(&port->gid_pn_work, zfcp_erp_port_strategy_open_lookup);
Christof Schmitt8fdf30d2009-03-02 13:09:01 +0100614 INIT_WORK(&port->test_link_work, zfcp_fc_link_test_work);
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100615 INIT_WORK(&port->rport_work, zfcp_scsi_rport_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
617 port->adapter = adapter;
Swen Schillig317e6b62008-07-02 10:56:37 +0200618 port->d_id = d_id;
619 port->wwpn = wwpn;
Christof Schmitta2fa0ae2009-03-02 13:09:08 +0100620 port->rport_task = RPORT_NONE;
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);
Christof Schmitta5b11dd2009-03-02 13:08:54 +0100634 if (zfcp_get_port_by_wwpn(adapter, wwpn)) {
635 read_unlock_irq(&zfcp_data.config_lock);
636 goto err_out_free;
637 }
Swen Schillig317e6b62008-07-02 10:56:37 +0200638 read_unlock_irq(&zfcp_data.config_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Swen Schillig317e6b62008-07-02 10:56:37 +0200640 if (device_register(&port->sysfs_device))
641 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Swen Schillig5ab944f2008-10-01 12:42:17 +0200643 retval = sysfs_create_group(&port->sysfs_device.kobj,
644 &zfcp_sysfs_port_attrs);
Swen Schillig60221922008-07-02 10:56:38 +0200645
646 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 device_unregister(&port->sysfs_device);
Swen Schillig317e6b62008-07-02 10:56:37 +0200648 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
650
651 zfcp_port_get(port);
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 write_lock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700654 list_add_tail(&port->list, &adapter->port_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status);
656 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &port->status);
Swen Schillig317e6b62008-07-02 10:56:37 +0200657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 write_unlock_irq(&zfcp_data.config_lock);
659
660 zfcp_adapter_get(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return port;
Swen Schillig317e6b62008-07-02 10:56:37 +0200662
663err_out_free:
664 kfree(port);
665err_out:
666 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
Swen Schillig317e6b62008-07-02 10:56:37 +0200669/**
670 * zfcp_port_dequeue - dequeues a port from the port list of the adapter
671 * @port: pointer to struct zfcp_port which should be removed
672 */
673void zfcp_port_dequeue(struct zfcp_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200675 wait_event(port->remove_wq, atomic_read(&port->refcount) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 write_lock_irq(&zfcp_data.config_lock);
677 list_del(&port->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 write_unlock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700679 if (port->rport)
Christof Schmitt70932932009-04-17 15:08:15 +0200680 port->rport->dd_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 zfcp_adapter_put(port->adapter);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200682 sysfs_remove_group(&port->sysfs_device.kobj, &zfcp_sysfs_port_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 device_unregister(&port->sysfs_device);
684}
685
Swen Schillig317e6b62008-07-02 10:56:37 +0200686/**
687 * zfcp_sg_free_table - free memory used by scatterlists
688 * @sg: pointer to scatterlist
689 * @count: number of scatterlist which are to be free'ed
690 * the scatterlist are expected to reference pages always
691 */
Christof Schmitt45633fd2008-06-10 18:20:55 +0200692void zfcp_sg_free_table(struct scatterlist *sg, int count)
693{
694 int i;
695
696 for (i = 0; i < count; i++, sg++)
697 if (sg)
698 free_page((unsigned long) sg_virt(sg));
699 else
700 break;
701}
702
Swen Schillig317e6b62008-07-02 10:56:37 +0200703/**
704 * zfcp_sg_setup_table - init scatterlist and allocate, assign buffers
705 * @sg: pointer to struct scatterlist
706 * @count: number of scatterlists which should be assigned with buffers
707 * of size page
708 *
709 * Returns: 0 on success, -ENOMEM otherwise
710 */
Christof Schmitt45633fd2008-06-10 18:20:55 +0200711int zfcp_sg_setup_table(struct scatterlist *sg, int count)
712{
713 void *addr;
714 int i;
715
716 sg_init_table(sg, count);
717 for (i = 0; i < count; i++, sg++) {
718 addr = (void *) get_zeroed_page(GFP_KERNEL);
719 if (!addr) {
720 zfcp_sg_free_table(sg, i);
721 return -ENOMEM;
722 }
723 sg_set_buf(sg, addr, PAGE_SIZE);
724 }
725 return 0;
726}