blob: f140b46df12a6884801e191e667d91b11fdf2da7 [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
Kay Sievers98df67b2008-12-25 13:38:55 +010032#define ZFCP_BUS_ID_SIZE 20
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static char *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +020036MODULE_AUTHOR("IBM Deutschland Entwicklung GmbH - linux390@de.ibm.com");
Swen Schillig317e6b62008-07-02 10:56:37 +020037MODULE_DESCRIPTION("FCP HBA driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070038MODULE_LICENSE("GPL");
39
6f71d9b2005-04-10 23:04:28 -050040module_param(device, charp, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041MODULE_PARM_DESC(device, "specify initial device");
42
Heiko Carstensca2d02c2007-05-08 11:17:54 +020043static int zfcp_reqlist_alloc(struct zfcp_adapter *adapter)
Volker Sameskefea9d6c2006-08-02 11:05:16 +020044{
Heiko Carstensca2d02c2007-05-08 11:17:54 +020045 int idx;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020046
47 adapter->req_list = kcalloc(REQUEST_LIST_SIZE, sizeof(struct list_head),
48 GFP_KERNEL);
Volker Sameskefea9d6c2006-08-02 11:05:16 +020049 if (!adapter->req_list)
50 return -ENOMEM;
51
Heiko Carstensca2d02c2007-05-08 11:17:54 +020052 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
53 INIT_LIST_HEAD(&adapter->req_list[idx]);
Volker Sameskefea9d6c2006-08-02 11:05:16 +020054 return 0;
55}
56
Swen Schillig317e6b62008-07-02 10:56:37 +020057/**
58 * zfcp_reqlist_isempty - is the request list empty
59 * @adapter: pointer to struct zfcp_adapter
60 *
61 * Returns: true if list is empty, false otherwise
62 */
Volker Sameskefea9d6c2006-08-02 11:05:16 +020063int zfcp_reqlist_isempty(struct zfcp_adapter *adapter)
64{
Heiko Carstensca2d02c2007-05-08 11:17:54 +020065 unsigned int idx;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020066
Heiko Carstensca2d02c2007-05-08 11:17:54 +020067 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
68 if (!list_empty(&adapter->req_list[idx]))
Volker Sameskefea9d6c2006-08-02 11:05:16 +020069 return 0;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020070 return 1;
71}
72
Swen Schillig317e6b62008-07-02 10:56:37 +020073static int __init zfcp_device_setup(char *devstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Swen Schillig317e6b62008-07-02 10:56:37 +020075 char *token;
76 char *str;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Andreas Herrmanncd8a3832005-06-13 13:22:25 +020078 if (!devstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 return 0;
80
Swen Schillig317e6b62008-07-02 10:56:37 +020081 /* duplicate devstr and keep the original for sysfs presentation*/
82 str = kmalloc(strlen(devstr) + 1, GFP_KERNEL);
83 if (!str)
Christof Schmitt553448f2008-06-10 18:20:58 +020084 return 0;
Andreas Herrmanncd8a3832005-06-13 13:22:25 +020085
Swen Schillig317e6b62008-07-02 10:56:37 +020086 strcpy(str, devstr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Swen Schillig317e6b62008-07-02 10:56:37 +020088 token = strsep(&str, ",");
Kay Sievers98df67b2008-12-25 13:38:55 +010089 if (!token || strlen(token) >= ZFCP_BUS_ID_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 goto err_out;
Kay Sievers98df67b2008-12-25 13:38:55 +010091 strncpy(zfcp_data.init_busid, token, ZFCP_BUS_ID_SIZE);
Swen Schillig317e6b62008-07-02 10:56:37 +020092
93 token = strsep(&str, ",");
Swen Schillig7ba58c92008-10-01 12:42:18 +020094 if (!token || strict_strtoull(token, 0,
95 (unsigned long long *) &zfcp_data.init_wwpn))
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 goto err_out;
97
Swen Schillig317e6b62008-07-02 10:56:37 +020098 token = strsep(&str, ",");
Swen Schillig7ba58c92008-10-01 12:42:18 +020099 if (!token || strict_strtoull(token, 0,
100 (unsigned long long *) &zfcp_data.init_fcp_lun))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 goto err_out;
Swen Schillig317e6b62008-07-02 10:56:37 +0200102
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200103 kfree(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return 1;
105
106 err_out:
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200107 kfree(str);
Christof Schmittff3b24f2008-10-01 12:42:15 +0200108 pr_err("zfcp: %s is not a valid SCSI device\n", devstr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 return 0;
110}
111
Swen Schillig317e6b62008-07-02 10:56:37 +0200112static void __init zfcp_init_device_configure(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 struct zfcp_adapter *adapter;
115 struct zfcp_port *port;
116 struct zfcp_unit *unit;
117
118 down(&zfcp_data.config_sema);
119 read_lock_irq(&zfcp_data.config_lock);
120 adapter = zfcp_get_adapter_by_busid(zfcp_data.init_busid);
121 if (adapter)
122 zfcp_adapter_get(adapter);
123 read_unlock_irq(&zfcp_data.config_lock);
124
Swen Schillig317e6b62008-07-02 10:56:37 +0200125 if (!adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 goto out_adapter;
127 port = zfcp_port_enqueue(adapter, zfcp_data.init_wwpn, 0, 0);
Swen Schillig317e6b62008-07-02 10:56:37 +0200128 if (IS_ERR(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 goto out_port;
130 unit = zfcp_unit_enqueue(port, zfcp_data.init_fcp_lun);
Swen Schillig317e6b62008-07-02 10:56:37 +0200131 if (IS_ERR(unit))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 goto out_unit;
133 up(&zfcp_data.config_sema);
134 ccw_device_set_online(adapter->ccw_device);
Swen Schillig091694a2008-10-01 12:42:25 +0200135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 zfcp_erp_wait(adapter);
Swen Schillig091694a2008-10-01 12:42:25 +0200137 wait_event(adapter->erp_done_wqh,
138 !(atomic_read(&unit->status) &
139 ZFCP_STATUS_UNIT_SCSI_WORK_PENDING));
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 down(&zfcp_data.config_sema);
142 zfcp_unit_put(unit);
Swen Schillig317e6b62008-07-02 10:56:37 +0200143out_unit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 zfcp_port_put(port);
Swen Schillig317e6b62008-07-02 10:56:37 +0200145out_port:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 zfcp_adapter_put(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200147out_adapter:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 up(&zfcp_data.config_sema);
149 return;
150}
151
Swen Schillig317e6b62008-07-02 10:56:37 +0200152static struct kmem_cache *zfcp_cache_create(int size, char *name)
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200153{
154 int align = 1;
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200155 while ((size - align) > 0)
156 align <<= 1;
Swen Schillig317e6b62008-07-02 10:56:37 +0200157 return kmem_cache_create(name , size, align, 0, NULL);
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200158}
159
Swen Schillig317e6b62008-07-02 10:56:37 +0200160static int __init zfcp_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200162 int retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Swen Schillig317e6b62008-07-02 10:56:37 +0200164 zfcp_data.fsf_req_qtcb_cache = zfcp_cache_create(
165 sizeof(struct zfcp_fsf_req_qtcb), "zfcp_fsf");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200166 if (!zfcp_data.fsf_req_qtcb_cache)
167 goto out;
168
Swen Schillig317e6b62008-07-02 10:56:37 +0200169 zfcp_data.sr_buffer_cache = zfcp_cache_create(
170 sizeof(struct fsf_status_read_buffer), "zfcp_sr");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200171 if (!zfcp_data.sr_buffer_cache)
172 goto out_sr_cache;
173
Swen Schillig317e6b62008-07-02 10:56:37 +0200174 zfcp_data.gid_pn_cache = zfcp_cache_create(
175 sizeof(struct zfcp_gid_pn_data), "zfcp_gid");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200176 if (!zfcp_data.gid_pn_cache)
177 goto out_gid_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Swen Schilligb7f15f32008-10-01 12:42:22 +0200179 zfcp_data.work_queue = create_singlethread_workqueue("zfcp_wq");
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 INIT_LIST_HEAD(&zfcp_data.adapter_list_head);
Swen Schillig317e6b62008-07-02 10:56:37 +0200182 sema_init(&zfcp_data.config_sema, 1);
183 rwlock_init(&zfcp_data.config_lock);
184
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200185 zfcp_data.scsi_transport_template =
186 fc_attach_transport(&zfcp_transport_functions);
187 if (!zfcp_data.scsi_transport_template)
188 goto out_transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 retval = misc_register(&zfcp_cfdc_misc);
Swen Schillig317e6b62008-07-02 10:56:37 +0200191 if (retval) {
Christof Schmittff3b24f2008-10-01 12:42:15 +0200192 pr_err("zfcp: Registering the misc device zfcp_cfdc failed\n");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200193 goto out_misc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 }
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 retval = zfcp_ccw_register();
197 if (retval) {
Christof Schmittff3b24f2008-10-01 12:42:15 +0200198 pr_err("zfcp: The zfcp device driver could not register with "
199 "the common I/O layer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 goto out_ccw_register;
201 }
202
203 if (zfcp_device_setup(device))
204 zfcp_init_device_configure();
205
206 goto out;
207
Swen Schillig317e6b62008-07-02 10:56:37 +0200208out_ccw_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 misc_deregister(&zfcp_cfdc_misc);
Swen Schillig317e6b62008-07-02 10:56:37 +0200210out_misc:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200211 fc_release_transport(zfcp_data.scsi_transport_template);
Swen Schillig317e6b62008-07-02 10:56:37 +0200212out_transport:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200213 kmem_cache_destroy(zfcp_data.gid_pn_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200214out_gid_cache:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200215 kmem_cache_destroy(zfcp_data.sr_buffer_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200216out_sr_cache:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200217 kmem_cache_destroy(zfcp_data.fsf_req_qtcb_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200218out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return retval;
220}
221
Swen Schillig317e6b62008-07-02 10:56:37 +0200222module_init(zfcp_module_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224/**
225 * zfcp_get_unit_by_lun - find unit in unit list of port by FCP LUN
226 * @port: pointer to port to search for unit
227 * @fcp_lun: FCP LUN to search for
Swen Schillig317e6b62008-07-02 10:56:37 +0200228 *
229 * Returns: pointer to zfcp_unit or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200231struct zfcp_unit *zfcp_get_unit_by_lun(struct zfcp_port *port, u64 fcp_lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Swen Schillig317e6b62008-07-02 10:56:37 +0200235 list_for_each_entry(unit, &port->unit_list_head, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 if ((unit->fcp_lun == fcp_lun) &&
Swen Schillig317e6b62008-07-02 10:56:37 +0200237 !(atomic_read(&unit->status) & ZFCP_STATUS_COMMON_REMOVE))
238 return unit;
239 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
242/**
243 * zfcp_get_port_by_wwpn - find port in port list of adapter by wwpn
244 * @adapter: pointer to adapter to search for port
245 * @wwpn: wwpn to search for
Swen Schillig317e6b62008-07-02 10:56:37 +0200246 *
247 * Returns: pointer to zfcp_port or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200249struct zfcp_port *zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter,
Swen Schillig7ba58c92008-10-01 12:42:18 +0200250 u64 wwpn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
252 struct zfcp_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Swen Schillig317e6b62008-07-02 10:56:37 +0200254 list_for_each_entry(port, &adapter->port_list_head, list)
255 if ((port->wwpn == wwpn) && !(atomic_read(&port->status) &
256 (ZFCP_STATUS_PORT_NO_WWPN | ZFCP_STATUS_COMMON_REMOVE)))
257 return port;
258 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
Swen Schillig60221922008-07-02 10:56:38 +0200261static void zfcp_sysfs_unit_release(struct device *dev)
262{
263 kfree(container_of(dev, struct zfcp_unit, sysfs_device));
264}
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266/**
267 * zfcp_unit_enqueue - enqueue unit to unit list of a port.
268 * @port: pointer to port where unit is added
269 * @fcp_lun: FCP LUN of unit to be enqueued
Swen Schillig317e6b62008-07-02 10:56:37 +0200270 * Returns: pointer to enqueued unit on success, ERR_PTR on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 * Locks: config_sema must be held to serialize changes to the unit list
272 *
273 * Sets up some unit internal structures and creates sysfs entry.
274 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200275struct zfcp_unit *zfcp_unit_enqueue(struct zfcp_port *port, u64 fcp_lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Christof Schmitt462b7852007-06-19 10:25:30 +0200277 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Swen Schillig317e6b62008-07-02 10:56:37 +0200279 unit = kzalloc(sizeof(struct zfcp_unit), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (!unit)
Swen Schillig317e6b62008-07-02 10:56:37 +0200281 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 atomic_set(&unit->refcount, 0);
284 init_waitqueue_head(&unit->remove_wq);
285
286 unit->port = port;
287 unit->fcp_lun = fcp_lun;
288
Cornelia Huck1bf5b282008-10-10 21:33:10 +0200289 dev_set_name(&unit->sysfs_device, "0x%016llx",
290 (unsigned long long) fcp_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 unit->sysfs_device.parent = &port->sysfs_device;
292 unit->sysfs_device.release = zfcp_sysfs_unit_release;
293 dev_set_drvdata(&unit->sysfs_device, unit);
294
295 /* mark unit unusable as long as sysfs registration is not complete */
296 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
297
Christof Schmittc9615852008-05-06 11:00:05 +0200298 spin_lock_init(&unit->latencies.lock);
299 unit->latencies.write.channel.min = 0xFFFFFFFF;
300 unit->latencies.write.fabric.min = 0xFFFFFFFF;
301 unit->latencies.read.channel.min = 0xFFFFFFFF;
302 unit->latencies.read.fabric.min = 0xFFFFFFFF;
303 unit->latencies.cmd.channel.min = 0xFFFFFFFF;
304 unit->latencies.cmd.fabric.min = 0xFFFFFFFF;
305
Swen Schillig317e6b62008-07-02 10:56:37 +0200306 read_lock_irq(&zfcp_data.config_lock);
307 if (zfcp_get_unit_by_lun(port, fcp_lun)) {
308 read_unlock_irq(&zfcp_data.config_lock);
309 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
Swen Schillig317e6b62008-07-02 10:56:37 +0200311 read_unlock_irq(&zfcp_data.config_lock);
312
313 if (device_register(&unit->sysfs_device))
314 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Swen Schillig60221922008-07-02 10:56:38 +0200316 if (sysfs_create_group(&unit->sysfs_device.kobj,
317 &zfcp_sysfs_unit_attrs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 device_unregister(&unit->sysfs_device);
Swen Schillig317e6b62008-07-02 10:56:37 +0200319 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
321
322 zfcp_unit_get(unit);
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 write_lock_irq(&zfcp_data.config_lock);
Christof Schmitt462b7852007-06-19 10:25:30 +0200325 list_add_tail(&unit->list, &port->unit_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
327 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &unit->status);
Swen Schillig317e6b62008-07-02 10:56:37 +0200328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 write_unlock_irq(&zfcp_data.config_lock);
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 zfcp_port_get(port);
332
333 return unit;
Swen Schillig317e6b62008-07-02 10:56:37 +0200334
335err_out_free:
336 kfree(unit);
337 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338}
339
Swen Schillig317e6b62008-07-02 10:56:37 +0200340/**
341 * zfcp_unit_dequeue - dequeue unit
342 * @unit: pointer to zfcp_unit
343 *
344 * waits until all work is done on unit and removes it then from the unit->list
345 * of the associated port.
346 */
347void zfcp_unit_dequeue(struct zfcp_unit *unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200349 wait_event(unit->remove_wq, atomic_read(&unit->refcount) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 write_lock_irq(&zfcp_data.config_lock);
351 list_del(&unit->list);
352 write_unlock_irq(&zfcp_data.config_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 zfcp_port_put(unit->port);
Swen Schillig60221922008-07-02 10:56:38 +0200354 sysfs_remove_group(&unit->sysfs_device.kobj, &zfcp_sysfs_unit_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 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
Swen Schillig317e6b62008-07-02 10:56:37 +0200413/**
414 * zfcp_status_read_refill - refill the long running status_read_requests
415 * @adapter: ptr to struct zfcp_adapter for which the buffers should be refilled
416 *
417 * Returns: 0 on success, 1 otherwise
418 *
419 * if there are 16 or more status_read requests missing an adapter_reopen
420 * is triggered
421 */
Swen Schilligd26ab062008-05-19 12:17:37 +0200422int zfcp_status_read_refill(struct zfcp_adapter *adapter)
423{
424 while (atomic_read(&adapter->stat_miss) > 0)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200425 if (zfcp_fsf_status_read(adapter)) {
Swen Schillig7afe29f2008-07-02 10:56:33 +0200426 if (atomic_read(&adapter->stat_miss) >= 16) {
427 zfcp_erp_adapter_reopen(adapter, 0, 103, NULL);
428 return 1;
429 }
Swen Schilligd26ab062008-05-19 12:17:37 +0200430 break;
Swen Schillig7afe29f2008-07-02 10:56:33 +0200431 } else
432 atomic_dec(&adapter->stat_miss);
Swen Schilligd26ab062008-05-19 12:17:37 +0200433 return 0;
434}
435
436static void _zfcp_status_read_scheduler(struct work_struct *work)
437{
438 zfcp_status_read_refill(container_of(work, struct zfcp_adapter,
439 stat_work));
440}
441
Christof Schmittbd43a422008-12-25 13:38:50 +0100442static void zfcp_print_sl(struct seq_file *m, struct service_level *sl)
443{
444 struct zfcp_adapter *adapter =
445 container_of(sl, struct zfcp_adapter, service_level);
446
447 seq_printf(m, "zfcp: %s microcode level %x\n",
448 dev_name(&adapter->ccw_device->dev),
449 adapter->fsf_lic_version);
450}
451
Swen Schillig317e6b62008-07-02 10:56:37 +0200452/**
453 * zfcp_adapter_enqueue - enqueue a new adapter to the list
454 * @ccw_device: pointer to the struct cc_device
455 *
456 * Returns: 0 if a new adapter was successfully enqueued
457 * -ENOMEM if alloc failed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 * Enqueues an adapter at the end of the adapter list in the driver data.
459 * All adapter internal structures are set up.
460 * Proc-fs entries are also created.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 * locks: config_sema must be held to serialise changes to the adapter list
462 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200463int zfcp_adapter_enqueue(struct ccw_device *ccw_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 struct zfcp_adapter *adapter;
466
467 /*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200468 * Note: It is safe to release the list_lock, as any list changes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 * are protected by the config_sema, which must be held to get here
470 */
471
Swen Schillig317e6b62008-07-02 10:56:37 +0200472 adapter = kzalloc(sizeof(struct zfcp_adapter), GFP_KERNEL);
Christof Schmitt553448f2008-06-10 18:20:58 +0200473 if (!adapter)
Swen Schillig317e6b62008-07-02 10:56:37 +0200474 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
476 ccw_device->handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 adapter->ccw_device = ccw_device;
Swen Schillig317e6b62008-07-02 10:56:37 +0200478 atomic_set(&adapter->refcount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
Swen Schillig00bab912008-06-10 18:20:57 +0200480 if (zfcp_qdio_allocate(adapter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 goto qdio_allocate_failed;
482
Swen Schillig00bab912008-06-10 18:20:57 +0200483 if (zfcp_allocate_low_mem_buffers(adapter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 goto failed_low_mem_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Swen Schillig00bab912008-06-10 18:20:57 +0200486 if (zfcp_reqlist_alloc(adapter))
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200487 goto failed_low_mem_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Swen Schillig317e6b62008-07-02 10:56:37 +0200489 if (zfcp_adapter_debug_register(adapter))
490 goto debug_register_failed;
491
492 init_waitqueue_head(&adapter->remove_wq);
493 init_waitqueue_head(&adapter->erp_thread_wqh);
494 init_waitqueue_head(&adapter->erp_done_wqh);
495
496 INIT_LIST_HEAD(&adapter->port_list_head);
Swen Schillig317e6b62008-07-02 10:56:37 +0200497 INIT_LIST_HEAD(&adapter->erp_ready_head);
498 INIT_LIST_HEAD(&adapter->erp_running_head);
499
500 spin_lock_init(&adapter->req_list_lock);
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100501
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100502 spin_lock_init(&adapter->hba_dbf_lock);
503 spin_lock_init(&adapter->san_dbf_lock);
504 spin_lock_init(&adapter->scsi_dbf_lock);
Martin Peschked79a83d2008-03-27 14:22:00 +0100505 spin_lock_init(&adapter->rec_dbf_lock);
Christof Schmitt04062892008-10-01 12:42:20 +0200506 spin_lock_init(&adapter->req_q_lock);
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100507
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100508 rwlock_init(&adapter->erp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 rwlock_init(&adapter->abort_lock);
Swen Schillig317e6b62008-07-02 10:56:37 +0200510
511 sema_init(&adapter->erp_ready_sem, 0);
512
Swen Schilligd26ab062008-05-19 12:17:37 +0200513 INIT_WORK(&adapter->stat_work, _zfcp_status_read_scheduler);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200514 INIT_WORK(&adapter->scan_work, _zfcp_scan_ports_later);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Christof Schmittbd43a422008-12-25 13:38:50 +0100516 adapter->service_level.seq_print = zfcp_print_sl;
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 /* mark adapter unusable as long as sysfs registration is not complete */
519 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 dev_set_drvdata(&ccw_device->dev, adapter);
522
Swen Schillig60221922008-07-02 10:56:38 +0200523 if (sysfs_create_group(&ccw_device->dev.kobj,
524 &zfcp_sysfs_adapter_attrs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 goto sysfs_failed;
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 write_lock_irq(&zfcp_data.config_lock);
528 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
529 list_add_tail(&adapter->list, &zfcp_data.adapter_list_head);
530 write_unlock_irq(&zfcp_data.config_lock);
531
Swen Schillig5ab944f2008-10-01 12:42:17 +0200532 zfcp_fc_nameserver_init(adapter);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200533
Swen Schillig317e6b62008-07-02 10:56:37 +0200534 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Swen Schillig317e6b62008-07-02 10:56:37 +0200536sysfs_failed:
Christof Schmittff17a292007-08-28 09:31:41 +0200537 zfcp_adapter_debug_unregister(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200538debug_register_failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 dev_set_drvdata(&ccw_device->dev, NULL);
Swen Schillig317e6b62008-07-02 10:56:37 +0200540 kfree(adapter->req_list);
541failed_low_mem_buffers:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 zfcp_free_low_mem_buffers(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200543qdio_allocate_failed:
Swen Schillig00bab912008-06-10 18:20:57 +0200544 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 kfree(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200546 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
Swen Schillig317e6b62008-07-02 10:56:37 +0200549/**
550 * zfcp_adapter_dequeue - remove the adapter from the resource list
551 * @adapter: pointer to struct zfcp_adapter which should be removed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 * locks: adapter list write lock is assumed to be held by caller
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200554void zfcp_adapter_dequeue(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
556 int retval = 0;
557 unsigned long flags;
558
Swen Schilligcc8c2822008-06-10 18:21:00 +0200559 cancel_work_sync(&adapter->scan_work);
Swen Schilligd26ab062008-05-19 12:17:37 +0200560 cancel_work_sync(&adapter->stat_work);
Michael Loehr9f287452007-05-09 11:01:24 +0200561 zfcp_adapter_scsi_unregister(adapter);
Swen Schillig60221922008-07-02 10:56:38 +0200562 sysfs_remove_group(&adapter->ccw_device->dev.kobj,
563 &zfcp_sysfs_adapter_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 dev_set_drvdata(&adapter->ccw_device->dev, NULL);
565 /* sanity check: no pending FSF requests */
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200566 spin_lock_irqsave(&adapter->req_list_lock, flags);
567 retval = zfcp_reqlist_isempty(adapter);
568 spin_unlock_irqrestore(&adapter->req_list_lock, flags);
Swen Schillig317e6b62008-07-02 10:56:37 +0200569 if (!retval)
570 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Christof Schmittff17a292007-08-28 09:31:41 +0200572 zfcp_adapter_debug_unregister(adapter);
573
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 /* remove specified adapter data structure from list */
575 write_lock_irq(&zfcp_data.config_lock);
576 list_del(&adapter->list);
577 write_unlock_irq(&zfcp_data.config_lock);
578
Swen Schillig00bab912008-06-10 18:20:57 +0200579 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 zfcp_free_low_mem_buffers(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200582 kfree(adapter->req_list);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100583 kfree(adapter->fc_stats);
584 kfree(adapter->stats_reset_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 kfree(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
Swen Schillig60221922008-07-02 10:56:38 +0200588static void zfcp_sysfs_port_release(struct device *dev)
589{
590 kfree(container_of(dev, struct zfcp_port, sysfs_device));
591}
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593/**
594 * zfcp_port_enqueue - enqueue port to port list of adapter
595 * @adapter: adapter where remote port is added
596 * @wwpn: WWPN of the remote port to be enqueued
597 * @status: initial status for the port
598 * @d_id: destination id of the remote port to be enqueued
Swen Schillig317e6b62008-07-02 10:56:37 +0200599 * Returns: pointer to enqueued port on success, ERR_PTR on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 * Locks: config_sema must be held to serialize changes to the port list
601 *
602 * All port internal structures are set up and the sysfs entry is generated.
603 * d_id is used to enqueue ports with a well known address like the Directory
604 * Service for nameserver lookup.
605 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200606struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn,
Swen Schillig317e6b62008-07-02 10:56:37 +0200607 u32 status, u32 d_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700609 struct zfcp_port *port;
Swen Schillig60221922008-07-02 10:56:38 +0200610 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Swen Schillig317e6b62008-07-02 10:56:37 +0200612 port = kzalloc(sizeof(struct zfcp_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (!port)
Swen Schillig317e6b62008-07-02 10:56:37 +0200614 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 init_waitqueue_head(&port->remove_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 INIT_LIST_HEAD(&port->unit_list_head);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200618 INIT_WORK(&port->gid_pn_work, zfcp_erp_port_strategy_open_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 port->adapter = adapter;
Swen Schillig317e6b62008-07-02 10:56:37 +0200621 port->d_id = d_id;
622 port->wwpn = wwpn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Swen Schillig317e6b62008-07-02 10:56:37 +0200624 /* mark port unusable as long as sysfs registration is not complete */
625 atomic_set_mask(status | ZFCP_STATUS_COMMON_REMOVE, &port->status);
626 atomic_set(&port->refcount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Christof Schmittadc90da2008-11-04 16:35:09 +0100628 dev_set_name(&port->sysfs_device, "0x%016llx",
629 (unsigned long long)wwpn);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200630 port->sysfs_device.parent = &adapter->ccw_device->dev;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200631
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 port->sysfs_device.release = zfcp_sysfs_port_release;
633 dev_set_drvdata(&port->sysfs_device, port);
634
Swen Schillig317e6b62008-07-02 10:56:37 +0200635 read_lock_irq(&zfcp_data.config_lock);
636 if (!(status & ZFCP_STATUS_PORT_NO_WWPN))
637 if (zfcp_get_port_by_wwpn(adapter, wwpn)) {
638 read_unlock_irq(&zfcp_data.config_lock);
639 goto err_out_free;
640 }
641 read_unlock_irq(&zfcp_data.config_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Swen Schillig317e6b62008-07-02 10:56:37 +0200643 if (device_register(&port->sysfs_device))
644 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Swen Schillig5ab944f2008-10-01 12:42:17 +0200646 retval = sysfs_create_group(&port->sysfs_device.kobj,
647 &zfcp_sysfs_port_attrs);
Swen Schillig60221922008-07-02 10:56:38 +0200648
649 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 device_unregister(&port->sysfs_device);
Swen Schillig317e6b62008-07-02 10:56:37 +0200651 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653
654 zfcp_port_get(port);
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 write_lock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700657 list_add_tail(&port->list, &adapter->port_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status);
659 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &port->status);
Swen Schillig317e6b62008-07-02 10:56:37 +0200660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 write_unlock_irq(&zfcp_data.config_lock);
662
663 zfcp_adapter_get(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return port;
Swen Schillig317e6b62008-07-02 10:56:37 +0200665
666err_out_free:
667 kfree(port);
668err_out:
669 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
Swen Schillig317e6b62008-07-02 10:56:37 +0200672/**
673 * zfcp_port_dequeue - dequeues a port from the port list of the adapter
674 * @port: pointer to struct zfcp_port which should be removed
675 */
676void zfcp_port_dequeue(struct zfcp_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200678 wait_event(port->remove_wq, atomic_read(&port->refcount) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 write_lock_irq(&zfcp_data.config_lock);
680 list_del(&port->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 write_unlock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700682 if (port->rport)
Heiko Carstens20b17302005-08-28 13:22:37 -0700683 fc_remote_port_delete(port->rport);
684 port->rport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 zfcp_adapter_put(port->adapter);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200686 sysfs_remove_group(&port->sysfs_device.kobj, &zfcp_sysfs_port_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 device_unregister(&port->sysfs_device);
688}
689
Swen Schillig317e6b62008-07-02 10:56:37 +0200690/**
691 * zfcp_sg_free_table - free memory used by scatterlists
692 * @sg: pointer to scatterlist
693 * @count: number of scatterlist which are to be free'ed
694 * the scatterlist are expected to reference pages always
695 */
Christof Schmitt45633fd2008-06-10 18:20:55 +0200696void zfcp_sg_free_table(struct scatterlist *sg, int count)
697{
698 int i;
699
700 for (i = 0; i < count; i++, sg++)
701 if (sg)
702 free_page((unsigned long) sg_virt(sg));
703 else
704 break;
705}
706
Swen Schillig317e6b62008-07-02 10:56:37 +0200707/**
708 * zfcp_sg_setup_table - init scatterlist and allocate, assign buffers
709 * @sg: pointer to struct scatterlist
710 * @count: number of scatterlists which should be assigned with buffers
711 * of size page
712 *
713 * Returns: 0 on success, -ENOMEM otherwise
714 */
Christof Schmitt45633fd2008-06-10 18:20:55 +0200715int zfcp_sg_setup_table(struct scatterlist *sg, int count)
716{
717 void *addr;
718 int i;
719
720 sg_init_table(sg, count);
721 for (i = 0; i < count; i++, sg++) {
722 addr = (void *) get_zeroed_page(GFP_KERNEL);
723 if (!addr) {
724 zfcp_sg_free_table(sg, i);
725 return -ENOMEM;
726 }
727 sg_set_buf(sg, addr, PAGE_SIZE);
728 }
729 return 0;
730}