blob: f0f49feaa34f0a6e3b205c15101b1509952a74de [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 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 Schmittbd43a422008-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
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static char *device;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +020039MODULE_AUTHOR("IBM Deutschland Entwicklung GmbH - linux390@de.ibm.com");
Swen Schillig317e6b62008-07-02 10:56:37 +020040MODULE_DESCRIPTION("FCP HBA driver");
Linus Torvalds1da177e2005-04-16 15:20:36 -070041MODULE_LICENSE("GPL");
42
6f71d9b2005-04-10 23:04:28 -050043module_param(device, charp, 0400);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044MODULE_PARM_DESC(device, "specify initial device");
45
Heiko Carstensca2d02c2007-05-08 11:17:54 +020046static int zfcp_reqlist_alloc(struct zfcp_adapter *adapter)
Volker Sameskefea9d6c2006-08-02 11:05:16 +020047{
Heiko Carstensca2d02c2007-05-08 11:17:54 +020048 int idx;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020049
50 adapter->req_list = kcalloc(REQUEST_LIST_SIZE, sizeof(struct list_head),
51 GFP_KERNEL);
Volker Sameskefea9d6c2006-08-02 11:05:16 +020052 if (!adapter->req_list)
53 return -ENOMEM;
54
Heiko Carstensca2d02c2007-05-08 11:17:54 +020055 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
56 INIT_LIST_HEAD(&adapter->req_list[idx]);
Volker Sameskefea9d6c2006-08-02 11:05:16 +020057 return 0;
58}
59
Swen Schillig317e6b62008-07-02 10:56:37 +020060/**
61 * zfcp_reqlist_isempty - is the request list empty
62 * @adapter: pointer to struct zfcp_adapter
63 *
64 * Returns: true if list is empty, false otherwise
65 */
Volker Sameskefea9d6c2006-08-02 11:05:16 +020066int zfcp_reqlist_isempty(struct zfcp_adapter *adapter)
67{
Heiko Carstensca2d02c2007-05-08 11:17:54 +020068 unsigned int idx;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020069
Heiko Carstensca2d02c2007-05-08 11:17:54 +020070 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++)
71 if (!list_empty(&adapter->req_list[idx]))
Volker Sameskefea9d6c2006-08-02 11:05:16 +020072 return 0;
Volker Sameskefea9d6c2006-08-02 11:05:16 +020073 return 1;
74}
75
Swen Schillig317e6b62008-07-02 10:56:37 +020076static int __init zfcp_device_setup(char *devstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077{
Swen Schillig317e6b62008-07-02 10:56:37 +020078 char *token;
79 char *str;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Andreas Herrmanncd8a3832005-06-13 13:22:25 +020081 if (!devstr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 return 0;
83
Swen Schillig317e6b62008-07-02 10:56:37 +020084 /* duplicate devstr and keep the original for sysfs presentation*/
85 str = kmalloc(strlen(devstr) + 1, GFP_KERNEL);
86 if (!str)
Christof Schmitt553448f2008-06-10 18:20:58 +020087 return 0;
Andreas Herrmanncd8a3832005-06-13 13:22:25 +020088
Swen Schillig317e6b62008-07-02 10:56:37 +020089 strcpy(str, devstr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Swen Schillig317e6b62008-07-02 10:56:37 +020091 token = strsep(&str, ",");
Kay Sievers98df67b2008-12-25 13:38:55 +010092 if (!token || strlen(token) >= ZFCP_BUS_ID_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 goto err_out;
Kay Sievers98df67b2008-12-25 13:38:55 +010094 strncpy(zfcp_data.init_busid, token, ZFCP_BUS_ID_SIZE);
Swen Schillig317e6b62008-07-02 10:56:37 +020095
96 token = strsep(&str, ",");
Swen Schillig7ba58c92008-10-01 12:42:18 +020097 if (!token || strict_strtoull(token, 0,
98 (unsigned long long *) &zfcp_data.init_wwpn))
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 goto err_out;
100
Swen Schillig317e6b62008-07-02 10:56:37 +0200101 token = strsep(&str, ",");
Swen Schillig7ba58c92008-10-01 12:42:18 +0200102 if (!token || strict_strtoull(token, 0,
103 (unsigned long long *) &zfcp_data.init_fcp_lun))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 goto err_out;
Swen Schillig317e6b62008-07-02 10:56:37 +0200105
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200106 kfree(str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return 1;
108
109 err_out:
Andreas Herrmanncd8a3832005-06-13 13:22:25 +0200110 kfree(str);
Christof Schmittecf39d42008-12-25 13:39:53 +0100111 pr_err("%s is not a valid SCSI device\n", devstr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 return 0;
113}
114
Swen Schillig317e6b62008-07-02 10:56:37 +0200115static void __init zfcp_init_device_configure(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
117 struct zfcp_adapter *adapter;
118 struct zfcp_port *port;
119 struct zfcp_unit *unit;
120
121 down(&zfcp_data.config_sema);
122 read_lock_irq(&zfcp_data.config_lock);
123 adapter = zfcp_get_adapter_by_busid(zfcp_data.init_busid);
124 if (adapter)
125 zfcp_adapter_get(adapter);
126 read_unlock_irq(&zfcp_data.config_lock);
127
Swen Schillig317e6b62008-07-02 10:56:37 +0200128 if (!adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 goto out_adapter;
130 port = zfcp_port_enqueue(adapter, zfcp_data.init_wwpn, 0, 0);
Swen Schillig317e6b62008-07-02 10:56:37 +0200131 if (IS_ERR(port))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 goto out_port;
133 unit = zfcp_unit_enqueue(port, zfcp_data.init_fcp_lun);
Swen Schillig317e6b62008-07-02 10:56:37 +0200134 if (IS_ERR(unit))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 goto out_unit;
136 up(&zfcp_data.config_sema);
137 ccw_device_set_online(adapter->ccw_device);
Swen Schillig091694a2008-10-01 12:42:25 +0200138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 zfcp_erp_wait(adapter);
Swen Schillig091694a2008-10-01 12:42:25 +0200140 wait_event(adapter->erp_done_wqh,
141 !(atomic_read(&unit->status) &
142 ZFCP_STATUS_UNIT_SCSI_WORK_PENDING));
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 down(&zfcp_data.config_sema);
145 zfcp_unit_put(unit);
Swen Schillig317e6b62008-07-02 10:56:37 +0200146out_unit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 zfcp_port_put(port);
Swen Schillig317e6b62008-07-02 10:56:37 +0200148out_port:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 zfcp_adapter_put(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200150out_adapter:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 up(&zfcp_data.config_sema);
152 return;
153}
154
Swen Schillig317e6b62008-07-02 10:56:37 +0200155static struct kmem_cache *zfcp_cache_create(int size, char *name)
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200156{
157 int align = 1;
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200158 while ((size - align) > 0)
159 align <<= 1;
Swen Schillig317e6b62008-07-02 10:56:37 +0200160 return kmem_cache_create(name , size, align, 0, NULL);
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200161}
162
Swen Schillig317e6b62008-07-02 10:56:37 +0200163static int __init zfcp_module_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200165 int retval = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Swen Schillig317e6b62008-07-02 10:56:37 +0200167 zfcp_data.fsf_req_qtcb_cache = zfcp_cache_create(
168 sizeof(struct zfcp_fsf_req_qtcb), "zfcp_fsf");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200169 if (!zfcp_data.fsf_req_qtcb_cache)
170 goto out;
171
Swen Schillig317e6b62008-07-02 10:56:37 +0200172 zfcp_data.sr_buffer_cache = zfcp_cache_create(
173 sizeof(struct fsf_status_read_buffer), "zfcp_sr");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200174 if (!zfcp_data.sr_buffer_cache)
175 goto out_sr_cache;
176
Swen Schillig317e6b62008-07-02 10:56:37 +0200177 zfcp_data.gid_pn_cache = zfcp_cache_create(
178 sizeof(struct zfcp_gid_pn_data), "zfcp_gid");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200179 if (!zfcp_data.gid_pn_cache)
180 goto out_gid_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Swen Schilligb7f15f32008-10-01 12:42:22 +0200182 zfcp_data.work_queue = create_singlethread_workqueue("zfcp_wq");
183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 INIT_LIST_HEAD(&zfcp_data.adapter_list_head);
Swen Schillig317e6b62008-07-02 10:56:37 +0200185 sema_init(&zfcp_data.config_sema, 1);
186 rwlock_init(&zfcp_data.config_lock);
187
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200188 zfcp_data.scsi_transport_template =
189 fc_attach_transport(&zfcp_transport_functions);
190 if (!zfcp_data.scsi_transport_template)
191 goto out_transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 retval = misc_register(&zfcp_cfdc_misc);
Swen Schillig317e6b62008-07-02 10:56:37 +0200194 if (retval) {
Christof Schmittecf39d42008-12-25 13:39:53 +0100195 pr_err("Registering the misc device zfcp_cfdc failed\n");
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200196 goto out_misc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 retval = zfcp_ccw_register();
200 if (retval) {
Christof Schmittecf39d42008-12-25 13:39:53 +0100201 pr_err("The zfcp device driver could not register with "
Christof Schmittff3b24f2008-10-01 12:42:15 +0200202 "the common I/O layer\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 goto out_ccw_register;
204 }
205
206 if (zfcp_device_setup(device))
207 zfcp_init_device_configure();
208
209 goto out;
210
Swen Schillig317e6b62008-07-02 10:56:37 +0200211out_ccw_register:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 misc_deregister(&zfcp_cfdc_misc);
Swen Schillig317e6b62008-07-02 10:56:37 +0200213out_misc:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200214 fc_release_transport(zfcp_data.scsi_transport_template);
Swen Schillig317e6b62008-07-02 10:56:37 +0200215out_transport:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200216 kmem_cache_destroy(zfcp_data.gid_pn_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200217out_gid_cache:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200218 kmem_cache_destroy(zfcp_data.sr_buffer_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200219out_sr_cache:
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200220 kmem_cache_destroy(zfcp_data.fsf_req_qtcb_cache);
Swen Schillig317e6b62008-07-02 10:56:37 +0200221out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return retval;
223}
224
Swen Schillig317e6b62008-07-02 10:56:37 +0200225module_init(zfcp_module_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227/**
228 * zfcp_get_unit_by_lun - find unit in unit list of port by FCP LUN
229 * @port: pointer to port to search for unit
230 * @fcp_lun: FCP LUN to search for
Swen Schillig317e6b62008-07-02 10:56:37 +0200231 *
232 * Returns: pointer to zfcp_unit or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200234struct zfcp_unit *zfcp_get_unit_by_lun(struct zfcp_port *port, u64 fcp_lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Swen Schillig317e6b62008-07-02 10:56:37 +0200238 list_for_each_entry(unit, &port->unit_list_head, list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if ((unit->fcp_lun == fcp_lun) &&
Swen Schillig317e6b62008-07-02 10:56:37 +0200240 !(atomic_read(&unit->status) & ZFCP_STATUS_COMMON_REMOVE))
241 return unit;
242 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
245/**
246 * zfcp_get_port_by_wwpn - find port in port list of adapter by wwpn
247 * @adapter: pointer to adapter to search for port
248 * @wwpn: wwpn to search for
Swen Schillig317e6b62008-07-02 10:56:37 +0200249 *
250 * Returns: pointer to zfcp_port or NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200252struct zfcp_port *zfcp_get_port_by_wwpn(struct zfcp_adapter *adapter,
Swen Schillig7ba58c92008-10-01 12:42:18 +0200253 u64 wwpn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 struct zfcp_port *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Swen Schillig317e6b62008-07-02 10:56:37 +0200257 list_for_each_entry(port, &adapter->port_list_head, list)
258 if ((port->wwpn == wwpn) && !(atomic_read(&port->status) &
259 (ZFCP_STATUS_PORT_NO_WWPN | ZFCP_STATUS_COMMON_REMOVE)))
260 return port;
261 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262}
263
Swen Schillig60221922008-07-02 10:56:38 +0200264static void zfcp_sysfs_unit_release(struct device *dev)
265{
266 kfree(container_of(dev, struct zfcp_unit, sysfs_device));
267}
268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/**
270 * zfcp_unit_enqueue - enqueue unit to unit list of a port.
271 * @port: pointer to port where unit is added
272 * @fcp_lun: FCP LUN of unit to be enqueued
Swen Schillig317e6b62008-07-02 10:56:37 +0200273 * Returns: pointer to enqueued unit on success, ERR_PTR on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 * Locks: config_sema must be held to serialize changes to the unit list
275 *
276 * Sets up some unit internal structures and creates sysfs entry.
277 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200278struct zfcp_unit *zfcp_unit_enqueue(struct zfcp_port *port, u64 fcp_lun)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Christof Schmitt462b7852007-06-19 10:25:30 +0200280 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Swen Schillig317e6b62008-07-02 10:56:37 +0200282 unit = kzalloc(sizeof(struct zfcp_unit), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (!unit)
Swen Schillig317e6b62008-07-02 10:56:37 +0200284 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 atomic_set(&unit->refcount, 0);
287 init_waitqueue_head(&unit->remove_wq);
288
289 unit->port = port;
290 unit->fcp_lun = fcp_lun;
291
Cornelia Huck1bf5b282008-10-10 21:33:10 +0200292 dev_set_name(&unit->sysfs_device, "0x%016llx",
293 (unsigned long long) fcp_lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 unit->sysfs_device.parent = &port->sysfs_device;
295 unit->sysfs_device.release = zfcp_sysfs_unit_release;
296 dev_set_drvdata(&unit->sysfs_device, unit);
297
298 /* mark unit unusable as long as sysfs registration is not complete */
299 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
300
Christof Schmittc9615852008-05-06 11:00:05 +0200301 spin_lock_init(&unit->latencies.lock);
302 unit->latencies.write.channel.min = 0xFFFFFFFF;
303 unit->latencies.write.fabric.min = 0xFFFFFFFF;
304 unit->latencies.read.channel.min = 0xFFFFFFFF;
305 unit->latencies.read.fabric.min = 0xFFFFFFFF;
306 unit->latencies.cmd.channel.min = 0xFFFFFFFF;
307 unit->latencies.cmd.fabric.min = 0xFFFFFFFF;
308
Swen Schillig317e6b62008-07-02 10:56:37 +0200309 read_lock_irq(&zfcp_data.config_lock);
310 if (zfcp_get_unit_by_lun(port, fcp_lun)) {
311 read_unlock_irq(&zfcp_data.config_lock);
312 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
Swen Schillig317e6b62008-07-02 10:56:37 +0200314 read_unlock_irq(&zfcp_data.config_lock);
315
316 if (device_register(&unit->sysfs_device))
317 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Swen Schillig60221922008-07-02 10:56:38 +0200319 if (sysfs_create_group(&unit->sysfs_device.kobj,
320 &zfcp_sysfs_unit_attrs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 device_unregister(&unit->sysfs_device);
Swen Schillig317e6b62008-07-02 10:56:37 +0200322 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324
325 zfcp_unit_get(unit);
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 write_lock_irq(&zfcp_data.config_lock);
Christof Schmitt462b7852007-06-19 10:25:30 +0200328 list_add_tail(&unit->list, &port->unit_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &unit->status);
330 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &unit->status);
Swen Schillig317e6b62008-07-02 10:56:37 +0200331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 write_unlock_irq(&zfcp_data.config_lock);
333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 zfcp_port_get(port);
335
336 return unit;
Swen Schillig317e6b62008-07-02 10:56:37 +0200337
338err_out_free:
339 kfree(unit);
340 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
Swen Schillig317e6b62008-07-02 10:56:37 +0200343/**
344 * zfcp_unit_dequeue - dequeue unit
345 * @unit: pointer to zfcp_unit
346 *
347 * waits until all work is done on unit and removes it then from the unit->list
348 * of the associated port.
349 */
350void zfcp_unit_dequeue(struct zfcp_unit *unit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200352 wait_event(unit->remove_wq, atomic_read(&unit->refcount) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 write_lock_irq(&zfcp_data.config_lock);
354 list_del(&unit->list);
355 write_unlock_irq(&zfcp_data.config_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 zfcp_port_put(unit->port);
Swen Schillig60221922008-07-02 10:56:38 +0200357 sysfs_remove_group(&unit->sysfs_device.kobj, &zfcp_sysfs_unit_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 device_unregister(&unit->sysfs_device);
359}
360
Swen Schillig317e6b62008-07-02 10:56:37 +0200361static int zfcp_allocate_low_mem_buffers(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Swen Schillig317e6b62008-07-02 10:56:37 +0200363 /* must only be called with zfcp_data.config_sema taken */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 adapter->pool.fsf_req_erp =
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_erp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return -ENOMEM;
368
369 adapter->pool.fsf_req_scsi =
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_scsi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return -ENOMEM;
373
374 adapter->pool.fsf_req_abort =
Swen Schillig317e6b62008-07-02 10:56:37 +0200375 mempool_create_slab_pool(1, zfcp_data.fsf_req_qtcb_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800376 if (!adapter->pool.fsf_req_abort)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return -ENOMEM;
378
379 adapter->pool.fsf_req_status_read =
Swen Schillig317e6b62008-07-02 10:56:37 +0200380 mempool_create_kmalloc_pool(FSF_STATUS_READS_RECOM,
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800381 sizeof(struct zfcp_fsf_req));
382 if (!adapter->pool.fsf_req_status_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return -ENOMEM;
384
385 adapter->pool.data_status_read =
Swen Schillig317e6b62008-07-02 10:56:37 +0200386 mempool_create_slab_pool(FSF_STATUS_READS_RECOM,
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200387 zfcp_data.sr_buffer_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800388 if (!adapter->pool.data_status_read)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return -ENOMEM;
390
391 adapter->pool.data_gid_pn =
Swen Schillig317e6b62008-07-02 10:56:37 +0200392 mempool_create_slab_pool(1, zfcp_data.gid_pn_cache);
Matthew Dobson0eaae62a2006-03-26 01:37:47 -0800393 if (!adapter->pool.data_gid_pn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 return -ENOMEM;
395
396 return 0;
397}
398
Swen Schillig317e6b62008-07-02 10:56:37 +0200399static void zfcp_free_low_mem_buffers(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Swen Schillig317e6b62008-07-02 10:56:37 +0200401 /* zfcp_data.config_sema must be held */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (adapter->pool.fsf_req_erp)
403 mempool_destroy(adapter->pool.fsf_req_erp);
404 if (adapter->pool.fsf_req_scsi)
405 mempool_destroy(adapter->pool.fsf_req_scsi);
406 if (adapter->pool.fsf_req_abort)
407 mempool_destroy(adapter->pool.fsf_req_abort);
408 if (adapter->pool.fsf_req_status_read)
409 mempool_destroy(adapter->pool.fsf_req_status_read);
410 if (adapter->pool.data_status_read)
411 mempool_destroy(adapter->pool.data_status_read);
412 if (adapter->pool.data_gid_pn)
413 mempool_destroy(adapter->pool.data_gid_pn);
414}
415
Swen Schillig317e6b62008-07-02 10:56:37 +0200416/**
417 * zfcp_status_read_refill - refill the long running status_read_requests
418 * @adapter: ptr to struct zfcp_adapter for which the buffers should be refilled
419 *
420 * Returns: 0 on success, 1 otherwise
421 *
422 * if there are 16 or more status_read requests missing an adapter_reopen
423 * is triggered
424 */
Swen Schilligd26ab062008-05-19 12:17:37 +0200425int zfcp_status_read_refill(struct zfcp_adapter *adapter)
426{
427 while (atomic_read(&adapter->stat_miss) > 0)
Swen Schilligc41f8cb2008-07-02 10:56:39 +0200428 if (zfcp_fsf_status_read(adapter)) {
Swen Schillig7afe29f2008-07-02 10:56:33 +0200429 if (atomic_read(&adapter->stat_miss) >= 16) {
430 zfcp_erp_adapter_reopen(adapter, 0, 103, NULL);
431 return 1;
432 }
Swen Schilligd26ab062008-05-19 12:17:37 +0200433 break;
Swen Schillig7afe29f2008-07-02 10:56:33 +0200434 } else
435 atomic_dec(&adapter->stat_miss);
Swen Schilligd26ab062008-05-19 12:17:37 +0200436 return 0;
437}
438
439static void _zfcp_status_read_scheduler(struct work_struct *work)
440{
441 zfcp_status_read_refill(container_of(work, struct zfcp_adapter,
442 stat_work));
443}
444
Christof Schmittbd43a422008-12-25 13:38:50 +0100445static void zfcp_print_sl(struct seq_file *m, struct service_level *sl)
446{
447 struct zfcp_adapter *adapter =
448 container_of(sl, struct zfcp_adapter, service_level);
449
450 seq_printf(m, "zfcp: %s microcode level %x\n",
451 dev_name(&adapter->ccw_device->dev),
452 adapter->fsf_lic_version);
453}
454
Swen Schillig317e6b62008-07-02 10:56:37 +0200455/**
456 * zfcp_adapter_enqueue - enqueue a new adapter to the list
457 * @ccw_device: pointer to the struct cc_device
458 *
459 * Returns: 0 if a new adapter was successfully enqueued
460 * -ENOMEM if alloc failed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 * Enqueues an adapter at the end of the adapter list in the driver data.
462 * All adapter internal structures are set up.
463 * Proc-fs entries are also created.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 * locks: config_sema must be held to serialise changes to the adapter list
465 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200466int zfcp_adapter_enqueue(struct ccw_device *ccw_device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 struct zfcp_adapter *adapter;
469
470 /*
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200471 * Note: It is safe to release the list_lock, as any list changes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 * are protected by the config_sema, which must be held to get here
473 */
474
Swen Schillig317e6b62008-07-02 10:56:37 +0200475 adapter = kzalloc(sizeof(struct zfcp_adapter), GFP_KERNEL);
Christof Schmitt553448f2008-06-10 18:20:58 +0200476 if (!adapter)
Swen Schillig317e6b62008-07-02 10:56:37 +0200477 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 ccw_device->handler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 adapter->ccw_device = ccw_device;
Swen Schillig317e6b62008-07-02 10:56:37 +0200481 atomic_set(&adapter->refcount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Swen Schillig00bab912008-06-10 18:20:57 +0200483 if (zfcp_qdio_allocate(adapter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 goto qdio_allocate_failed;
485
Swen Schillig00bab912008-06-10 18:20:57 +0200486 if (zfcp_allocate_low_mem_buffers(adapter))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 goto failed_low_mem_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Swen Schillig00bab912008-06-10 18:20:57 +0200489 if (zfcp_reqlist_alloc(adapter))
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200490 goto failed_low_mem_buffers;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Swen Schillig317e6b62008-07-02 10:56:37 +0200492 if (zfcp_adapter_debug_register(adapter))
493 goto debug_register_failed;
494
495 init_waitqueue_head(&adapter->remove_wq);
496 init_waitqueue_head(&adapter->erp_thread_wqh);
497 init_waitqueue_head(&adapter->erp_done_wqh);
498
499 INIT_LIST_HEAD(&adapter->port_list_head);
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);
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100510
Heiko Carstensc48a29d2005-12-01 02:46:32 +0100511 rwlock_init(&adapter->erp_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 rwlock_init(&adapter->abort_lock);
Swen Schillig317e6b62008-07-02 10:56:37 +0200513
514 sema_init(&adapter->erp_ready_sem, 0);
515
Swen Schilligd26ab062008-05-19 12:17:37 +0200516 INIT_WORK(&adapter->stat_work, _zfcp_status_read_scheduler);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200517 INIT_WORK(&adapter->scan_work, _zfcp_scan_ports_later);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Christof Schmittbd43a422008-12-25 13:38:50 +0100519 adapter->service_level.seq_print = zfcp_print_sl;
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 /* mark adapter unusable as long as sysfs registration is not complete */
522 atomic_set_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 dev_set_drvdata(&ccw_device->dev, adapter);
525
Swen Schillig60221922008-07-02 10:56:38 +0200526 if (sysfs_create_group(&ccw_device->dev.kobj,
527 &zfcp_sysfs_adapter_attrs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 goto sysfs_failed;
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 write_lock_irq(&zfcp_data.config_lock);
531 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &adapter->status);
532 list_add_tail(&adapter->list, &zfcp_data.adapter_list_head);
533 write_unlock_irq(&zfcp_data.config_lock);
534
Swen Schillig5ab944f2008-10-01 12:42:17 +0200535 zfcp_fc_nameserver_init(adapter);
Swen Schilligcc8c2822008-06-10 18:21:00 +0200536
Swen Schillig1d3aab02008-12-19 16:56:53 +0100537 if (!zfcp_adapter_scsi_register(adapter))
538 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Swen Schillig317e6b62008-07-02 10:56:37 +0200540sysfs_failed:
Christof Schmittff17a292007-08-28 09:31:41 +0200541 zfcp_adapter_debug_unregister(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200542debug_register_failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 dev_set_drvdata(&ccw_device->dev, NULL);
Swen Schillig317e6b62008-07-02 10:56:37 +0200544 kfree(adapter->req_list);
545failed_low_mem_buffers:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 zfcp_free_low_mem_buffers(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200547qdio_allocate_failed:
Swen Schillig00bab912008-06-10 18:20:57 +0200548 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 kfree(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200550 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
Swen Schillig317e6b62008-07-02 10:56:37 +0200553/**
554 * zfcp_adapter_dequeue - remove the adapter from the resource list
555 * @adapter: pointer to struct zfcp_adapter which should be removed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 * locks: adapter list write lock is assumed to be held by caller
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 */
Swen Schillig317e6b62008-07-02 10:56:37 +0200558void zfcp_adapter_dequeue(struct zfcp_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 int retval = 0;
561 unsigned long flags;
562
Swen Schilligcc8c2822008-06-10 18:21:00 +0200563 cancel_work_sync(&adapter->scan_work);
Swen Schilligd26ab062008-05-19 12:17:37 +0200564 cancel_work_sync(&adapter->stat_work);
Michael Loehr9f287452007-05-09 11:01:24 +0200565 zfcp_adapter_scsi_unregister(adapter);
Swen Schillig60221922008-07-02 10:56:38 +0200566 sysfs_remove_group(&adapter->ccw_device->dev.kobj,
567 &zfcp_sysfs_adapter_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 dev_set_drvdata(&adapter->ccw_device->dev, NULL);
569 /* sanity check: no pending FSF requests */
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200570 spin_lock_irqsave(&adapter->req_list_lock, flags);
571 retval = zfcp_reqlist_isempty(adapter);
572 spin_unlock_irqrestore(&adapter->req_list_lock, flags);
Swen Schillig317e6b62008-07-02 10:56:37 +0200573 if (!retval)
574 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Christof Schmittff17a292007-08-28 09:31:41 +0200576 zfcp_adapter_debug_unregister(adapter);
577
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 /* remove specified adapter data structure from list */
579 write_lock_irq(&zfcp_data.config_lock);
580 list_del(&adapter->list);
581 write_unlock_irq(&zfcp_data.config_lock);
582
Swen Schillig00bab912008-06-10 18:20:57 +0200583 zfcp_qdio_free(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 zfcp_free_low_mem_buffers(adapter);
Swen Schillig317e6b62008-07-02 10:56:37 +0200586 kfree(adapter->req_list);
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100587 kfree(adapter->fc_stats);
588 kfree(adapter->stats_reset_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 kfree(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590}
591
Swen Schillig60221922008-07-02 10:56:38 +0200592static void zfcp_sysfs_port_release(struct device *dev)
593{
594 kfree(container_of(dev, struct zfcp_port, sysfs_device));
595}
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597/**
598 * zfcp_port_enqueue - enqueue port to port list of adapter
599 * @adapter: adapter where remote port is added
600 * @wwpn: WWPN of the remote port to be enqueued
601 * @status: initial status for the port
602 * @d_id: destination id of the remote port to be enqueued
Swen Schillig317e6b62008-07-02 10:56:37 +0200603 * Returns: pointer to enqueued port on success, ERR_PTR on error
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 * Locks: config_sema must be held to serialize changes to the port list
605 *
606 * All port internal structures are set up and the sysfs entry is generated.
607 * d_id is used to enqueue ports with a well known address like the Directory
608 * Service for nameserver lookup.
609 */
Swen Schillig7ba58c92008-10-01 12:42:18 +0200610struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn,
Swen Schillig317e6b62008-07-02 10:56:37 +0200611 u32 status, u32 d_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700613 struct zfcp_port *port;
Swen Schillig60221922008-07-02 10:56:38 +0200614 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Swen Schillig317e6b62008-07-02 10:56:37 +0200616 port = kzalloc(sizeof(struct zfcp_port), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (!port)
Swen Schillig317e6b62008-07-02 10:56:37 +0200618 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 init_waitqueue_head(&port->remove_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 INIT_LIST_HEAD(&port->unit_list_head);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200622 INIT_WORK(&port->gid_pn_work, zfcp_erp_port_strategy_open_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624 port->adapter = adapter;
Swen Schillig317e6b62008-07-02 10:56:37 +0200625 port->d_id = d_id;
626 port->wwpn = wwpn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Swen Schillig317e6b62008-07-02 10:56:37 +0200628 /* mark port unusable as long as sysfs registration is not complete */
629 atomic_set_mask(status | ZFCP_STATUS_COMMON_REMOVE, &port->status);
630 atomic_set(&port->refcount, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Christof Schmittadc90da2008-11-04 16:35:09 +0100632 dev_set_name(&port->sysfs_device, "0x%016llx",
633 (unsigned long long)wwpn);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200634 port->sysfs_device.parent = &adapter->ccw_device->dev;
Swen Schilligcc8c2822008-06-10 18:21:00 +0200635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 port->sysfs_device.release = zfcp_sysfs_port_release;
637 dev_set_drvdata(&port->sysfs_device, port);
638
Swen Schillig317e6b62008-07-02 10:56:37 +0200639 read_lock_irq(&zfcp_data.config_lock);
640 if (!(status & ZFCP_STATUS_PORT_NO_WWPN))
641 if (zfcp_get_port_by_wwpn(adapter, wwpn)) {
642 read_unlock_irq(&zfcp_data.config_lock);
643 goto err_out_free;
644 }
645 read_unlock_irq(&zfcp_data.config_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Swen Schillig317e6b62008-07-02 10:56:37 +0200647 if (device_register(&port->sysfs_device))
648 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
Swen Schillig5ab944f2008-10-01 12:42:17 +0200650 retval = sysfs_create_group(&port->sysfs_device.kobj,
651 &zfcp_sysfs_port_attrs);
Swen Schillig60221922008-07-02 10:56:38 +0200652
653 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 device_unregister(&port->sysfs_device);
Swen Schillig317e6b62008-07-02 10:56:37 +0200655 goto err_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657
658 zfcp_port_get(port);
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 write_lock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700661 list_add_tail(&port->list, &adapter->port_list_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 atomic_clear_mask(ZFCP_STATUS_COMMON_REMOVE, &port->status);
663 atomic_set_mask(ZFCP_STATUS_COMMON_RUNNING, &port->status);
Swen Schillig317e6b62008-07-02 10:56:37 +0200664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 write_unlock_irq(&zfcp_data.config_lock);
666
667 zfcp_adapter_get(adapter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return port;
Swen Schillig317e6b62008-07-02 10:56:37 +0200669
670err_out_free:
671 kfree(port);
672err_out:
673 return ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
Swen Schillig317e6b62008-07-02 10:56:37 +0200676/**
677 * zfcp_port_dequeue - dequeues a port from the port list of the adapter
678 * @port: pointer to struct zfcp_port which should be removed
679 */
680void zfcp_port_dequeue(struct zfcp_port *port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Swen Schillig44cc76f2008-10-01 12:42:16 +0200682 wait_event(port->remove_wq, atomic_read(&port->refcount) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 write_lock_irq(&zfcp_data.config_lock);
684 list_del(&port->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 write_unlock_irq(&zfcp_data.config_lock);
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700686 if (port->rport)
Heiko Carstens20b17302005-08-28 13:22:37 -0700687 fc_remote_port_delete(port->rport);
688 port->rport = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 zfcp_adapter_put(port->adapter);
Swen Schillig5ab944f2008-10-01 12:42:17 +0200690 sysfs_remove_group(&port->sysfs_device.kobj, &zfcp_sysfs_port_attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 device_unregister(&port->sysfs_device);
692}
693
Swen Schillig317e6b62008-07-02 10:56:37 +0200694/**
695 * zfcp_sg_free_table - free memory used by scatterlists
696 * @sg: pointer to scatterlist
697 * @count: number of scatterlist which are to be free'ed
698 * the scatterlist are expected to reference pages always
699 */
Christof Schmitt45633fd2008-06-10 18:20:55 +0200700void zfcp_sg_free_table(struct scatterlist *sg, int count)
701{
702 int i;
703
704 for (i = 0; i < count; i++, sg++)
705 if (sg)
706 free_page((unsigned long) sg_virt(sg));
707 else
708 break;
709}
710
Swen Schillig317e6b62008-07-02 10:56:37 +0200711/**
712 * zfcp_sg_setup_table - init scatterlist and allocate, assign buffers
713 * @sg: pointer to struct scatterlist
714 * @count: number of scatterlists which should be assigned with buffers
715 * of size page
716 *
717 * Returns: 0 on success, -ENOMEM otherwise
718 */
Christof Schmitt45633fd2008-06-10 18:20:55 +0200719int zfcp_sg_setup_table(struct scatterlist *sg, int count)
720{
721 void *addr;
722 int i;
723
724 sg_init_table(sg, count);
725 for (i = 0; i < count; i++, sg++) {
726 addr = (void *) get_zeroed_page(GFP_KERNEL);
727 if (!addr) {
728 zfcp_sg_free_table(sg, i);
729 return -ENOMEM;
730 }
731 sg_set_buf(sg, addr, PAGE_SIZE);
732 }
733 return 0;
734}