blob: fccd0f6cfc903158b84b3eec639d8f4032628419 [file] [log] [blame]
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -07001/*
2 * SCSI device handler infrastruture.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 * Copyright IBM Corporation, 2007
19 * Authors:
20 * Chandra Seetharaman <sekharan@us.ibm.com>
21 * Mike Anderson <andmike@linux.vnet.ibm.com>
22 */
23
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -070025#include <scsi/scsi_dh.h>
26#include "../scsi_priv.h"
27
28static DEFINE_SPINLOCK(list_lock);
29static LIST_HEAD(scsi_dh_list);
Peter Jones940d7fa2011-01-06 15:38:24 -050030static int scsi_dh_list_idx = 1;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -070031
32static struct scsi_device_handler *get_device_handler(const char *name)
33{
34 struct scsi_device_handler *tmp, *found = NULL;
35
36 spin_lock(&list_lock);
37 list_for_each_entry(tmp, &scsi_dh_list, list) {
Hannes Reinecke765cbc62008-07-17 16:52:51 -070038 if (!strncmp(tmp->name, name, strlen(tmp->name))) {
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -070039 found = tmp;
40 break;
41 }
42 }
43 spin_unlock(&list_lock);
44 return found;
45}
46
Peter Jones940d7fa2011-01-06 15:38:24 -050047static struct scsi_device_handler *get_device_handler_by_idx(int idx)
Hannes Reinecke7c32c7a2008-07-17 16:53:33 -070048{
Peter Jones940d7fa2011-01-06 15:38:24 -050049 struct scsi_device_handler *tmp, *found = NULL;
Hannes Reinecke7c32c7a2008-07-17 16:53:33 -070050
51 spin_lock(&list_lock);
Peter Jones940d7fa2011-01-06 15:38:24 -050052 list_for_each_entry(tmp, &scsi_dh_list, list) {
53 if (tmp->idx == idx) {
54 found = tmp;
Hannes Reinecke7c32c7a2008-07-17 16:53:33 -070055 break;
56 }
57 }
58 spin_unlock(&list_lock);
Hannes Reinecke7c32c7a2008-07-17 16:53:33 -070059 return found;
60}
61
62/*
63 * device_handler_match - Attach a device handler to a device
64 * @scsi_dh - The device handler to match against or NULL
65 * @sdev - SCSI device to be tested against @scsi_dh
66 *
67 * Tests @sdev against the device handler @scsi_dh or against
68 * all registered device_handler if @scsi_dh == NULL.
69 * Returns the found device handler or NULL if not found.
70 */
71static struct scsi_device_handler *
72device_handler_match(struct scsi_device_handler *scsi_dh,
73 struct scsi_device *sdev)
74{
75 struct scsi_device_handler *found_dh = NULL;
Peter Jones940d7fa2011-01-06 15:38:24 -050076 int idx;
Hannes Reinecke7c32c7a2008-07-17 16:53:33 -070077
Peter Jones940d7fa2011-01-06 15:38:24 -050078 idx = scsi_get_device_flags_keyed(sdev, sdev->vendor, sdev->model,
79 SCSI_DEVINFO_DH);
80 found_dh = get_device_handler_by_idx(idx);
Hannes Reinecke7c32c7a2008-07-17 16:53:33 -070081
Peter Jones940d7fa2011-01-06 15:38:24 -050082 if (scsi_dh && found_dh != scsi_dh)
83 found_dh = NULL;
Hannes Reinecke765cbc62008-07-17 16:52:51 -070084
Hannes Reinecke7c32c7a2008-07-17 16:53:33 -070085 return found_dh;
Hannes Reinecke765cbc62008-07-17 16:52:51 -070086}
87
88/*
89 * scsi_dh_handler_attach - Attach a device handler to a device
90 * @sdev - SCSI device the device handler should attach to
91 * @scsi_dh - The device handler to attach
92 */
93static int scsi_dh_handler_attach(struct scsi_device *sdev,
94 struct scsi_device_handler *scsi_dh)
95{
96 int err = 0;
97
98 if (sdev->scsi_dh_data) {
99 if (sdev->scsi_dh_data->scsi_dh != scsi_dh)
100 err = -EBUSY;
Chandra Seetharaman6c10db72009-06-26 19:30:06 -0700101 else
102 kref_get(&sdev->scsi_dh_data->kref);
103 } else if (scsi_dh->attach) {
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700104 err = scsi_dh->attach(sdev);
Chandra Seetharaman6c10db72009-06-26 19:30:06 -0700105 if (!err) {
106 kref_init(&sdev->scsi_dh_data->kref);
107 sdev->scsi_dh_data->sdev = sdev;
108 }
109 }
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700110 return err;
111}
112
Chandra Seetharaman6c10db72009-06-26 19:30:06 -0700113static void __detach_handler (struct kref *kref)
114{
115 struct scsi_dh_data *scsi_dh_data = container_of(kref, struct scsi_dh_data, kref);
116 scsi_dh_data->scsi_dh->detach(scsi_dh_data->sdev);
117}
118
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700119/*
120 * scsi_dh_handler_detach - Detach a device handler from a device
121 * @sdev - SCSI device the device handler should be detached from
122 * @scsi_dh - Device handler to be detached
123 *
124 * Detach from a device handler. If a device handler is specified,
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700125 * only detach if the currently attached handler matches @scsi_dh.
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700126 */
127static void scsi_dh_handler_detach(struct scsi_device *sdev,
128 struct scsi_device_handler *scsi_dh)
129{
130 if (!sdev->scsi_dh_data)
131 return;
132
133 if (scsi_dh && scsi_dh != sdev->scsi_dh_data->scsi_dh)
134 return;
135
136 if (!scsi_dh)
137 scsi_dh = sdev->scsi_dh_data->scsi_dh;
138
139 if (scsi_dh && scsi_dh->detach)
Chandra Seetharaman6c10db72009-06-26 19:30:06 -0700140 kref_put(&sdev->scsi_dh_data->kref, __detach_handler);
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700141}
142
143/*
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700144 * Functions for sysfs attribute 'dh_state'
145 */
146static ssize_t
147store_dh_state(struct device *dev, struct device_attribute *attr,
148 const char *buf, size_t count)
149{
150 struct scsi_device *sdev = to_scsi_device(dev);
151 struct scsi_device_handler *scsi_dh;
152 int err = -EINVAL;
153
154 if (!sdev->scsi_dh_data) {
155 /*
156 * Attach to a device handler
157 */
158 if (!(scsi_dh = get_device_handler(buf)))
159 return err;
160 err = scsi_dh_handler_attach(sdev, scsi_dh);
161 } else {
162 scsi_dh = sdev->scsi_dh_data->scsi_dh;
163 if (!strncmp(buf, "detach", 6)) {
164 /*
165 * Detach from a device handler
166 */
167 scsi_dh_handler_detach(sdev, scsi_dh);
168 err = 0;
169 } else if (!strncmp(buf, "activate", 8)) {
170 /*
171 * Activate a device handler
172 */
173 if (scsi_dh->activate)
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -0700174 err = scsi_dh->activate(sdev, NULL, NULL);
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700175 else
176 err = 0;
177 }
178 }
179
180 return err<0?err:count;
181}
182
183static ssize_t
184show_dh_state(struct device *dev, struct device_attribute *attr, char *buf)
185{
186 struct scsi_device *sdev = to_scsi_device(dev);
187
188 if (!sdev->scsi_dh_data)
189 return snprintf(buf, 20, "detached\n");
190
191 return snprintf(buf, 20, "%s\n", sdev->scsi_dh_data->scsi_dh->name);
192}
193
194static struct device_attribute scsi_dh_state_attr =
195 __ATTR(dh_state, S_IRUGO | S_IWUSR, show_dh_state,
196 store_dh_state);
197
198/*
199 * scsi_dh_sysfs_attr_add - Callback for scsi_init_dh
200 */
201static int scsi_dh_sysfs_attr_add(struct device *dev, void *data)
202{
203 struct scsi_device *sdev;
204 int err;
205
206 if (!scsi_is_sdev_device(dev))
207 return 0;
208
209 sdev = to_scsi_device(dev);
210
211 err = device_create_file(&sdev->sdev_gendev,
212 &scsi_dh_state_attr);
213
214 return 0;
215}
216
217/*
218 * scsi_dh_sysfs_attr_remove - Callback for scsi_exit_dh
219 */
220static int scsi_dh_sysfs_attr_remove(struct device *dev, void *data)
221{
222 struct scsi_device *sdev;
223
224 if (!scsi_is_sdev_device(dev))
225 return 0;
226
227 sdev = to_scsi_device(dev);
228
229 device_remove_file(&sdev->sdev_gendev,
230 &scsi_dh_state_attr);
231
232 return 0;
233}
234
235/*
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700236 * scsi_dh_notifier - notifier chain callback
237 */
238static int scsi_dh_notifier(struct notifier_block *nb,
239 unsigned long action, void *data)
240{
241 struct device *dev = data;
242 struct scsi_device *sdev;
243 int err = 0;
Hannes Reinecke7c32c7a2008-07-17 16:53:33 -0700244 struct scsi_device_handler *devinfo = NULL;
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700245
246 if (!scsi_is_sdev_device(dev))
247 return 0;
248
249 sdev = to_scsi_device(dev);
250
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700251 if (action == BUS_NOTIFY_ADD_DEVICE) {
Chandra Seetharaman59172902009-09-11 10:20:35 -0700252 err = device_create_file(dev, &scsi_dh_state_attr);
253 /* don't care about err */
Hannes Reinecke7c32c7a2008-07-17 16:53:33 -0700254 devinfo = device_handler_match(NULL, sdev);
Chandra Seetharaman59172902009-09-11 10:20:35 -0700255 if (devinfo)
256 err = scsi_dh_handler_attach(sdev, devinfo);
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700257 } else if (action == BUS_NOTIFY_DEL_DEVICE) {
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700258 device_remove_file(dev, &scsi_dh_state_attr);
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700259 scsi_dh_handler_detach(sdev, NULL);
260 }
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700261 return err;
262}
263
264/*
265 * scsi_dh_notifier_add - Callback for scsi_register_device_handler
266 */
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700267static int scsi_dh_notifier_add(struct device *dev, void *data)
268{
269 struct scsi_device_handler *scsi_dh = data;
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700270 struct scsi_device *sdev;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700271
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700272 if (!scsi_is_sdev_device(dev))
273 return 0;
274
275 if (!get_device(dev))
276 return 0;
277
278 sdev = to_scsi_device(dev);
279
280 if (device_handler_match(scsi_dh, sdev))
281 scsi_dh_handler_attach(sdev, scsi_dh);
282
283 put_device(dev);
284
285 return 0;
286}
287
288/*
289 * scsi_dh_notifier_remove - Callback for scsi_unregister_device_handler
290 */
291static int scsi_dh_notifier_remove(struct device *dev, void *data)
292{
293 struct scsi_device_handler *scsi_dh = data;
294 struct scsi_device *sdev;
295
296 if (!scsi_is_sdev_device(dev))
297 return 0;
298
299 if (!get_device(dev))
300 return 0;
301
302 sdev = to_scsi_device(dev);
303
304 scsi_dh_handler_detach(sdev, scsi_dh);
305
306 put_device(dev);
307
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700308 return 0;
309}
310
311/*
312 * scsi_register_device_handler - register a device handler personality
313 * module.
314 * @scsi_dh - device handler to be registered.
315 *
316 * Returns 0 on success, -EBUSY if handler already registered.
317 */
318int scsi_register_device_handler(struct scsi_device_handler *scsi_dh)
319{
Peter Jones940d7fa2011-01-06 15:38:24 -0500320 int i;
321
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700322 if (get_device_handler(scsi_dh->name))
323 return -EBUSY;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700324
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700325 spin_lock(&list_lock);
Peter Jones940d7fa2011-01-06 15:38:24 -0500326 scsi_dh->idx = scsi_dh_list_idx++;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700327 list_add(&scsi_dh->list, &scsi_dh_list);
328 spin_unlock(&list_lock);
Peter Jones940d7fa2011-01-06 15:38:24 -0500329
330 for (i = 0; scsi_dh->devlist[i].vendor; i++) {
331 scsi_dev_info_list_add_keyed(0,
332 scsi_dh->devlist[i].vendor,
333 scsi_dh->devlist[i].model,
334 NULL,
335 scsi_dh->idx,
336 SCSI_DEVINFO_DH);
337 }
338
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700339 bus_for_each_dev(&scsi_bus_type, NULL, scsi_dh, scsi_dh_notifier_add);
340 printk(KERN_INFO "%s: device handler registered\n", scsi_dh->name);
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700341
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700342 return SCSI_DH_OK;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700343}
344EXPORT_SYMBOL_GPL(scsi_register_device_handler);
345
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700346/*
347 * scsi_unregister_device_handler - register a device handler personality
348 * module.
349 * @scsi_dh - device handler to be unregistered.
350 *
351 * Returns 0 on success, -ENODEV if handler not registered.
352 */
353int scsi_unregister_device_handler(struct scsi_device_handler *scsi_dh)
354{
Peter Jones940d7fa2011-01-06 15:38:24 -0500355 int i;
Hannes Reinecke7c32c7a2008-07-17 16:53:33 -0700356
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700357 if (!get_device_handler(scsi_dh->name))
358 return -ENODEV;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700359
360 bus_for_each_dev(&scsi_bus_type, NULL, scsi_dh,
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700361 scsi_dh_notifier_remove);
362
Peter Jones940d7fa2011-01-06 15:38:24 -0500363 for (i = 0; scsi_dh->devlist[i].vendor; i++) {
364 scsi_dev_info_list_del_keyed(scsi_dh->devlist[i].vendor,
365 scsi_dh->devlist[i].model,
366 SCSI_DEVINFO_DH);
367 }
368
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700369 spin_lock(&list_lock);
370 list_del(&scsi_dh->list);
371 spin_unlock(&list_lock);
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700372 printk(KERN_INFO "%s: device handler unregistered\n", scsi_dh->name);
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700373
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700374 return SCSI_DH_OK;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700375}
376EXPORT_SYMBOL_GPL(scsi_unregister_device_handler);
377
378/*
379 * scsi_dh_activate - activate the path associated with the scsi_device
380 * corresponding to the given request queue.
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -0700381 * Returns immediately without waiting for activation to be completed.
382 * @q - Request queue that is associated with the scsi_device to be
383 * activated.
384 * @fn - Function to be called upon completion of the activation.
385 * Function fn is called with data (below) and the error code.
386 * Function fn may be called from the same calling context. So,
387 * do not hold the lock in the caller which may be needed in fn.
388 * @data - data passed to the function fn upon completion.
389 *
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700390 */
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -0700391int scsi_dh_activate(struct request_queue *q, activate_complete fn, void *data)
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700392{
393 int err = 0;
394 unsigned long flags;
395 struct scsi_device *sdev;
396 struct scsi_device_handler *scsi_dh = NULL;
Mike Snitzer0b839352011-04-08 15:05:36 -0400397 struct device *dev = NULL;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700398
399 spin_lock_irqsave(q->queue_lock, flags);
400 sdev = q->queuedata;
401 if (sdev && sdev->scsi_dh_data)
402 scsi_dh = sdev->scsi_dh_data->scsi_dh;
Mike Snitzer0b839352011-04-08 15:05:36 -0400403 dev = get_device(&sdev->sdev_gendev);
404 if (!scsi_dh || !dev ||
Menny Hamburgerdb422312010-12-16 14:57:07 -0500405 sdev->sdev_state == SDEV_CANCEL ||
406 sdev->sdev_state == SDEV_DEL)
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700407 err = SCSI_DH_NOSYS;
Menny Hamburgerdb422312010-12-16 14:57:07 -0500408 if (sdev->sdev_state == SDEV_OFFLINE)
409 err = SCSI_DH_DEV_OFFLINED;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700410 spin_unlock_irqrestore(q->queue_lock, flags);
411
Menny Hamburgerdb422312010-12-16 14:57:07 -0500412 if (err) {
413 if (fn)
414 fn(data, err);
Mike Snitzer0b839352011-04-08 15:05:36 -0400415 goto out;
Menny Hamburgerdb422312010-12-16 14:57:07 -0500416 }
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700417
418 if (scsi_dh->activate)
Chandra Seetharaman3ae31f62009-10-21 09:22:46 -0700419 err = scsi_dh->activate(sdev, fn, data);
Mike Snitzer0b839352011-04-08 15:05:36 -0400420out:
421 put_device(dev);
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700422 return err;
423}
424EXPORT_SYMBOL_GPL(scsi_dh_activate);
425
426/*
Chandra Seetharaman18ee70c2009-08-03 12:42:33 -0700427 * scsi_dh_set_params - set the parameters for the device as per the
428 * string specified in params.
429 * @q - Request queue that is associated with the scsi_device for
430 * which the parameters to be set.
431 * @params - parameters in the following format
432 * "no_of_params\0param1\0param2\0param3\0...\0"
433 * for example, string for 2 parameters with value 10 and 21
434 * is specified as "2\010\021\0".
435 */
436int scsi_dh_set_params(struct request_queue *q, const char *params)
437{
438 int err = -SCSI_DH_NOSYS;
439 unsigned long flags;
440 struct scsi_device *sdev;
441 struct scsi_device_handler *scsi_dh = NULL;
442
443 spin_lock_irqsave(q->queue_lock, flags);
444 sdev = q->queuedata;
445 if (sdev && sdev->scsi_dh_data)
446 scsi_dh = sdev->scsi_dh_data->scsi_dh;
447 if (scsi_dh && scsi_dh->set_params && get_device(&sdev->sdev_gendev))
448 err = 0;
449 spin_unlock_irqrestore(q->queue_lock, flags);
450
451 if (err)
452 return err;
453 err = scsi_dh->set_params(sdev, params);
454 put_device(&sdev->sdev_gendev);
455 return err;
456}
457EXPORT_SYMBOL_GPL(scsi_dh_set_params);
458
459/*
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700460 * scsi_dh_handler_exist - Return TRUE(1) if a device handler exists for
461 * the given name. FALSE(0) otherwise.
462 * @name - name of the device handler.
463 */
464int scsi_dh_handler_exist(const char *name)
465{
466 return (get_device_handler(name) != NULL);
467}
468EXPORT_SYMBOL_GPL(scsi_dh_handler_exist);
469
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700470/*
Hannes Reinecke2a9ab402011-08-24 10:51:14 +0200471 * scsi_dh_attach - Attach device handler
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700472 * @sdev - sdev the handler should be attached to
473 * @name - name of the handler to attach
474 */
475int scsi_dh_attach(struct request_queue *q, const char *name)
476{
477 unsigned long flags;
478 struct scsi_device *sdev;
479 struct scsi_device_handler *scsi_dh;
480 int err = 0;
481
482 scsi_dh = get_device_handler(name);
483 if (!scsi_dh)
484 return -EINVAL;
485
486 spin_lock_irqsave(q->queue_lock, flags);
487 sdev = q->queuedata;
488 if (!sdev || !get_device(&sdev->sdev_gendev))
489 err = -ENODEV;
490 spin_unlock_irqrestore(q->queue_lock, flags);
491
492 if (!err) {
493 err = scsi_dh_handler_attach(sdev, scsi_dh);
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700494 put_device(&sdev->sdev_gendev);
495 }
496 return err;
497}
498EXPORT_SYMBOL_GPL(scsi_dh_attach);
499
500/*
Hannes Reinecke2a9ab402011-08-24 10:51:14 +0200501 * scsi_dh_detach - Detach device handler
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700502 * @sdev - sdev the handler should be detached from
503 *
504 * This function will detach the device handler only
505 * if the sdev is not part of the internal list, ie
506 * if it has been attached manually.
507 */
508void scsi_dh_detach(struct request_queue *q)
509{
510 unsigned long flags;
511 struct scsi_device *sdev;
512 struct scsi_device_handler *scsi_dh = NULL;
513
514 spin_lock_irqsave(q->queue_lock, flags);
515 sdev = q->queuedata;
516 if (!sdev || !get_device(&sdev->sdev_gendev))
517 sdev = NULL;
518 spin_unlock_irqrestore(q->queue_lock, flags);
519
520 if (!sdev)
521 return;
522
523 if (sdev->scsi_dh_data) {
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700524 scsi_dh = sdev->scsi_dh_data->scsi_dh;
Chandra Seetharaman6c10db72009-06-26 19:30:06 -0700525 scsi_dh_handler_detach(sdev, scsi_dh);
Hannes Reineckeae11b1b2008-07-17 17:49:02 -0700526 }
527 put_device(&sdev->sdev_gendev);
528}
529EXPORT_SYMBOL_GPL(scsi_dh_detach);
530
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700531static struct notifier_block scsi_dh_nb = {
532 .notifier_call = scsi_dh_notifier
533};
534
535static int __init scsi_dh_init(void)
536{
537 int r;
538
Peter Jones940d7fa2011-01-06 15:38:24 -0500539 r = scsi_dev_info_add_list(SCSI_DEVINFO_DH, "SCSI Device Handler");
540 if (r)
541 return r;
542
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700543 r = bus_register_notifier(&scsi_bus_type, &scsi_dh_nb);
544
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700545 if (!r)
546 bus_for_each_dev(&scsi_bus_type, NULL, NULL,
547 scsi_dh_sysfs_attr_add);
548
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700549 return r;
550}
551
552static void __exit scsi_dh_exit(void)
553{
Hannes Reinecke4c05ae52008-07-17 16:52:57 -0700554 bus_for_each_dev(&scsi_bus_type, NULL, NULL,
555 scsi_dh_sysfs_attr_remove);
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700556 bus_unregister_notifier(&scsi_bus_type, &scsi_dh_nb);
Peter Jones940d7fa2011-01-06 15:38:24 -0500557 scsi_dev_info_remove_list(SCSI_DEVINFO_DH);
Hannes Reinecke765cbc62008-07-17 16:52:51 -0700558}
559
560module_init(scsi_dh_init);
561module_exit(scsi_dh_exit);
562
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700563MODULE_DESCRIPTION("SCSI device handler");
564MODULE_AUTHOR("Chandra Seetharaman <sekharan@us.ibm.com>");
565MODULE_LICENSE("GPL");