2 * File...........: linux/drivers/s390/block/dasd.c
3 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
4 * Horst Hummel <Horst.Hummel@de.ibm.com>
5 * Carsten Otte <Cotte@de.ibm.com>
6 * Martin Schwidefsky <schwidefsky@de.ibm.com>
7 * Bugreports.to..: <Linux390@de.ibm.com>
8 * Copyright IBM Corp. 1999, 2009
11 #define KMSG_COMPONENT "dasd"
12 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
14 #include <linux/kernel_stat.h>
15 #include <linux/kmod.h>
16 #include <linux/init.h>
17 #include <linux/interrupt.h>
18 #include <linux/ctype.h>
19 #include <linux/major.h>
20 #include <linux/slab.h>
21 #include <linux/buffer_head.h>
22 #include <linux/hdreg.h>
23 #include <linux/async.h>
24 #include <linux/mutex.h>
26 #include <asm/ccwdev.h>
27 #include <asm/ebcdic.h>
28 #include <asm/idals.h>
33 #define PRINTK_HEADER "dasd:"
37 * SECTION: Constant definitions to be used within this file
39 #define DASD_CHANQ_MAX_SIZE 4
41 #define DASD_SLEEPON_START_TAG (void *) 1
42 #define DASD_SLEEPON_END_TAG (void *) 2
45 * SECTION: exported variables of dasd.c
47 debug_info_t
*dasd_debug_area
;
48 struct dasd_discipline
*dasd_diag_discipline_pointer
;
49 void dasd_int_handler(struct ccw_device
*, unsigned long, struct irb
*);
51 MODULE_AUTHOR("Holger Smolinski <Holger.Smolinski@de.ibm.com>");
52 MODULE_DESCRIPTION("Linux on S/390 DASD device driver,"
53 " Copyright 2000 IBM Corporation");
54 MODULE_SUPPORTED_DEVICE("dasd");
55 MODULE_LICENSE("GPL");
58 * SECTION: prototypes for static functions of dasd.c
60 static int dasd_alloc_queue(struct dasd_block
*);
61 static void dasd_setup_queue(struct dasd_block
*);
62 static void dasd_free_queue(struct dasd_block
*);
63 static void dasd_flush_request_queue(struct dasd_block
*);
64 static int dasd_flush_block_queue(struct dasd_block
*);
65 static void dasd_device_tasklet(struct dasd_device
*);
66 static void dasd_block_tasklet(struct dasd_block
*);
67 static void do_kick_device(struct work_struct
*);
68 static void do_restore_device(struct work_struct
*);
69 static void do_reload_device(struct work_struct
*);
70 static void dasd_return_cqr_cb(struct dasd_ccw_req
*, void *);
71 static void dasd_device_timeout(unsigned long);
72 static void dasd_block_timeout(unsigned long);
73 static void __dasd_process_erp(struct dasd_device
*, struct dasd_ccw_req
*);
76 * SECTION: Operations on the device structure.
78 static wait_queue_head_t dasd_init_waitq
;
79 static wait_queue_head_t dasd_flush_wq
;
80 static wait_queue_head_t generic_waitq
;
83 * Allocate memory for a new device structure.
85 struct dasd_device
*dasd_alloc_device(void)
87 struct dasd_device
*device
;
89 device
= kzalloc(sizeof(struct dasd_device
), GFP_ATOMIC
);
91 return ERR_PTR(-ENOMEM
);
93 /* Get two pages for normal block device operations. */
94 device
->ccw_mem
= (void *) __get_free_pages(GFP_ATOMIC
| GFP_DMA
, 1);
95 if (!device
->ccw_mem
) {
97 return ERR_PTR(-ENOMEM
);
99 /* Get one page for error recovery. */
100 device
->erp_mem
= (void *) get_zeroed_page(GFP_ATOMIC
| GFP_DMA
);
101 if (!device
->erp_mem
) {
102 free_pages((unsigned long) device
->ccw_mem
, 1);
104 return ERR_PTR(-ENOMEM
);
107 dasd_init_chunklist(&device
->ccw_chunks
, device
->ccw_mem
, PAGE_SIZE
*2);
108 dasd_init_chunklist(&device
->erp_chunks
, device
->erp_mem
, PAGE_SIZE
);
109 spin_lock_init(&device
->mem_lock
);
110 atomic_set(&device
->tasklet_scheduled
, 0);
111 tasklet_init(&device
->tasklet
,
112 (void (*)(unsigned long)) dasd_device_tasklet
,
113 (unsigned long) device
);
114 INIT_LIST_HEAD(&device
->ccw_queue
);
115 init_timer(&device
->timer
);
116 device
->timer
.function
= dasd_device_timeout
;
117 device
->timer
.data
= (unsigned long) device
;
118 INIT_WORK(&device
->kick_work
, do_kick_device
);
119 INIT_WORK(&device
->restore_device
, do_restore_device
);
120 INIT_WORK(&device
->reload_device
, do_reload_device
);
121 device
->state
= DASD_STATE_NEW
;
122 device
->target
= DASD_STATE_NEW
;
123 mutex_init(&device
->state_mutex
);
129 * Free memory of a device structure.
131 void dasd_free_device(struct dasd_device
*device
)
133 kfree(device
->private);
134 free_page((unsigned long) device
->erp_mem
);
135 free_pages((unsigned long) device
->ccw_mem
, 1);
140 * Allocate memory for a new device structure.
142 struct dasd_block
*dasd_alloc_block(void)
144 struct dasd_block
*block
;
146 block
= kzalloc(sizeof(*block
), GFP_ATOMIC
);
148 return ERR_PTR(-ENOMEM
);
149 /* open_count = 0 means device online but not in use */
150 atomic_set(&block
->open_count
, -1);
152 spin_lock_init(&block
->request_queue_lock
);
153 atomic_set(&block
->tasklet_scheduled
, 0);
154 tasklet_init(&block
->tasklet
,
155 (void (*)(unsigned long)) dasd_block_tasklet
,
156 (unsigned long) block
);
157 INIT_LIST_HEAD(&block
->ccw_queue
);
158 spin_lock_init(&block
->queue_lock
);
159 init_timer(&block
->timer
);
160 block
->timer
.function
= dasd_block_timeout
;
161 block
->timer
.data
= (unsigned long) block
;
167 * Free memory of a device structure.
169 void dasd_free_block(struct dasd_block
*block
)
175 * Make a new device known to the system.
177 static int dasd_state_new_to_known(struct dasd_device
*device
)
182 * As long as the device is not in state DASD_STATE_NEW we want to
183 * keep the reference count > 0.
185 dasd_get_device(device
);
188 rc
= dasd_alloc_queue(device
->block
);
190 dasd_put_device(device
);
194 device
->state
= DASD_STATE_KNOWN
;
199 * Let the system forget about a device.
201 static int dasd_state_known_to_new(struct dasd_device
*device
)
203 /* Disable extended error reporting for this device. */
204 dasd_eer_disable(device
);
205 /* Forget the discipline information. */
206 if (device
->discipline
) {
207 if (device
->discipline
->uncheck_device
)
208 device
->discipline
->uncheck_device(device
);
209 module_put(device
->discipline
->owner
);
211 device
->discipline
= NULL
;
212 if (device
->base_discipline
)
213 module_put(device
->base_discipline
->owner
);
214 device
->base_discipline
= NULL
;
215 device
->state
= DASD_STATE_NEW
;
218 dasd_free_queue(device
->block
);
220 /* Give up reference we took in dasd_state_new_to_known. */
221 dasd_put_device(device
);
226 * Request the irq line for the device.
228 static int dasd_state_known_to_basic(struct dasd_device
*device
)
232 /* Allocate and register gendisk structure. */
234 rc
= dasd_gendisk_alloc(device
->block
);
238 /* register 'device' debug area, used for all DBF_DEV_XXX calls */
239 device
->debug_area
= debug_register(dev_name(&device
->cdev
->dev
), 4, 1,
241 debug_register_view(device
->debug_area
, &debug_sprintf_view
);
242 debug_set_level(device
->debug_area
, DBF_WARNING
);
243 DBF_DEV_EVENT(DBF_EMERG
, device
, "%s", "debug area created");
245 device
->state
= DASD_STATE_BASIC
;
250 * Release the irq line for the device. Terminate any running i/o.
252 static int dasd_state_basic_to_known(struct dasd_device
*device
)
256 dasd_gendisk_free(device
->block
);
257 dasd_block_clear_timer(device
->block
);
259 rc
= dasd_flush_device_queue(device
);
262 dasd_device_clear_timer(device
);
264 DBF_DEV_EVENT(DBF_EMERG
, device
, "%p debug area deleted", device
);
265 if (device
->debug_area
!= NULL
) {
266 debug_unregister(device
->debug_area
);
267 device
->debug_area
= NULL
;
269 device
->state
= DASD_STATE_KNOWN
;
274 * Do the initial analysis. The do_analysis function may return
275 * -EAGAIN in which case the device keeps the state DASD_STATE_BASIC
276 * until the discipline decides to continue the startup sequence
277 * by calling the function dasd_change_state. The eckd disciplines
278 * uses this to start a ccw that detects the format. The completion
279 * interrupt for this detection ccw uses the kernel event daemon to
280 * trigger the call to dasd_change_state. All this is done in the
281 * discipline code, see dasd_eckd.c.
282 * After the analysis ccw is done (do_analysis returned 0) the block
284 * In case the analysis returns an error, the device setup is stopped
285 * (a fake disk was already added to allow formatting).
287 static int dasd_state_basic_to_ready(struct dasd_device
*device
)
290 struct dasd_block
*block
;
293 block
= device
->block
;
294 /* make disk known with correct capacity */
296 if (block
->base
->discipline
->do_analysis
!= NULL
)
297 rc
= block
->base
->discipline
->do_analysis(block
);
300 device
->state
= DASD_STATE_UNFMT
;
303 dasd_setup_queue(block
);
304 set_capacity(block
->gdp
,
305 block
->blocks
<< block
->s2b_shift
);
306 device
->state
= DASD_STATE_READY
;
307 rc
= dasd_scan_partitions(block
);
309 device
->state
= DASD_STATE_BASIC
;
311 device
->state
= DASD_STATE_READY
;
317 * Remove device from block device layer. Destroy dirty buffers.
318 * Forget format information. Check if the target level is basic
319 * and if it is create fake disk for formatting.
321 static int dasd_state_ready_to_basic(struct dasd_device
*device
)
325 device
->state
= DASD_STATE_BASIC
;
327 struct dasd_block
*block
= device
->block
;
328 rc
= dasd_flush_block_queue(block
);
330 device
->state
= DASD_STATE_READY
;
333 dasd_flush_request_queue(block
);
334 dasd_destroy_partitions(block
);
337 block
->s2b_shift
= 0;
345 static int dasd_state_unfmt_to_basic(struct dasd_device
*device
)
347 device
->state
= DASD_STATE_BASIC
;
352 * Make the device online and schedule the bottom half to start
353 * the requeueing of requests from the linux request queue to the
357 dasd_state_ready_to_online(struct dasd_device
* device
)
360 struct gendisk
*disk
;
361 struct disk_part_iter piter
;
362 struct hd_struct
*part
;
364 if (device
->discipline
->ready_to_online
) {
365 rc
= device
->discipline
->ready_to_online(device
);
369 device
->state
= DASD_STATE_ONLINE
;
371 dasd_schedule_block_bh(device
->block
);
372 if ((device
->features
& DASD_FEATURE_USERAW
)) {
373 disk
= device
->block
->gdp
;
374 kobject_uevent(&disk_to_dev(disk
)->kobj
, KOBJ_CHANGE
);
377 disk
= device
->block
->bdev
->bd_disk
;
378 disk_part_iter_init(&piter
, disk
, DISK_PITER_INCL_PART0
);
379 while ((part
= disk_part_iter_next(&piter
)))
380 kobject_uevent(&part_to_dev(part
)->kobj
, KOBJ_CHANGE
);
381 disk_part_iter_exit(&piter
);
387 * Stop the requeueing of requests again.
389 static int dasd_state_online_to_ready(struct dasd_device
*device
)
392 struct gendisk
*disk
;
393 struct disk_part_iter piter
;
394 struct hd_struct
*part
;
396 if (device
->discipline
->online_to_ready
) {
397 rc
= device
->discipline
->online_to_ready(device
);
401 device
->state
= DASD_STATE_READY
;
402 if (device
->block
&& !(device
->features
& DASD_FEATURE_USERAW
)) {
403 disk
= device
->block
->bdev
->bd_disk
;
404 disk_part_iter_init(&piter
, disk
, DISK_PITER_INCL_PART0
);
405 while ((part
= disk_part_iter_next(&piter
)))
406 kobject_uevent(&part_to_dev(part
)->kobj
, KOBJ_CHANGE
);
407 disk_part_iter_exit(&piter
);
413 * Device startup state changes.
415 static int dasd_increase_state(struct dasd_device
*device
)
420 if (device
->state
== DASD_STATE_NEW
&&
421 device
->target
>= DASD_STATE_KNOWN
)
422 rc
= dasd_state_new_to_known(device
);
425 device
->state
== DASD_STATE_KNOWN
&&
426 device
->target
>= DASD_STATE_BASIC
)
427 rc
= dasd_state_known_to_basic(device
);
430 device
->state
== DASD_STATE_BASIC
&&
431 device
->target
>= DASD_STATE_READY
)
432 rc
= dasd_state_basic_to_ready(device
);
435 device
->state
== DASD_STATE_UNFMT
&&
436 device
->target
> DASD_STATE_UNFMT
)
440 device
->state
== DASD_STATE_READY
&&
441 device
->target
>= DASD_STATE_ONLINE
)
442 rc
= dasd_state_ready_to_online(device
);
448 * Device shutdown state changes.
450 static int dasd_decrease_state(struct dasd_device
*device
)
455 if (device
->state
== DASD_STATE_ONLINE
&&
456 device
->target
<= DASD_STATE_READY
)
457 rc
= dasd_state_online_to_ready(device
);
460 device
->state
== DASD_STATE_READY
&&
461 device
->target
<= DASD_STATE_BASIC
)
462 rc
= dasd_state_ready_to_basic(device
);
465 device
->state
== DASD_STATE_UNFMT
&&
466 device
->target
<= DASD_STATE_BASIC
)
467 rc
= dasd_state_unfmt_to_basic(device
);
470 device
->state
== DASD_STATE_BASIC
&&
471 device
->target
<= DASD_STATE_KNOWN
)
472 rc
= dasd_state_basic_to_known(device
);
475 device
->state
== DASD_STATE_KNOWN
&&
476 device
->target
<= DASD_STATE_NEW
)
477 rc
= dasd_state_known_to_new(device
);
483 * This is the main startup/shutdown routine.
485 static void dasd_change_state(struct dasd_device
*device
)
489 if (device
->state
== device
->target
)
490 /* Already where we want to go today... */
492 if (device
->state
< device
->target
)
493 rc
= dasd_increase_state(device
);
495 rc
= dasd_decrease_state(device
);
499 device
->target
= device
->state
;
501 if (device
->state
== device
->target
)
502 wake_up(&dasd_init_waitq
);
504 /* let user-space know that the device status changed */
505 kobject_uevent(&device
->cdev
->dev
.kobj
, KOBJ_CHANGE
);
509 * Kick starter for devices that did not complete the startup/shutdown
510 * procedure or were sleeping because of a pending state.
511 * dasd_kick_device will schedule a call do do_kick_device to the kernel
514 static void do_kick_device(struct work_struct
*work
)
516 struct dasd_device
*device
= container_of(work
, struct dasd_device
, kick_work
);
517 mutex_lock(&device
->state_mutex
);
518 dasd_change_state(device
);
519 mutex_unlock(&device
->state_mutex
);
520 dasd_schedule_device_bh(device
);
521 dasd_put_device(device
);
524 void dasd_kick_device(struct dasd_device
*device
)
526 dasd_get_device(device
);
527 /* queue call to dasd_kick_device to the kernel event daemon. */
528 schedule_work(&device
->kick_work
);
532 * dasd_reload_device will schedule a call do do_reload_device to the kernel
535 static void do_reload_device(struct work_struct
*work
)
537 struct dasd_device
*device
= container_of(work
, struct dasd_device
,
539 device
->discipline
->reload(device
);
540 dasd_put_device(device
);
543 void dasd_reload_device(struct dasd_device
*device
)
545 dasd_get_device(device
);
546 /* queue call to dasd_reload_device to the kernel event daemon. */
547 schedule_work(&device
->reload_device
);
549 EXPORT_SYMBOL(dasd_reload_device
);
552 * dasd_restore_device will schedule a call do do_restore_device to the kernel
555 static void do_restore_device(struct work_struct
*work
)
557 struct dasd_device
*device
= container_of(work
, struct dasd_device
,
559 device
->cdev
->drv
->restore(device
->cdev
);
560 dasd_put_device(device
);
563 void dasd_restore_device(struct dasd_device
*device
)
565 dasd_get_device(device
);
566 /* queue call to dasd_restore_device to the kernel event daemon. */
567 schedule_work(&device
->restore_device
);
571 * Set the target state for a device and starts the state change.
573 void dasd_set_target_state(struct dasd_device
*device
, int target
)
575 dasd_get_device(device
);
576 mutex_lock(&device
->state_mutex
);
577 /* If we are in probeonly mode stop at DASD_STATE_READY. */
578 if (dasd_probeonly
&& target
> DASD_STATE_READY
)
579 target
= DASD_STATE_READY
;
580 if (device
->target
!= target
) {
581 if (device
->state
== target
)
582 wake_up(&dasd_init_waitq
);
583 device
->target
= target
;
585 if (device
->state
!= device
->target
)
586 dasd_change_state(device
);
587 mutex_unlock(&device
->state_mutex
);
588 dasd_put_device(device
);
592 * Enable devices with device numbers in [from..to].
594 static inline int _wait_for_device(struct dasd_device
*device
)
596 return (device
->state
== device
->target
);
599 void dasd_enable_device(struct dasd_device
*device
)
601 dasd_set_target_state(device
, DASD_STATE_ONLINE
);
602 if (device
->state
<= DASD_STATE_KNOWN
)
603 /* No discipline for device found. */
604 dasd_set_target_state(device
, DASD_STATE_NEW
);
605 /* Now wait for the devices to come up. */
606 wait_event(dasd_init_waitq
, _wait_for_device(device
));
610 * SECTION: device operation (interrupt handler, start i/o, term i/o ...)
612 #ifdef CONFIG_DASD_PROFILE
614 struct dasd_profile_info_t dasd_global_profile
;
615 unsigned int dasd_profile_level
= DASD_PROFILE_OFF
;
618 * Increments counter in global and local profiling structures.
620 #define dasd_profile_counter(value, counter, block) \
623 for (index = 0; index < 31 && value >> (2+index); index++); \
624 dasd_global_profile.counter[index]++; \
625 block->profile.counter[index]++; \
629 * Add profiling information for cqr before execution.
631 static void dasd_profile_start(struct dasd_block
*block
,
632 struct dasd_ccw_req
*cqr
,
636 unsigned int counter
;
638 if (dasd_profile_level
!= DASD_PROFILE_ON
)
641 /* count the length of the chanq for statistics */
643 list_for_each(l
, &block
->ccw_queue
)
646 dasd_global_profile
.dasd_io_nr_req
[counter
]++;
647 block
->profile
.dasd_io_nr_req
[counter
]++;
651 * Add profiling information for cqr after execution.
653 static void dasd_profile_end(struct dasd_block
*block
,
654 struct dasd_ccw_req
*cqr
,
657 long strtime
, irqtime
, endtime
, tottime
; /* in microseconds */
658 long tottimeps
, sectors
;
660 if (dasd_profile_level
!= DASD_PROFILE_ON
)
663 sectors
= blk_rq_sectors(req
);
664 if (!cqr
->buildclk
|| !cqr
->startclk
||
665 !cqr
->stopclk
|| !cqr
->endclk
||
669 strtime
= ((cqr
->startclk
- cqr
->buildclk
) >> 12);
670 irqtime
= ((cqr
->stopclk
- cqr
->startclk
) >> 12);
671 endtime
= ((cqr
->endclk
- cqr
->stopclk
) >> 12);
672 tottime
= ((cqr
->endclk
- cqr
->buildclk
) >> 12);
673 tottimeps
= tottime
/ sectors
;
675 if (!dasd_global_profile
.dasd_io_reqs
)
676 memset(&dasd_global_profile
, 0,
677 sizeof(struct dasd_profile_info_t
));
678 dasd_global_profile
.dasd_io_reqs
++;
679 dasd_global_profile
.dasd_io_sects
+= sectors
;
681 if (!block
->profile
.dasd_io_reqs
)
682 memset(&block
->profile
, 0,
683 sizeof(struct dasd_profile_info_t
));
684 block
->profile
.dasd_io_reqs
++;
685 block
->profile
.dasd_io_sects
+= sectors
;
687 dasd_profile_counter(sectors
, dasd_io_secs
, block
);
688 dasd_profile_counter(tottime
, dasd_io_times
, block
);
689 dasd_profile_counter(tottimeps
, dasd_io_timps
, block
);
690 dasd_profile_counter(strtime
, dasd_io_time1
, block
);
691 dasd_profile_counter(irqtime
, dasd_io_time2
, block
);
692 dasd_profile_counter(irqtime
/ sectors
, dasd_io_time2ps
, block
);
693 dasd_profile_counter(endtime
, dasd_io_time3
, block
);
696 #define dasd_profile_start(block, cqr, req) do {} while (0)
697 #define dasd_profile_end(block, cqr, req) do {} while (0)
698 #endif /* CONFIG_DASD_PROFILE */
701 * Allocate memory for a channel program with 'cplength' channel
702 * command words and 'datasize' additional space. There are two
703 * variantes: 1) dasd_kmalloc_request uses kmalloc to get the needed
704 * memory and 2) dasd_smalloc_request uses the static ccw memory
705 * that gets allocated for each device.
707 struct dasd_ccw_req
*dasd_kmalloc_request(int magic
, int cplength
,
709 struct dasd_device
*device
)
711 struct dasd_ccw_req
*cqr
;
714 BUG_ON(datasize
> PAGE_SIZE
||
715 (cplength
*sizeof(struct ccw1
)) > PAGE_SIZE
);
717 cqr
= kzalloc(sizeof(struct dasd_ccw_req
), GFP_ATOMIC
);
719 return ERR_PTR(-ENOMEM
);
722 cqr
->cpaddr
= kcalloc(cplength
, sizeof(struct ccw1
),
723 GFP_ATOMIC
| GFP_DMA
);
724 if (cqr
->cpaddr
== NULL
) {
726 return ERR_PTR(-ENOMEM
);
731 cqr
->data
= kzalloc(datasize
, GFP_ATOMIC
| GFP_DMA
);
732 if (cqr
->data
== NULL
) {
735 return ERR_PTR(-ENOMEM
);
739 set_bit(DASD_CQR_FLAGS_USE_ERP
, &cqr
->flags
);
740 dasd_get_device(device
);
744 struct dasd_ccw_req
*dasd_smalloc_request(int magic
, int cplength
,
746 struct dasd_device
*device
)
749 struct dasd_ccw_req
*cqr
;
753 size
= (sizeof(struct dasd_ccw_req
) + 7L) & -8L;
755 size
+= cplength
* sizeof(struct ccw1
);
758 spin_lock_irqsave(&device
->mem_lock
, flags
);
759 cqr
= (struct dasd_ccw_req
*)
760 dasd_alloc_chunk(&device
->ccw_chunks
, size
);
761 spin_unlock_irqrestore(&device
->mem_lock
, flags
);
763 return ERR_PTR(-ENOMEM
);
764 memset(cqr
, 0, sizeof(struct dasd_ccw_req
));
765 data
= (char *) cqr
+ ((sizeof(struct dasd_ccw_req
) + 7L) & -8L);
768 cqr
->cpaddr
= (struct ccw1
*) data
;
769 data
+= cplength
*sizeof(struct ccw1
);
770 memset(cqr
->cpaddr
, 0, cplength
*sizeof(struct ccw1
));
775 memset(cqr
->data
, 0, datasize
);
778 set_bit(DASD_CQR_FLAGS_USE_ERP
, &cqr
->flags
);
779 dasd_get_device(device
);
784 * Free memory of a channel program. This function needs to free all the
785 * idal lists that might have been created by dasd_set_cda and the
786 * struct dasd_ccw_req itself.
788 void dasd_kfree_request(struct dasd_ccw_req
*cqr
, struct dasd_device
*device
)
793 /* Clear any idals used for the request. */
796 clear_normalized_cda(ccw
);
797 } while (ccw
++->flags
& (CCW_FLAG_CC
| CCW_FLAG_DC
));
802 dasd_put_device(device
);
805 void dasd_sfree_request(struct dasd_ccw_req
*cqr
, struct dasd_device
*device
)
809 spin_lock_irqsave(&device
->mem_lock
, flags
);
810 dasd_free_chunk(&device
->ccw_chunks
, cqr
);
811 spin_unlock_irqrestore(&device
->mem_lock
, flags
);
812 dasd_put_device(device
);
816 * Check discipline magic in cqr.
818 static inline int dasd_check_cqr(struct dasd_ccw_req
*cqr
)
820 struct dasd_device
*device
;
824 device
= cqr
->startdev
;
825 if (strncmp((char *) &cqr
->magic
, device
->discipline
->ebcname
, 4)) {
826 DBF_DEV_EVENT(DBF_WARNING
, device
,
827 " dasd_ccw_req 0x%08x magic doesn't match"
828 " discipline 0x%08x",
830 *(unsigned int *) device
->discipline
->name
);
837 * Terminate the current i/o and set the request to clear_pending.
838 * Timer keeps device runnig.
839 * ccw_device_clear can fail if the i/o subsystem
842 int dasd_term_IO(struct dasd_ccw_req
*cqr
)
844 struct dasd_device
*device
;
846 char errorstring
[ERRORLENGTH
];
849 rc
= dasd_check_cqr(cqr
);
853 device
= (struct dasd_device
*) cqr
->startdev
;
854 while ((retries
< 5) && (cqr
->status
== DASD_CQR_IN_IO
)) {
855 rc
= ccw_device_clear(device
->cdev
, (long) cqr
);
857 case 0: /* termination successful */
858 cqr
->status
= DASD_CQR_CLEAR_PENDING
;
859 cqr
->stopclk
= get_clock();
861 DBF_DEV_EVENT(DBF_DEBUG
, device
,
862 "terminate cqr %p successful",
866 DBF_DEV_EVENT(DBF_ERR
, device
, "%s",
867 "device gone, retry");
870 DBF_DEV_EVENT(DBF_ERR
, device
, "%s",
875 DBF_DEV_EVENT(DBF_ERR
, device
, "%s",
876 "device busy, retry later");
879 /* internal error 10 - unknown rc*/
880 snprintf(errorstring
, ERRORLENGTH
, "10 %d", rc
);
881 dev_err(&device
->cdev
->dev
, "An error occurred in the "
882 "DASD device driver, reason=%s\n", errorstring
);
888 dasd_schedule_device_bh(device
);
893 * Start the i/o. This start_IO can fail if the channel is really busy.
894 * In that case set up a timer to start the request later.
896 int dasd_start_IO(struct dasd_ccw_req
*cqr
)
898 struct dasd_device
*device
;
900 char errorstring
[ERRORLENGTH
];
903 rc
= dasd_check_cqr(cqr
);
908 device
= (struct dasd_device
*) cqr
->startdev
;
910 test_bit(DASD_FLAG_LOCK_STOLEN
, &cqr
->block
->base
->flags
)) ||
911 test_bit(DASD_FLAG_LOCK_STOLEN
, &device
->flags
)) &&
912 !test_bit(DASD_CQR_ALLOW_SLOCK
, &cqr
->flags
)) {
913 DBF_DEV_EVENT(DBF_DEBUG
, device
, "start_IO: return request %p "
914 "because of stolen lock", cqr
);
915 cqr
->status
= DASD_CQR_ERROR
;
919 if (cqr
->retries
< 0) {
920 /* internal error 14 - start_IO run out of retries */
921 sprintf(errorstring
, "14 %p", cqr
);
922 dev_err(&device
->cdev
->dev
, "An error occurred in the DASD "
923 "device driver, reason=%s\n", errorstring
);
924 cqr
->status
= DASD_CQR_ERROR
;
927 cqr
->startclk
= get_clock();
928 cqr
->starttime
= jiffies
;
930 if (!test_bit(DASD_CQR_VERIFY_PATH
, &cqr
->flags
)) {
931 cqr
->lpm
&= device
->path_data
.opm
;
933 cqr
->lpm
= device
->path_data
.opm
;
935 if (cqr
->cpmode
== 1) {
936 rc
= ccw_device_tm_start(device
->cdev
, cqr
->cpaddr
,
937 (long) cqr
, cqr
->lpm
);
939 rc
= ccw_device_start(device
->cdev
, cqr
->cpaddr
,
940 (long) cqr
, cqr
->lpm
, 0);
944 cqr
->status
= DASD_CQR_IN_IO
;
947 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s",
948 "start_IO: device busy, retry later");
951 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s",
952 "start_IO: request timeout, retry later");
955 /* -EACCES indicates that the request used only a subset of the
956 * available paths and all these paths are gone. If the lpm of
957 * this request was only a subset of the opm (e.g. the ppm) then
958 * we just do a retry with all available paths.
959 * If we already use the full opm, something is amiss, and we
960 * need a full path verification.
962 if (test_bit(DASD_CQR_VERIFY_PATH
, &cqr
->flags
)) {
963 DBF_DEV_EVENT(DBF_WARNING
, device
,
964 "start_IO: selected paths gone (%x)",
966 } else if (cqr
->lpm
!= device
->path_data
.opm
) {
967 cqr
->lpm
= device
->path_data
.opm
;
968 DBF_DEV_EVENT(DBF_DEBUG
, device
, "%s",
969 "start_IO: selected paths gone,"
970 " retry on all paths");
972 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s",
973 "start_IO: all paths in opm gone,"
974 " do path verification");
975 dasd_generic_last_path_gone(device
);
976 device
->path_data
.opm
= 0;
977 device
->path_data
.ppm
= 0;
978 device
->path_data
.npm
= 0;
979 device
->path_data
.tbvpm
=
980 ccw_device_get_path_mask(device
->cdev
);
984 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s",
985 "start_IO: -ENODEV device gone, retry");
988 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s",
989 "start_IO: -EIO device gone, retry");
992 /* most likely caused in power management context */
993 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s",
994 "start_IO: -EINVAL device currently "
998 /* internal error 11 - unknown rc */
999 snprintf(errorstring
, ERRORLENGTH
, "11 %d", rc
);
1000 dev_err(&device
->cdev
->dev
,
1001 "An error occurred in the DASD device driver, "
1002 "reason=%s\n", errorstring
);
1011 * Timeout function for dasd devices. This is used for different purposes
1012 * 1) missing interrupt handler for normal operation
1013 * 2) delayed start of request where start_IO failed with -EBUSY
1014 * 3) timeout for missing state change interrupts
1015 * The head of the ccw queue will have status DASD_CQR_IN_IO for 1),
1016 * DASD_CQR_QUEUED for 2) and 3).
1018 static void dasd_device_timeout(unsigned long ptr
)
1020 unsigned long flags
;
1021 struct dasd_device
*device
;
1023 device
= (struct dasd_device
*) ptr
;
1024 spin_lock_irqsave(get_ccwdev_lock(device
->cdev
), flags
);
1025 /* re-activate request queue */
1026 dasd_device_remove_stop_bits(device
, DASD_STOPPED_PENDING
);
1027 spin_unlock_irqrestore(get_ccwdev_lock(device
->cdev
), flags
);
1028 dasd_schedule_device_bh(device
);
1032 * Setup timeout for a device in jiffies.
1034 void dasd_device_set_timer(struct dasd_device
*device
, int expires
)
1037 del_timer(&device
->timer
);
1039 mod_timer(&device
->timer
, jiffies
+ expires
);
1043 * Clear timeout for a device.
1045 void dasd_device_clear_timer(struct dasd_device
*device
)
1047 del_timer(&device
->timer
);
1050 static void dasd_handle_killed_request(struct ccw_device
*cdev
,
1051 unsigned long intparm
)
1053 struct dasd_ccw_req
*cqr
;
1054 struct dasd_device
*device
;
1058 cqr
= (struct dasd_ccw_req
*) intparm
;
1059 if (cqr
->status
!= DASD_CQR_IN_IO
) {
1060 DBF_EVENT_DEVID(DBF_DEBUG
, cdev
,
1061 "invalid status in handle_killed_request: "
1062 "%02x", cqr
->status
);
1066 device
= dasd_device_from_cdev_locked(cdev
);
1067 if (IS_ERR(device
)) {
1068 DBF_EVENT_DEVID(DBF_DEBUG
, cdev
, "%s",
1069 "unable to get device from cdev");
1073 if (!cqr
->startdev
||
1074 device
!= cqr
->startdev
||
1075 strncmp(cqr
->startdev
->discipline
->ebcname
,
1076 (char *) &cqr
->magic
, 4)) {
1077 DBF_EVENT_DEVID(DBF_DEBUG
, cdev
, "%s",
1078 "invalid device in request");
1079 dasd_put_device(device
);
1083 /* Schedule request to be retried. */
1084 cqr
->status
= DASD_CQR_QUEUED
;
1086 dasd_device_clear_timer(device
);
1087 dasd_schedule_device_bh(device
);
1088 dasd_put_device(device
);
1091 void dasd_generic_handle_state_change(struct dasd_device
*device
)
1093 /* First of all start sense subsystem status request. */
1094 dasd_eer_snss(device
);
1096 dasd_device_remove_stop_bits(device
, DASD_STOPPED_PENDING
);
1097 dasd_schedule_device_bh(device
);
1099 dasd_schedule_block_bh(device
->block
);
1103 * Interrupt handler for "normal" ssch-io based dasd devices.
1105 void dasd_int_handler(struct ccw_device
*cdev
, unsigned long intparm
,
1108 struct dasd_ccw_req
*cqr
, *next
;
1109 struct dasd_device
*device
;
1110 unsigned long long now
;
1113 kstat_cpu(smp_processor_id()).irqs
[IOINT_DAS
]++;
1115 switch (PTR_ERR(irb
)) {
1119 DBF_EVENT_DEVID(DBF_WARNING
, cdev
, "%s: "
1120 "request timed out\n", __func__
);
1123 DBF_EVENT_DEVID(DBF_WARNING
, cdev
, "%s: "
1124 "unknown error %ld\n", __func__
,
1127 dasd_handle_killed_request(cdev
, intparm
);
1132 cqr
= (struct dasd_ccw_req
*) intparm
;
1133 /* check for conditions that should be handled immediately */
1135 !(scsw_dstat(&irb
->scsw
) == (DEV_STAT_CHN_END
| DEV_STAT_DEV_END
) &&
1136 scsw_cstat(&irb
->scsw
) == 0)) {
1138 memcpy(&cqr
->irb
, irb
, sizeof(*irb
));
1139 device
= dasd_device_from_cdev_locked(cdev
);
1142 /* ignore unsolicited interrupts for DIAG discipline */
1143 if (device
->discipline
== dasd_diag_discipline_pointer
) {
1144 dasd_put_device(device
);
1147 device
->discipline
->dump_sense_dbf(device
, irb
, "int");
1148 if (device
->features
& DASD_FEATURE_ERPLOG
)
1149 device
->discipline
->dump_sense(device
, cqr
, irb
);
1150 device
->discipline
->check_for_device_change(device
, cqr
, irb
);
1151 dasd_put_device(device
);
1156 device
= (struct dasd_device
*) cqr
->startdev
;
1158 strncmp(device
->discipline
->ebcname
, (char *) &cqr
->magic
, 4)) {
1159 DBF_EVENT_DEVID(DBF_DEBUG
, cdev
, "%s",
1160 "invalid device in request");
1164 /* Check for clear pending */
1165 if (cqr
->status
== DASD_CQR_CLEAR_PENDING
&&
1166 scsw_fctl(&irb
->scsw
) & SCSW_FCTL_CLEAR_FUNC
) {
1167 cqr
->status
= DASD_CQR_CLEARED
;
1168 dasd_device_clear_timer(device
);
1169 wake_up(&dasd_flush_wq
);
1170 dasd_schedule_device_bh(device
);
1174 /* check status - the request might have been killed by dyn detach */
1175 if (cqr
->status
!= DASD_CQR_IN_IO
) {
1176 DBF_DEV_EVENT(DBF_DEBUG
, device
, "invalid status: bus_id %s, "
1177 "status %02x", dev_name(&cdev
->dev
), cqr
->status
);
1183 if (scsw_dstat(&irb
->scsw
) == (DEV_STAT_CHN_END
| DEV_STAT_DEV_END
) &&
1184 scsw_cstat(&irb
->scsw
) == 0) {
1185 /* request was completed successfully */
1186 cqr
->status
= DASD_CQR_SUCCESS
;
1188 /* Start first request on queue if possible -> fast_io. */
1189 if (cqr
->devlist
.next
!= &device
->ccw_queue
) {
1190 next
= list_entry(cqr
->devlist
.next
,
1191 struct dasd_ccw_req
, devlist
);
1193 } else { /* error */
1195 * If we don't want complex ERP for this request, then just
1196 * reset this and retry it in the fastpath
1198 if (!test_bit(DASD_CQR_FLAGS_USE_ERP
, &cqr
->flags
) &&
1200 if (cqr
->lpm
== device
->path_data
.opm
)
1201 DBF_DEV_EVENT(DBF_DEBUG
, device
,
1202 "default ERP in fastpath "
1203 "(%i retries left)",
1205 if (!test_bit(DASD_CQR_VERIFY_PATH
, &cqr
->flags
))
1206 cqr
->lpm
= device
->path_data
.opm
;
1207 cqr
->status
= DASD_CQR_QUEUED
;
1210 cqr
->status
= DASD_CQR_ERROR
;
1212 if (next
&& (next
->status
== DASD_CQR_QUEUED
) &&
1213 (!device
->stopped
)) {
1214 if (device
->discipline
->start_IO(next
) == 0)
1215 expires
= next
->expires
;
1218 dasd_device_set_timer(device
, expires
);
1220 dasd_device_clear_timer(device
);
1221 dasd_schedule_device_bh(device
);
1224 enum uc_todo
dasd_generic_uc_handler(struct ccw_device
*cdev
, struct irb
*irb
)
1226 struct dasd_device
*device
;
1228 device
= dasd_device_from_cdev_locked(cdev
);
1232 if (test_bit(DASD_FLAG_OFFLINE
, &device
->flags
) ||
1233 device
->state
!= device
->target
||
1234 !device
->discipline
->check_for_device_change
){
1235 dasd_put_device(device
);
1238 if (device
->discipline
->dump_sense_dbf
)
1239 device
->discipline
->dump_sense_dbf(device
, irb
, "uc");
1240 device
->discipline
->check_for_device_change(device
, NULL
, irb
);
1241 dasd_put_device(device
);
1243 return UC_TODO_RETRY
;
1245 EXPORT_SYMBOL_GPL(dasd_generic_uc_handler
);
1248 * If we have an error on a dasd_block layer request then we cancel
1249 * and return all further requests from the same dasd_block as well.
1251 static void __dasd_device_recovery(struct dasd_device
*device
,
1252 struct dasd_ccw_req
*ref_cqr
)
1254 struct list_head
*l
, *n
;
1255 struct dasd_ccw_req
*cqr
;
1258 * only requeue request that came from the dasd_block layer
1260 if (!ref_cqr
->block
)
1263 list_for_each_safe(l
, n
, &device
->ccw_queue
) {
1264 cqr
= list_entry(l
, struct dasd_ccw_req
, devlist
);
1265 if (cqr
->status
== DASD_CQR_QUEUED
&&
1266 ref_cqr
->block
== cqr
->block
) {
1267 cqr
->status
= DASD_CQR_CLEARED
;
1273 * Remove those ccw requests from the queue that need to be returned
1274 * to the upper layer.
1276 static void __dasd_device_process_ccw_queue(struct dasd_device
*device
,
1277 struct list_head
*final_queue
)
1279 struct list_head
*l
, *n
;
1280 struct dasd_ccw_req
*cqr
;
1282 /* Process request with final status. */
1283 list_for_each_safe(l
, n
, &device
->ccw_queue
) {
1284 cqr
= list_entry(l
, struct dasd_ccw_req
, devlist
);
1286 /* Stop list processing at the first non-final request. */
1287 if (cqr
->status
== DASD_CQR_QUEUED
||
1288 cqr
->status
== DASD_CQR_IN_IO
||
1289 cqr
->status
== DASD_CQR_CLEAR_PENDING
)
1291 if (cqr
->status
== DASD_CQR_ERROR
) {
1292 __dasd_device_recovery(device
, cqr
);
1294 /* Rechain finished requests to final queue */
1295 list_move_tail(&cqr
->devlist
, final_queue
);
1300 * the cqrs from the final queue are returned to the upper layer
1301 * by setting a dasd_block state and calling the callback function
1303 static void __dasd_device_process_final_queue(struct dasd_device
*device
,
1304 struct list_head
*final_queue
)
1306 struct list_head
*l
, *n
;
1307 struct dasd_ccw_req
*cqr
;
1308 struct dasd_block
*block
;
1309 void (*callback
)(struct dasd_ccw_req
*, void *data
);
1310 void *callback_data
;
1311 char errorstring
[ERRORLENGTH
];
1313 list_for_each_safe(l
, n
, final_queue
) {
1314 cqr
= list_entry(l
, struct dasd_ccw_req
, devlist
);
1315 list_del_init(&cqr
->devlist
);
1317 callback
= cqr
->callback
;
1318 callback_data
= cqr
->callback_data
;
1320 spin_lock_bh(&block
->queue_lock
);
1321 switch (cqr
->status
) {
1322 case DASD_CQR_SUCCESS
:
1323 cqr
->status
= DASD_CQR_DONE
;
1325 case DASD_CQR_ERROR
:
1326 cqr
->status
= DASD_CQR_NEED_ERP
;
1328 case DASD_CQR_CLEARED
:
1329 cqr
->status
= DASD_CQR_TERMINATED
;
1332 /* internal error 12 - wrong cqr status*/
1333 snprintf(errorstring
, ERRORLENGTH
, "12 %p %x02", cqr
, cqr
->status
);
1334 dev_err(&device
->cdev
->dev
,
1335 "An error occurred in the DASD device driver, "
1336 "reason=%s\n", errorstring
);
1339 if (cqr
->callback
!= NULL
)
1340 (callback
)(cqr
, callback_data
);
1342 spin_unlock_bh(&block
->queue_lock
);
1347 * Take a look at the first request on the ccw queue and check
1348 * if it reached its expire time. If so, terminate the IO.
1350 static void __dasd_device_check_expire(struct dasd_device
*device
)
1352 struct dasd_ccw_req
*cqr
;
1354 if (list_empty(&device
->ccw_queue
))
1356 cqr
= list_entry(device
->ccw_queue
.next
, struct dasd_ccw_req
, devlist
);
1357 if ((cqr
->status
== DASD_CQR_IN_IO
&& cqr
->expires
!= 0) &&
1358 (time_after_eq(jiffies
, cqr
->expires
+ cqr
->starttime
))) {
1359 if (device
->discipline
->term_IO(cqr
) != 0) {
1360 /* Hmpf, try again in 5 sec */
1361 dev_err(&device
->cdev
->dev
,
1362 "cqr %p timed out (%lus) but cannot be "
1363 "ended, retrying in 5 s\n",
1364 cqr
, (cqr
->expires
/HZ
));
1365 cqr
->expires
+= 5*HZ
;
1366 dasd_device_set_timer(device
, 5*HZ
);
1368 dev_err(&device
->cdev
->dev
,
1369 "cqr %p timed out (%lus), %i retries "
1370 "remaining\n", cqr
, (cqr
->expires
/HZ
),
1377 * Take a look at the first request on the ccw queue and check
1378 * if it needs to be started.
1380 static void __dasd_device_start_head(struct dasd_device
*device
)
1382 struct dasd_ccw_req
*cqr
;
1385 if (list_empty(&device
->ccw_queue
))
1387 cqr
= list_entry(device
->ccw_queue
.next
, struct dasd_ccw_req
, devlist
);
1388 if (cqr
->status
!= DASD_CQR_QUEUED
)
1390 /* when device is stopped, return request to previous layer
1391 * exception: only the disconnect or unresumed bits are set and the
1392 * cqr is a path verification request
1394 if (device
->stopped
&&
1395 !(!(device
->stopped
& ~(DASD_STOPPED_DC_WAIT
| DASD_UNRESUMED_PM
))
1396 && test_bit(DASD_CQR_VERIFY_PATH
, &cqr
->flags
))) {
1397 cqr
->intrc
= -EAGAIN
;
1398 cqr
->status
= DASD_CQR_CLEARED
;
1399 dasd_schedule_device_bh(device
);
1403 rc
= device
->discipline
->start_IO(cqr
);
1405 dasd_device_set_timer(device
, cqr
->expires
);
1406 else if (rc
== -EACCES
) {
1407 dasd_schedule_device_bh(device
);
1409 /* Hmpf, try again in 1/2 sec */
1410 dasd_device_set_timer(device
, 50);
1413 static void __dasd_device_check_path_events(struct dasd_device
*device
)
1417 if (device
->path_data
.tbvpm
) {
1418 if (device
->stopped
& ~(DASD_STOPPED_DC_WAIT
|
1421 rc
= device
->discipline
->verify_path(
1422 device
, device
->path_data
.tbvpm
);
1424 dasd_device_set_timer(device
, 50);
1426 device
->path_data
.tbvpm
= 0;
1431 * Go through all request on the dasd_device request queue,
1432 * terminate them on the cdev if necessary, and return them to the
1433 * submitting layer via callback.
1435 * Make sure that all 'submitting layers' still exist when
1436 * this function is called!. In other words, when 'device' is a base
1437 * device then all block layer requests must have been removed before
1438 * via dasd_flush_block_queue.
1440 int dasd_flush_device_queue(struct dasd_device
*device
)
1442 struct dasd_ccw_req
*cqr
, *n
;
1444 struct list_head flush_queue
;
1446 INIT_LIST_HEAD(&flush_queue
);
1447 spin_lock_irq(get_ccwdev_lock(device
->cdev
));
1449 list_for_each_entry_safe(cqr
, n
, &device
->ccw_queue
, devlist
) {
1450 /* Check status and move request to flush_queue */
1451 switch (cqr
->status
) {
1452 case DASD_CQR_IN_IO
:
1453 rc
= device
->discipline
->term_IO(cqr
);
1455 /* unable to terminate requeust */
1456 dev_err(&device
->cdev
->dev
,
1457 "Flushing the DASD request queue "
1458 "failed for request %p\n", cqr
);
1459 /* stop flush processing */
1463 case DASD_CQR_QUEUED
:
1464 cqr
->stopclk
= get_clock();
1465 cqr
->status
= DASD_CQR_CLEARED
;
1467 default: /* no need to modify the others */
1470 list_move_tail(&cqr
->devlist
, &flush_queue
);
1473 spin_unlock_irq(get_ccwdev_lock(device
->cdev
));
1475 * After this point all requests must be in state CLEAR_PENDING,
1476 * CLEARED, SUCCESS or ERROR. Now wait for CLEAR_PENDING to become
1477 * one of the others.
1479 list_for_each_entry_safe(cqr
, n
, &flush_queue
, devlist
)
1480 wait_event(dasd_flush_wq
,
1481 (cqr
->status
!= DASD_CQR_CLEAR_PENDING
));
1483 * Now set each request back to TERMINATED, DONE or NEED_ERP
1484 * and call the callback function of flushed requests
1486 __dasd_device_process_final_queue(device
, &flush_queue
);
1491 * Acquire the device lock and process queues for the device.
1493 static void dasd_device_tasklet(struct dasd_device
*device
)
1495 struct list_head final_queue
;
1497 atomic_set (&device
->tasklet_scheduled
, 0);
1498 INIT_LIST_HEAD(&final_queue
);
1499 spin_lock_irq(get_ccwdev_lock(device
->cdev
));
1500 /* Check expire time of first request on the ccw queue. */
1501 __dasd_device_check_expire(device
);
1502 /* find final requests on ccw queue */
1503 __dasd_device_process_ccw_queue(device
, &final_queue
);
1504 __dasd_device_check_path_events(device
);
1505 spin_unlock_irq(get_ccwdev_lock(device
->cdev
));
1506 /* Now call the callback function of requests with final status */
1507 __dasd_device_process_final_queue(device
, &final_queue
);
1508 spin_lock_irq(get_ccwdev_lock(device
->cdev
));
1509 /* Now check if the head of the ccw queue needs to be started. */
1510 __dasd_device_start_head(device
);
1511 spin_unlock_irq(get_ccwdev_lock(device
->cdev
));
1512 dasd_put_device(device
);
1516 * Schedules a call to dasd_tasklet over the device tasklet.
1518 void dasd_schedule_device_bh(struct dasd_device
*device
)
1520 /* Protect against rescheduling. */
1521 if (atomic_cmpxchg (&device
->tasklet_scheduled
, 0, 1) != 0)
1523 dasd_get_device(device
);
1524 tasklet_hi_schedule(&device
->tasklet
);
1527 void dasd_device_set_stop_bits(struct dasd_device
*device
, int bits
)
1529 device
->stopped
|= bits
;
1531 EXPORT_SYMBOL_GPL(dasd_device_set_stop_bits
);
1533 void dasd_device_remove_stop_bits(struct dasd_device
*device
, int bits
)
1535 device
->stopped
&= ~bits
;
1536 if (!device
->stopped
)
1537 wake_up(&generic_waitq
);
1539 EXPORT_SYMBOL_GPL(dasd_device_remove_stop_bits
);
1542 * Queue a request to the head of the device ccw_queue.
1543 * Start the I/O if possible.
1545 void dasd_add_request_head(struct dasd_ccw_req
*cqr
)
1547 struct dasd_device
*device
;
1548 unsigned long flags
;
1550 device
= cqr
->startdev
;
1551 spin_lock_irqsave(get_ccwdev_lock(device
->cdev
), flags
);
1552 cqr
->status
= DASD_CQR_QUEUED
;
1553 list_add(&cqr
->devlist
, &device
->ccw_queue
);
1554 /* let the bh start the request to keep them in order */
1555 dasd_schedule_device_bh(device
);
1556 spin_unlock_irqrestore(get_ccwdev_lock(device
->cdev
), flags
);
1560 * Queue a request to the tail of the device ccw_queue.
1561 * Start the I/O if possible.
1563 void dasd_add_request_tail(struct dasd_ccw_req
*cqr
)
1565 struct dasd_device
*device
;
1566 unsigned long flags
;
1568 device
= cqr
->startdev
;
1569 spin_lock_irqsave(get_ccwdev_lock(device
->cdev
), flags
);
1570 cqr
->status
= DASD_CQR_QUEUED
;
1571 list_add_tail(&cqr
->devlist
, &device
->ccw_queue
);
1572 /* let the bh start the request to keep them in order */
1573 dasd_schedule_device_bh(device
);
1574 spin_unlock_irqrestore(get_ccwdev_lock(device
->cdev
), flags
);
1578 * Wakeup helper for the 'sleep_on' functions.
1580 static void dasd_wakeup_cb(struct dasd_ccw_req
*cqr
, void *data
)
1582 spin_lock_irq(get_ccwdev_lock(cqr
->startdev
->cdev
));
1583 cqr
->callback_data
= DASD_SLEEPON_END_TAG
;
1584 spin_unlock_irq(get_ccwdev_lock(cqr
->startdev
->cdev
));
1585 wake_up(&generic_waitq
);
1588 static inline int _wait_for_wakeup(struct dasd_ccw_req
*cqr
)
1590 struct dasd_device
*device
;
1593 device
= cqr
->startdev
;
1594 spin_lock_irq(get_ccwdev_lock(device
->cdev
));
1595 rc
= (cqr
->callback_data
== DASD_SLEEPON_END_TAG
);
1596 spin_unlock_irq(get_ccwdev_lock(device
->cdev
));
1601 * checks if error recovery is necessary, returns 1 if yes, 0 otherwise.
1603 static int __dasd_sleep_on_erp(struct dasd_ccw_req
*cqr
)
1605 struct dasd_device
*device
;
1606 dasd_erp_fn_t erp_fn
;
1608 if (cqr
->status
== DASD_CQR_FILLED
)
1610 device
= cqr
->startdev
;
1611 if (test_bit(DASD_CQR_FLAGS_USE_ERP
, &cqr
->flags
)) {
1612 if (cqr
->status
== DASD_CQR_TERMINATED
) {
1613 device
->discipline
->handle_terminated_request(cqr
);
1616 if (cqr
->status
== DASD_CQR_NEED_ERP
) {
1617 erp_fn
= device
->discipline
->erp_action(cqr
);
1621 if (cqr
->status
== DASD_CQR_FAILED
)
1622 dasd_log_sense(cqr
, &cqr
->irb
);
1624 __dasd_process_erp(device
, cqr
);
1631 static int __dasd_sleep_on_loop_condition(struct dasd_ccw_req
*cqr
)
1633 if (test_bit(DASD_CQR_FLAGS_USE_ERP
, &cqr
->flags
)) {
1634 if (cqr
->refers
) /* erp is not done yet */
1636 return ((cqr
->status
!= DASD_CQR_DONE
) &&
1637 (cqr
->status
!= DASD_CQR_FAILED
));
1639 return (cqr
->status
== DASD_CQR_FILLED
);
1642 static int _dasd_sleep_on(struct dasd_ccw_req
*maincqr
, int interruptible
)
1644 struct dasd_device
*device
;
1646 struct list_head ccw_queue
;
1647 struct dasd_ccw_req
*cqr
;
1649 INIT_LIST_HEAD(&ccw_queue
);
1650 maincqr
->status
= DASD_CQR_FILLED
;
1651 device
= maincqr
->startdev
;
1652 list_add(&maincqr
->blocklist
, &ccw_queue
);
1653 for (cqr
= maincqr
; __dasd_sleep_on_loop_condition(cqr
);
1654 cqr
= list_first_entry(&ccw_queue
,
1655 struct dasd_ccw_req
, blocklist
)) {
1657 if (__dasd_sleep_on_erp(cqr
))
1659 if (cqr
->status
!= DASD_CQR_FILLED
) /* could be failed */
1661 if (test_bit(DASD_FLAG_LOCK_STOLEN
, &device
->flags
) &&
1662 !test_bit(DASD_CQR_ALLOW_SLOCK
, &cqr
->flags
)) {
1663 cqr
->status
= DASD_CQR_FAILED
;
1664 cqr
->intrc
= -EPERM
;
1667 /* Non-temporary stop condition will trigger fail fast */
1668 if (device
->stopped
& ~DASD_STOPPED_PENDING
&&
1669 test_bit(DASD_CQR_FLAGS_FAILFAST
, &cqr
->flags
) &&
1670 (!dasd_eer_enabled(device
))) {
1671 cqr
->status
= DASD_CQR_FAILED
;
1674 /* Don't try to start requests if device is stopped */
1675 if (interruptible
) {
1676 rc
= wait_event_interruptible(
1677 generic_waitq
, !(device
->stopped
));
1678 if (rc
== -ERESTARTSYS
) {
1679 cqr
->status
= DASD_CQR_FAILED
;
1680 maincqr
->intrc
= rc
;
1684 wait_event(generic_waitq
, !(device
->stopped
));
1686 cqr
->callback
= dasd_wakeup_cb
;
1687 cqr
->callback_data
= DASD_SLEEPON_START_TAG
;
1688 dasd_add_request_tail(cqr
);
1689 if (interruptible
) {
1690 rc
= wait_event_interruptible(
1691 generic_waitq
, _wait_for_wakeup(cqr
));
1692 if (rc
== -ERESTARTSYS
) {
1693 dasd_cancel_req(cqr
);
1694 /* wait (non-interruptible) for final status */
1695 wait_event(generic_waitq
,
1696 _wait_for_wakeup(cqr
));
1697 cqr
->status
= DASD_CQR_FAILED
;
1698 maincqr
->intrc
= rc
;
1702 wait_event(generic_waitq
, _wait_for_wakeup(cqr
));
1705 maincqr
->endclk
= get_clock();
1706 if ((maincqr
->status
!= DASD_CQR_DONE
) &&
1707 (maincqr
->intrc
!= -ERESTARTSYS
))
1708 dasd_log_sense(maincqr
, &maincqr
->irb
);
1709 if (maincqr
->status
== DASD_CQR_DONE
)
1711 else if (maincqr
->intrc
)
1712 rc
= maincqr
->intrc
;
1719 * Queue a request to the tail of the device ccw_queue and wait for
1722 int dasd_sleep_on(struct dasd_ccw_req
*cqr
)
1724 return _dasd_sleep_on(cqr
, 0);
1728 * Queue a request to the tail of the device ccw_queue and wait
1729 * interruptible for it's completion.
1731 int dasd_sleep_on_interruptible(struct dasd_ccw_req
*cqr
)
1733 return _dasd_sleep_on(cqr
, 1);
1737 * Whoa nelly now it gets really hairy. For some functions (e.g. steal lock
1738 * for eckd devices) the currently running request has to be terminated
1739 * and be put back to status queued, before the special request is added
1740 * to the head of the queue. Then the special request is waited on normally.
1742 static inline int _dasd_term_running_cqr(struct dasd_device
*device
)
1744 struct dasd_ccw_req
*cqr
;
1747 if (list_empty(&device
->ccw_queue
))
1749 cqr
= list_entry(device
->ccw_queue
.next
, struct dasd_ccw_req
, devlist
);
1750 rc
= device
->discipline
->term_IO(cqr
);
1753 * CQR terminated because a more important request is pending.
1754 * Undo decreasing of retry counter because this is
1755 * not an error case.
1761 int dasd_sleep_on_immediatly(struct dasd_ccw_req
*cqr
)
1763 struct dasd_device
*device
;
1766 device
= cqr
->startdev
;
1767 if (test_bit(DASD_FLAG_LOCK_STOLEN
, &device
->flags
) &&
1768 !test_bit(DASD_CQR_ALLOW_SLOCK
, &cqr
->flags
)) {
1769 cqr
->status
= DASD_CQR_FAILED
;
1770 cqr
->intrc
= -EPERM
;
1773 spin_lock_irq(get_ccwdev_lock(device
->cdev
));
1774 rc
= _dasd_term_running_cqr(device
);
1776 spin_unlock_irq(get_ccwdev_lock(device
->cdev
));
1779 cqr
->callback
= dasd_wakeup_cb
;
1780 cqr
->callback_data
= DASD_SLEEPON_START_TAG
;
1781 cqr
->status
= DASD_CQR_QUEUED
;
1782 list_add(&cqr
->devlist
, &device
->ccw_queue
);
1784 /* let the bh start the request to keep them in order */
1785 dasd_schedule_device_bh(device
);
1787 spin_unlock_irq(get_ccwdev_lock(device
->cdev
));
1789 wait_event(generic_waitq
, _wait_for_wakeup(cqr
));
1791 if (cqr
->status
== DASD_CQR_DONE
)
1793 else if (cqr
->intrc
)
1801 * Cancels a request that was started with dasd_sleep_on_req.
1802 * This is useful to timeout requests. The request will be
1803 * terminated if it is currently in i/o.
1804 * Returns 1 if the request has been terminated.
1805 * 0 if there was no need to terminate the request (not started yet)
1806 * negative error code if termination failed
1807 * Cancellation of a request is an asynchronous operation! The calling
1808 * function has to wait until the request is properly returned via callback.
1810 int dasd_cancel_req(struct dasd_ccw_req
*cqr
)
1812 struct dasd_device
*device
= cqr
->startdev
;
1813 unsigned long flags
;
1817 spin_lock_irqsave(get_ccwdev_lock(device
->cdev
), flags
);
1818 switch (cqr
->status
) {
1819 case DASD_CQR_QUEUED
:
1820 /* request was not started - just set to cleared */
1821 cqr
->status
= DASD_CQR_CLEARED
;
1823 case DASD_CQR_IN_IO
:
1824 /* request in IO - terminate IO and release again */
1825 rc
= device
->discipline
->term_IO(cqr
);
1827 dev_err(&device
->cdev
->dev
,
1828 "Cancelling request %p failed with rc=%d\n",
1831 cqr
->stopclk
= get_clock();
1834 default: /* already finished or clear pending - do nothing */
1837 spin_unlock_irqrestore(get_ccwdev_lock(device
->cdev
), flags
);
1838 dasd_schedule_device_bh(device
);
1844 * SECTION: Operations of the dasd_block layer.
1848 * Timeout function for dasd_block. This is used when the block layer
1849 * is waiting for something that may not come reliably, (e.g. a state
1852 static void dasd_block_timeout(unsigned long ptr
)
1854 unsigned long flags
;
1855 struct dasd_block
*block
;
1857 block
= (struct dasd_block
*) ptr
;
1858 spin_lock_irqsave(get_ccwdev_lock(block
->base
->cdev
), flags
);
1859 /* re-activate request queue */
1860 dasd_device_remove_stop_bits(block
->base
, DASD_STOPPED_PENDING
);
1861 spin_unlock_irqrestore(get_ccwdev_lock(block
->base
->cdev
), flags
);
1862 dasd_schedule_block_bh(block
);
1866 * Setup timeout for a dasd_block in jiffies.
1868 void dasd_block_set_timer(struct dasd_block
*block
, int expires
)
1871 del_timer(&block
->timer
);
1873 mod_timer(&block
->timer
, jiffies
+ expires
);
1877 * Clear timeout for a dasd_block.
1879 void dasd_block_clear_timer(struct dasd_block
*block
)
1881 del_timer(&block
->timer
);
1885 * Process finished error recovery ccw.
1887 static void __dasd_process_erp(struct dasd_device
*device
,
1888 struct dasd_ccw_req
*cqr
)
1890 dasd_erp_fn_t erp_fn
;
1892 if (cqr
->status
== DASD_CQR_DONE
)
1893 DBF_DEV_EVENT(DBF_NOTICE
, device
, "%s", "ERP successful");
1895 dev_err(&device
->cdev
->dev
, "ERP failed for the DASD\n");
1896 erp_fn
= device
->discipline
->erp_postaction(cqr
);
1901 * Fetch requests from the block device queue.
1903 static void __dasd_process_request_queue(struct dasd_block
*block
)
1905 struct request_queue
*queue
;
1906 struct request
*req
;
1907 struct dasd_ccw_req
*cqr
;
1908 struct dasd_device
*basedev
;
1909 unsigned long flags
;
1910 queue
= block
->request_queue
;
1911 basedev
= block
->base
;
1912 /* No queue ? Then there is nothing to do. */
1917 * We requeue request from the block device queue to the ccw
1918 * queue only in two states. In state DASD_STATE_READY the
1919 * partition detection is done and we need to requeue requests
1920 * for that. State DASD_STATE_ONLINE is normal block device
1923 if (basedev
->state
< DASD_STATE_READY
) {
1924 while ((req
= blk_fetch_request(block
->request_queue
)))
1925 __blk_end_request_all(req
, -EIO
);
1928 /* Now we try to fetch requests from the request queue */
1929 while ((req
= blk_peek_request(queue
))) {
1930 if (basedev
->features
& DASD_FEATURE_READONLY
&&
1931 rq_data_dir(req
) == WRITE
) {
1932 DBF_DEV_EVENT(DBF_ERR
, basedev
,
1933 "Rejecting write request %p",
1935 blk_start_request(req
);
1936 __blk_end_request_all(req
, -EIO
);
1939 cqr
= basedev
->discipline
->build_cp(basedev
, block
, req
);
1941 if (PTR_ERR(cqr
) == -EBUSY
)
1942 break; /* normal end condition */
1943 if (PTR_ERR(cqr
) == -ENOMEM
)
1944 break; /* terminate request queue loop */
1945 if (PTR_ERR(cqr
) == -EAGAIN
) {
1947 * The current request cannot be build right
1948 * now, we have to try later. If this request
1949 * is the head-of-queue we stop the device
1952 if (!list_empty(&block
->ccw_queue
))
1955 get_ccwdev_lock(basedev
->cdev
), flags
);
1956 dasd_device_set_stop_bits(basedev
,
1957 DASD_STOPPED_PENDING
);
1958 spin_unlock_irqrestore(
1959 get_ccwdev_lock(basedev
->cdev
), flags
);
1960 dasd_block_set_timer(block
, HZ
/2);
1963 DBF_DEV_EVENT(DBF_ERR
, basedev
,
1964 "CCW creation failed (rc=%ld) "
1967 blk_start_request(req
);
1968 __blk_end_request_all(req
, -EIO
);
1972 * Note: callback is set to dasd_return_cqr_cb in
1973 * __dasd_block_start_head to cover erp requests as well
1975 cqr
->callback_data
= (void *) req
;
1976 cqr
->status
= DASD_CQR_FILLED
;
1977 blk_start_request(req
);
1978 list_add_tail(&cqr
->blocklist
, &block
->ccw_queue
);
1979 dasd_profile_start(block
, cqr
, req
);
1983 static void __dasd_cleanup_cqr(struct dasd_ccw_req
*cqr
)
1985 struct request
*req
;
1989 req
= (struct request
*) cqr
->callback_data
;
1990 dasd_profile_end(cqr
->block
, cqr
, req
);
1991 status
= cqr
->block
->base
->discipline
->free_cp(cqr
, req
);
1993 error
= status
? status
: -EIO
;
1994 __blk_end_request_all(req
, error
);
1998 * Process ccw request queue.
2000 static void __dasd_process_block_ccw_queue(struct dasd_block
*block
,
2001 struct list_head
*final_queue
)
2003 struct list_head
*l
, *n
;
2004 struct dasd_ccw_req
*cqr
;
2005 dasd_erp_fn_t erp_fn
;
2006 unsigned long flags
;
2007 struct dasd_device
*base
= block
->base
;
2010 /* Process request with final status. */
2011 list_for_each_safe(l
, n
, &block
->ccw_queue
) {
2012 cqr
= list_entry(l
, struct dasd_ccw_req
, blocklist
);
2013 if (cqr
->status
!= DASD_CQR_DONE
&&
2014 cqr
->status
!= DASD_CQR_FAILED
&&
2015 cqr
->status
!= DASD_CQR_NEED_ERP
&&
2016 cqr
->status
!= DASD_CQR_TERMINATED
)
2019 if (cqr
->status
== DASD_CQR_TERMINATED
) {
2020 base
->discipline
->handle_terminated_request(cqr
);
2024 /* Process requests that may be recovered */
2025 if (cqr
->status
== DASD_CQR_NEED_ERP
) {
2026 erp_fn
= base
->discipline
->erp_action(cqr
);
2027 if (IS_ERR(erp_fn(cqr
)))
2032 /* log sense for fatal error */
2033 if (cqr
->status
== DASD_CQR_FAILED
) {
2034 dasd_log_sense(cqr
, &cqr
->irb
);
2037 /* First of all call extended error reporting. */
2038 if (dasd_eer_enabled(base
) &&
2039 cqr
->status
== DASD_CQR_FAILED
) {
2040 dasd_eer_write(base
, cqr
, DASD_EER_FATALERROR
);
2042 /* restart request */
2043 cqr
->status
= DASD_CQR_FILLED
;
2045 spin_lock_irqsave(get_ccwdev_lock(base
->cdev
), flags
);
2046 dasd_device_set_stop_bits(base
, DASD_STOPPED_QUIESCE
);
2047 spin_unlock_irqrestore(get_ccwdev_lock(base
->cdev
),
2052 /* Process finished ERP request. */
2054 __dasd_process_erp(base
, cqr
);
2058 /* Rechain finished requests to final queue */
2059 cqr
->endclk
= get_clock();
2060 list_move_tail(&cqr
->blocklist
, final_queue
);
2064 static void dasd_return_cqr_cb(struct dasd_ccw_req
*cqr
, void *data
)
2066 dasd_schedule_block_bh(cqr
->block
);
2069 static void __dasd_block_start_head(struct dasd_block
*block
)
2071 struct dasd_ccw_req
*cqr
;
2073 if (list_empty(&block
->ccw_queue
))
2075 /* We allways begin with the first requests on the queue, as some
2076 * of previously started requests have to be enqueued on a
2077 * dasd_device again for error recovery.
2079 list_for_each_entry(cqr
, &block
->ccw_queue
, blocklist
) {
2080 if (cqr
->status
!= DASD_CQR_FILLED
)
2082 if (test_bit(DASD_FLAG_LOCK_STOLEN
, &block
->base
->flags
) &&
2083 !test_bit(DASD_CQR_ALLOW_SLOCK
, &cqr
->flags
)) {
2084 cqr
->status
= DASD_CQR_FAILED
;
2085 cqr
->intrc
= -EPERM
;
2086 dasd_schedule_block_bh(block
);
2089 /* Non-temporary stop condition will trigger fail fast */
2090 if (block
->base
->stopped
& ~DASD_STOPPED_PENDING
&&
2091 test_bit(DASD_CQR_FLAGS_FAILFAST
, &cqr
->flags
) &&
2092 (!dasd_eer_enabled(block
->base
))) {
2093 cqr
->status
= DASD_CQR_FAILED
;
2094 dasd_schedule_block_bh(block
);
2097 /* Don't try to start requests if device is stopped */
2098 if (block
->base
->stopped
)
2101 /* just a fail safe check, should not happen */
2103 cqr
->startdev
= block
->base
;
2105 /* make sure that the requests we submit find their way back */
2106 cqr
->callback
= dasd_return_cqr_cb
;
2108 dasd_add_request_tail(cqr
);
2113 * Central dasd_block layer routine. Takes requests from the generic
2114 * block layer request queue, creates ccw requests, enqueues them on
2115 * a dasd_device and processes ccw requests that have been returned.
2117 static void dasd_block_tasklet(struct dasd_block
*block
)
2119 struct list_head final_queue
;
2120 struct list_head
*l
, *n
;
2121 struct dasd_ccw_req
*cqr
;
2123 atomic_set(&block
->tasklet_scheduled
, 0);
2124 INIT_LIST_HEAD(&final_queue
);
2125 spin_lock(&block
->queue_lock
);
2126 /* Finish off requests on ccw queue */
2127 __dasd_process_block_ccw_queue(block
, &final_queue
);
2128 spin_unlock(&block
->queue_lock
);
2129 /* Now call the callback function of requests with final status */
2130 spin_lock_irq(&block
->request_queue_lock
);
2131 list_for_each_safe(l
, n
, &final_queue
) {
2132 cqr
= list_entry(l
, struct dasd_ccw_req
, blocklist
);
2133 list_del_init(&cqr
->blocklist
);
2134 __dasd_cleanup_cqr(cqr
);
2136 spin_lock(&block
->queue_lock
);
2137 /* Get new request from the block device request queue */
2138 __dasd_process_request_queue(block
);
2139 /* Now check if the head of the ccw queue needs to be started. */
2140 __dasd_block_start_head(block
);
2141 spin_unlock(&block
->queue_lock
);
2142 spin_unlock_irq(&block
->request_queue_lock
);
2143 dasd_put_device(block
->base
);
2146 static void _dasd_wake_block_flush_cb(struct dasd_ccw_req
*cqr
, void *data
)
2148 wake_up(&dasd_flush_wq
);
2152 * Go through all request on the dasd_block request queue, cancel them
2153 * on the respective dasd_device, and return them to the generic
2156 static int dasd_flush_block_queue(struct dasd_block
*block
)
2158 struct dasd_ccw_req
*cqr
, *n
;
2160 struct list_head flush_queue
;
2162 INIT_LIST_HEAD(&flush_queue
);
2163 spin_lock_bh(&block
->queue_lock
);
2166 list_for_each_entry_safe(cqr
, n
, &block
->ccw_queue
, blocklist
) {
2167 /* if this request currently owned by a dasd_device cancel it */
2168 if (cqr
->status
>= DASD_CQR_QUEUED
)
2169 rc
= dasd_cancel_req(cqr
);
2172 /* Rechain request (including erp chain) so it won't be
2173 * touched by the dasd_block_tasklet anymore.
2174 * Replace the callback so we notice when the request
2175 * is returned from the dasd_device layer.
2177 cqr
->callback
= _dasd_wake_block_flush_cb
;
2178 for (i
= 0; cqr
!= NULL
; cqr
= cqr
->refers
, i
++)
2179 list_move_tail(&cqr
->blocklist
, &flush_queue
);
2181 /* moved more than one request - need to restart */
2184 spin_unlock_bh(&block
->queue_lock
);
2185 /* Now call the callback function of flushed requests */
2187 list_for_each_entry_safe(cqr
, n
, &flush_queue
, blocklist
) {
2188 wait_event(dasd_flush_wq
, (cqr
->status
< DASD_CQR_QUEUED
));
2189 /* Process finished ERP request. */
2191 spin_lock_bh(&block
->queue_lock
);
2192 __dasd_process_erp(block
->base
, cqr
);
2193 spin_unlock_bh(&block
->queue_lock
);
2194 /* restart list_for_xx loop since dasd_process_erp
2195 * might remove multiple elements */
2198 /* call the callback function */
2199 spin_lock_irq(&block
->request_queue_lock
);
2200 cqr
->endclk
= get_clock();
2201 list_del_init(&cqr
->blocklist
);
2202 __dasd_cleanup_cqr(cqr
);
2203 spin_unlock_irq(&block
->request_queue_lock
);
2209 * Schedules a call to dasd_tasklet over the device tasklet.
2211 void dasd_schedule_block_bh(struct dasd_block
*block
)
2213 /* Protect against rescheduling. */
2214 if (atomic_cmpxchg(&block
->tasklet_scheduled
, 0, 1) != 0)
2216 /* life cycle of block is bound to it's base device */
2217 dasd_get_device(block
->base
);
2218 tasklet_hi_schedule(&block
->tasklet
);
2223 * SECTION: external block device operations
2224 * (request queue handling, open, release, etc.)
2228 * Dasd request queue function. Called from ll_rw_blk.c
2230 static void do_dasd_request(struct request_queue
*queue
)
2232 struct dasd_block
*block
;
2234 block
= queue
->queuedata
;
2235 spin_lock(&block
->queue_lock
);
2236 /* Get new request from the block device request queue */
2237 __dasd_process_request_queue(block
);
2238 /* Now check if the head of the ccw queue needs to be started. */
2239 __dasd_block_start_head(block
);
2240 spin_unlock(&block
->queue_lock
);
2244 * Allocate and initialize request queue and default I/O scheduler.
2246 static int dasd_alloc_queue(struct dasd_block
*block
)
2250 block
->request_queue
= blk_init_queue(do_dasd_request
,
2251 &block
->request_queue_lock
);
2252 if (block
->request_queue
== NULL
)
2255 block
->request_queue
->queuedata
= block
;
2257 elevator_exit(block
->request_queue
->elevator
);
2258 block
->request_queue
->elevator
= NULL
;
2259 rc
= elevator_init(block
->request_queue
, "deadline");
2261 blk_cleanup_queue(block
->request_queue
);
2268 * Allocate and initialize request queue.
2270 static void dasd_setup_queue(struct dasd_block
*block
)
2274 if (block
->base
->features
& DASD_FEATURE_USERAW
) {
2276 * the max_blocks value for raw_track access is 256
2277 * it is higher than the native ECKD value because we
2278 * only need one ccw per track
2279 * so the max_hw_sectors are
2280 * 2048 x 512B = 1024kB = 16 tracks
2284 max
= block
->base
->discipline
->max_blocks
<< block
->s2b_shift
;
2286 blk_queue_logical_block_size(block
->request_queue
,
2288 blk_queue_max_hw_sectors(block
->request_queue
, max
);
2289 blk_queue_max_segments(block
->request_queue
, -1L);
2290 /* with page sized segments we can translate each segement into
2293 blk_queue_max_segment_size(block
->request_queue
, PAGE_SIZE
);
2294 blk_queue_segment_boundary(block
->request_queue
, PAGE_SIZE
- 1);
2298 * Deactivate and free request queue.
2300 static void dasd_free_queue(struct dasd_block
*block
)
2302 if (block
->request_queue
) {
2303 blk_cleanup_queue(block
->request_queue
);
2304 block
->request_queue
= NULL
;
2309 * Flush request on the request queue.
2311 static void dasd_flush_request_queue(struct dasd_block
*block
)
2313 struct request
*req
;
2315 if (!block
->request_queue
)
2318 spin_lock_irq(&block
->request_queue_lock
);
2319 while ((req
= blk_fetch_request(block
->request_queue
)))
2320 __blk_end_request_all(req
, -EIO
);
2321 spin_unlock_irq(&block
->request_queue_lock
);
2324 static int dasd_open(struct block_device
*bdev
, fmode_t mode
)
2326 struct dasd_device
*base
;
2329 base
= dasd_device_from_gendisk(bdev
->bd_disk
);
2333 atomic_inc(&base
->block
->open_count
);
2334 if (test_bit(DASD_FLAG_OFFLINE
, &base
->flags
)) {
2339 if (!try_module_get(base
->discipline
->owner
)) {
2344 if (dasd_probeonly
) {
2345 dev_info(&base
->cdev
->dev
,
2346 "Accessing the DASD failed because it is in "
2347 "probeonly mode\n");
2352 if (base
->state
<= DASD_STATE_BASIC
) {
2353 DBF_DEV_EVENT(DBF_ERR
, base
, " %s",
2354 " Cannot open unrecognized device");
2359 if ((mode
& FMODE_WRITE
) &&
2360 (test_bit(DASD_FLAG_DEVICE_RO
, &base
->flags
) ||
2361 (base
->features
& DASD_FEATURE_READONLY
))) {
2366 dasd_put_device(base
);
2370 module_put(base
->discipline
->owner
);
2372 atomic_dec(&base
->block
->open_count
);
2373 dasd_put_device(base
);
2377 static int dasd_release(struct gendisk
*disk
, fmode_t mode
)
2379 struct dasd_device
*base
;
2381 base
= dasd_device_from_gendisk(disk
);
2385 atomic_dec(&base
->block
->open_count
);
2386 module_put(base
->discipline
->owner
);
2387 dasd_put_device(base
);
2392 * Return disk geometry.
2394 static int dasd_getgeo(struct block_device
*bdev
, struct hd_geometry
*geo
)
2396 struct dasd_device
*base
;
2398 base
= dasd_device_from_gendisk(bdev
->bd_disk
);
2402 if (!base
->discipline
||
2403 !base
->discipline
->fill_geometry
) {
2404 dasd_put_device(base
);
2407 base
->discipline
->fill_geometry(base
->block
, geo
);
2408 geo
->start
= get_start_sect(bdev
) >> base
->block
->s2b_shift
;
2409 dasd_put_device(base
);
2413 const struct block_device_operations
2414 dasd_device_operations
= {
2415 .owner
= THIS_MODULE
,
2417 .release
= dasd_release
,
2418 .ioctl
= dasd_ioctl
,
2419 .compat_ioctl
= dasd_ioctl
,
2420 .getgeo
= dasd_getgeo
,
2423 /*******************************************************************************
2424 * end of block device operations
2430 #ifdef CONFIG_PROC_FS
2434 if (dasd_page_cache
!= NULL
) {
2435 kmem_cache_destroy(dasd_page_cache
);
2436 dasd_page_cache
= NULL
;
2438 dasd_gendisk_exit();
2440 if (dasd_debug_area
!= NULL
) {
2441 debug_unregister(dasd_debug_area
);
2442 dasd_debug_area
= NULL
;
2447 * SECTION: common functions for ccw_driver use
2451 * Is the device read-only?
2452 * Note that this function does not report the setting of the
2453 * readonly device attribute, but how it is configured in z/VM.
2455 int dasd_device_is_ro(struct dasd_device
*device
)
2457 struct ccw_dev_id dev_id
;
2458 struct diag210 diag_data
;
2463 ccw_device_get_id(device
->cdev
, &dev_id
);
2464 memset(&diag_data
, 0, sizeof(diag_data
));
2465 diag_data
.vrdcdvno
= dev_id
.devno
;
2466 diag_data
.vrdclen
= sizeof(diag_data
);
2467 rc
= diag210(&diag_data
);
2468 if (rc
== 0 || rc
== 2) {
2469 return diag_data
.vrdcvfla
& 0x80;
2471 DBF_EVENT(DBF_WARNING
, "diag210 failed for dev=%04x with rc=%d",
2476 EXPORT_SYMBOL_GPL(dasd_device_is_ro
);
2478 static void dasd_generic_auto_online(void *data
, async_cookie_t cookie
)
2480 struct ccw_device
*cdev
= data
;
2483 ret
= ccw_device_set_online(cdev
);
2485 pr_warning("%s: Setting the DASD online failed with rc=%d\n",
2486 dev_name(&cdev
->dev
), ret
);
2490 * Initial attempt at a probe function. this can be simplified once
2491 * the other detection code is gone.
2493 int dasd_generic_probe(struct ccw_device
*cdev
,
2494 struct dasd_discipline
*discipline
)
2498 ret
= dasd_add_sysfs_files(cdev
);
2500 DBF_EVENT_DEVID(DBF_WARNING
, cdev
, "%s",
2501 "dasd_generic_probe: could not add "
2505 cdev
->handler
= &dasd_int_handler
;
2508 * Automatically online either all dasd devices (dasd_autodetect)
2509 * or all devices specified with dasd= parameters during
2512 if ((dasd_get_feature(cdev
, DASD_FEATURE_INITIAL_ONLINE
) > 0 ) ||
2513 (dasd_autodetect
&& dasd_busid_known(dev_name(&cdev
->dev
)) != 0))
2514 async_schedule(dasd_generic_auto_online
, cdev
);
2519 * This will one day be called from a global not_oper handler.
2520 * It is also used by driver_unregister during module unload.
2522 void dasd_generic_remove(struct ccw_device
*cdev
)
2524 struct dasd_device
*device
;
2525 struct dasd_block
*block
;
2527 cdev
->handler
= NULL
;
2529 dasd_remove_sysfs_files(cdev
);
2530 device
= dasd_device_from_cdev(cdev
);
2533 if (test_and_set_bit(DASD_FLAG_OFFLINE
, &device
->flags
)) {
2534 /* Already doing offline processing */
2535 dasd_put_device(device
);
2539 * This device is removed unconditionally. Set offline
2540 * flag to prevent dasd_open from opening it while it is
2541 * no quite down yet.
2543 dasd_set_target_state(device
, DASD_STATE_NEW
);
2544 /* dasd_delete_device destroys the device reference. */
2545 block
= device
->block
;
2546 dasd_delete_device(device
);
2548 * life cycle of block is bound to device, so delete it after
2549 * device was safely removed
2552 dasd_free_block(block
);
2556 * Activate a device. This is called from dasd_{eckd,fba}_probe() when either
2557 * the device is detected for the first time and is supposed to be used
2558 * or the user has started activation through sysfs.
2560 int dasd_generic_set_online(struct ccw_device
*cdev
,
2561 struct dasd_discipline
*base_discipline
)
2563 struct dasd_discipline
*discipline
;
2564 struct dasd_device
*device
;
2567 /* first online clears initial online feature flag */
2568 dasd_set_feature(cdev
, DASD_FEATURE_INITIAL_ONLINE
, 0);
2569 device
= dasd_create_device(cdev
);
2571 return PTR_ERR(device
);
2573 discipline
= base_discipline
;
2574 if (device
->features
& DASD_FEATURE_USEDIAG
) {
2575 if (!dasd_diag_discipline_pointer
) {
2576 pr_warning("%s Setting the DASD online failed because "
2577 "of missing DIAG discipline\n",
2578 dev_name(&cdev
->dev
));
2579 dasd_delete_device(device
);
2582 discipline
= dasd_diag_discipline_pointer
;
2584 if (!try_module_get(base_discipline
->owner
)) {
2585 dasd_delete_device(device
);
2588 if (!try_module_get(discipline
->owner
)) {
2589 module_put(base_discipline
->owner
);
2590 dasd_delete_device(device
);
2593 device
->base_discipline
= base_discipline
;
2594 device
->discipline
= discipline
;
2596 /* check_device will allocate block device if necessary */
2597 rc
= discipline
->check_device(device
);
2599 pr_warning("%s Setting the DASD online with discipline %s "
2600 "failed with rc=%i\n",
2601 dev_name(&cdev
->dev
), discipline
->name
, rc
);
2602 module_put(discipline
->owner
);
2603 module_put(base_discipline
->owner
);
2604 dasd_delete_device(device
);
2608 dasd_set_target_state(device
, DASD_STATE_ONLINE
);
2609 if (device
->state
<= DASD_STATE_KNOWN
) {
2610 pr_warning("%s Setting the DASD online failed because of a "
2611 "missing discipline\n", dev_name(&cdev
->dev
));
2613 dasd_set_target_state(device
, DASD_STATE_NEW
);
2615 dasd_free_block(device
->block
);
2616 dasd_delete_device(device
);
2618 pr_debug("dasd_generic device %s found\n",
2619 dev_name(&cdev
->dev
));
2621 wait_event(dasd_init_waitq
, _wait_for_device(device
));
2623 dasd_put_device(device
);
2627 int dasd_generic_set_offline(struct ccw_device
*cdev
)
2629 struct dasd_device
*device
;
2630 struct dasd_block
*block
;
2631 int max_count
, open_count
;
2633 device
= dasd_device_from_cdev(cdev
);
2635 return PTR_ERR(device
);
2636 if (test_and_set_bit(DASD_FLAG_OFFLINE
, &device
->flags
)) {
2637 /* Already doing offline processing */
2638 dasd_put_device(device
);
2642 * We must make sure that this device is currently not in use.
2643 * The open_count is increased for every opener, that includes
2644 * the blkdev_get in dasd_scan_partitions. We are only interested
2645 * in the other openers.
2647 if (device
->block
) {
2648 max_count
= device
->block
->bdev
? 0 : -1;
2649 open_count
= atomic_read(&device
->block
->open_count
);
2650 if (open_count
> max_count
) {
2652 pr_warning("%s: The DASD cannot be set offline "
2653 "with open count %i\n",
2654 dev_name(&cdev
->dev
), open_count
);
2656 pr_warning("%s: The DASD cannot be set offline "
2657 "while it is in use\n",
2658 dev_name(&cdev
->dev
));
2659 clear_bit(DASD_FLAG_OFFLINE
, &device
->flags
);
2660 dasd_put_device(device
);
2664 dasd_set_target_state(device
, DASD_STATE_NEW
);
2665 /* dasd_delete_device destroys the device reference. */
2666 block
= device
->block
;
2667 dasd_delete_device(device
);
2669 * life cycle of block is bound to device, so delete it after
2670 * device was safely removed
2673 dasd_free_block(block
);
2677 int dasd_generic_last_path_gone(struct dasd_device
*device
)
2679 struct dasd_ccw_req
*cqr
;
2681 dev_warn(&device
->cdev
->dev
, "No operational channel path is left "
2682 "for the device\n");
2683 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s", "last path gone");
2684 /* First of all call extended error reporting. */
2685 dasd_eer_write(device
, NULL
, DASD_EER_NOPATH
);
2687 if (device
->state
< DASD_STATE_BASIC
)
2689 /* Device is active. We want to keep it. */
2690 list_for_each_entry(cqr
, &device
->ccw_queue
, devlist
)
2691 if ((cqr
->status
== DASD_CQR_IN_IO
) ||
2692 (cqr
->status
== DASD_CQR_CLEAR_PENDING
)) {
2693 cqr
->status
= DASD_CQR_QUEUED
;
2696 dasd_device_set_stop_bits(device
, DASD_STOPPED_DC_WAIT
);
2697 dasd_device_clear_timer(device
);
2698 dasd_schedule_device_bh(device
);
2701 EXPORT_SYMBOL_GPL(dasd_generic_last_path_gone
);
2703 int dasd_generic_path_operational(struct dasd_device
*device
)
2705 dev_info(&device
->cdev
->dev
, "A channel path to the device has become "
2707 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s", "path operational");
2708 dasd_device_remove_stop_bits(device
, DASD_STOPPED_DC_WAIT
);
2709 if (device
->stopped
& DASD_UNRESUMED_PM
) {
2710 dasd_device_remove_stop_bits(device
, DASD_UNRESUMED_PM
);
2711 dasd_restore_device(device
);
2714 dasd_schedule_device_bh(device
);
2716 dasd_schedule_block_bh(device
->block
);
2719 EXPORT_SYMBOL_GPL(dasd_generic_path_operational
);
2721 int dasd_generic_notify(struct ccw_device
*cdev
, int event
)
2723 struct dasd_device
*device
;
2726 device
= dasd_device_from_cdev_locked(cdev
);
2734 device
->path_data
.opm
= 0;
2735 device
->path_data
.ppm
= 0;
2736 device
->path_data
.npm
= 0;
2737 ret
= dasd_generic_last_path_gone(device
);
2741 if (device
->path_data
.opm
)
2742 ret
= dasd_generic_path_operational(device
);
2745 dasd_put_device(device
);
2749 void dasd_generic_path_event(struct ccw_device
*cdev
, int *path_event
)
2752 __u8 oldopm
, eventlpm
;
2753 struct dasd_device
*device
;
2755 device
= dasd_device_from_cdev_locked(cdev
);
2758 for (chp
= 0; chp
< 8; chp
++) {
2759 eventlpm
= 0x80 >> chp
;
2760 if (path_event
[chp
] & PE_PATH_GONE
) {
2761 oldopm
= device
->path_data
.opm
;
2762 device
->path_data
.opm
&= ~eventlpm
;
2763 device
->path_data
.ppm
&= ~eventlpm
;
2764 device
->path_data
.npm
&= ~eventlpm
;
2765 if (oldopm
&& !device
->path_data
.opm
)
2766 dasd_generic_last_path_gone(device
);
2768 if (path_event
[chp
] & PE_PATH_AVAILABLE
) {
2769 device
->path_data
.opm
&= ~eventlpm
;
2770 device
->path_data
.ppm
&= ~eventlpm
;
2771 device
->path_data
.npm
&= ~eventlpm
;
2772 device
->path_data
.tbvpm
|= eventlpm
;
2773 dasd_schedule_device_bh(device
);
2776 dasd_put_device(device
);
2778 EXPORT_SYMBOL_GPL(dasd_generic_path_event
);
2780 int dasd_generic_verify_path(struct dasd_device
*device
, __u8 lpm
)
2782 if (!device
->path_data
.opm
&& lpm
) {
2783 device
->path_data
.opm
= lpm
;
2784 dasd_generic_path_operational(device
);
2786 device
->path_data
.opm
|= lpm
;
2789 EXPORT_SYMBOL_GPL(dasd_generic_verify_path
);
2792 int dasd_generic_pm_freeze(struct ccw_device
*cdev
)
2794 struct dasd_ccw_req
*cqr
, *n
;
2796 struct list_head freeze_queue
;
2797 struct dasd_device
*device
= dasd_device_from_cdev(cdev
);
2800 return PTR_ERR(device
);
2802 if (device
->discipline
->freeze
)
2803 rc
= device
->discipline
->freeze(device
);
2805 /* disallow new I/O */
2806 dasd_device_set_stop_bits(device
, DASD_STOPPED_PM
);
2807 /* clear active requests */
2808 INIT_LIST_HEAD(&freeze_queue
);
2809 spin_lock_irq(get_ccwdev_lock(cdev
));
2811 list_for_each_entry_safe(cqr
, n
, &device
->ccw_queue
, devlist
) {
2812 /* Check status and move request to flush_queue */
2813 if (cqr
->status
== DASD_CQR_IN_IO
) {
2814 rc
= device
->discipline
->term_IO(cqr
);
2816 /* unable to terminate requeust */
2817 dev_err(&device
->cdev
->dev
,
2818 "Unable to terminate request %p "
2819 "on suspend\n", cqr
);
2820 spin_unlock_irq(get_ccwdev_lock(cdev
));
2821 dasd_put_device(device
);
2825 list_move_tail(&cqr
->devlist
, &freeze_queue
);
2828 spin_unlock_irq(get_ccwdev_lock(cdev
));
2830 list_for_each_entry_safe(cqr
, n
, &freeze_queue
, devlist
) {
2831 wait_event(dasd_flush_wq
,
2832 (cqr
->status
!= DASD_CQR_CLEAR_PENDING
));
2833 if (cqr
->status
== DASD_CQR_CLEARED
)
2834 cqr
->status
= DASD_CQR_QUEUED
;
2836 /* move freeze_queue to start of the ccw_queue */
2837 spin_lock_irq(get_ccwdev_lock(cdev
));
2838 list_splice_tail(&freeze_queue
, &device
->ccw_queue
);
2839 spin_unlock_irq(get_ccwdev_lock(cdev
));
2841 dasd_put_device(device
);
2844 EXPORT_SYMBOL_GPL(dasd_generic_pm_freeze
);
2846 int dasd_generic_restore_device(struct ccw_device
*cdev
)
2848 struct dasd_device
*device
= dasd_device_from_cdev(cdev
);
2852 return PTR_ERR(device
);
2854 /* allow new IO again */
2855 dasd_device_remove_stop_bits(device
,
2856 (DASD_STOPPED_PM
| DASD_UNRESUMED_PM
));
2858 dasd_schedule_device_bh(device
);
2861 * call discipline restore function
2862 * if device is stopped do nothing e.g. for disconnected devices
2864 if (device
->discipline
->restore
&& !(device
->stopped
))
2865 rc
= device
->discipline
->restore(device
);
2866 if (rc
|| device
->stopped
)
2868 * if the resume failed for the DASD we put it in
2869 * an UNRESUMED stop state
2871 device
->stopped
|= DASD_UNRESUMED_PM
;
2874 dasd_schedule_block_bh(device
->block
);
2876 dasd_put_device(device
);
2879 EXPORT_SYMBOL_GPL(dasd_generic_restore_device
);
2881 static struct dasd_ccw_req
*dasd_generic_build_rdc(struct dasd_device
*device
,
2883 int rdc_buffer_size
,
2886 struct dasd_ccw_req
*cqr
;
2888 unsigned long *idaw
;
2890 cqr
= dasd_smalloc_request(magic
, 1 /* RDC */, rdc_buffer_size
, device
);
2893 /* internal error 13 - Allocating the RDC request failed*/
2894 dev_err(&device
->cdev
->dev
,
2895 "An error occurred in the DASD device driver, "
2896 "reason=%s\n", "13");
2901 ccw
->cmd_code
= CCW_CMD_RDC
;
2902 if (idal_is_needed(rdc_buffer
, rdc_buffer_size
)) {
2903 idaw
= (unsigned long *) (cqr
->data
);
2904 ccw
->cda
= (__u32
)(addr_t
) idaw
;
2905 ccw
->flags
= CCW_FLAG_IDA
;
2906 idaw
= idal_create_words(idaw
, rdc_buffer
, rdc_buffer_size
);
2908 ccw
->cda
= (__u32
)(addr_t
) rdc_buffer
;
2912 ccw
->count
= rdc_buffer_size
;
2913 cqr
->startdev
= device
;
2914 cqr
->memdev
= device
;
2915 cqr
->expires
= 10*HZ
;
2917 cqr
->buildclk
= get_clock();
2918 cqr
->status
= DASD_CQR_FILLED
;
2923 int dasd_generic_read_dev_chars(struct dasd_device
*device
, int magic
,
2924 void *rdc_buffer
, int rdc_buffer_size
)
2927 struct dasd_ccw_req
*cqr
;
2929 cqr
= dasd_generic_build_rdc(device
, rdc_buffer
, rdc_buffer_size
,
2932 return PTR_ERR(cqr
);
2934 ret
= dasd_sleep_on(cqr
);
2935 dasd_sfree_request(cqr
, cqr
->memdev
);
2938 EXPORT_SYMBOL_GPL(dasd_generic_read_dev_chars
);
2941 * In command mode and transport mode we need to look for sense
2942 * data in different places. The sense data itself is allways
2943 * an array of 32 bytes, so we can unify the sense data access
2946 char *dasd_get_sense(struct irb
*irb
)
2948 struct tsb
*tsb
= NULL
;
2951 if (scsw_is_tm(&irb
->scsw
) && (irb
->scsw
.tm
.fcxs
== 0x01)) {
2952 if (irb
->scsw
.tm
.tcw
)
2953 tsb
= tcw_get_tsb((struct tcw
*)(unsigned long)
2955 if (tsb
&& tsb
->length
== 64 && tsb
->flags
)
2956 switch (tsb
->flags
& 0x07) {
2957 case 1: /* tsa_iostat */
2958 sense
= tsb
->tsa
.iostat
.sense
;
2960 case 2: /* tsa_ddpc */
2961 sense
= tsb
->tsa
.ddpc
.sense
;
2964 /* currently we don't use interrogate data */
2967 } else if (irb
->esw
.esw0
.erw
.cons
) {
2972 EXPORT_SYMBOL_GPL(dasd_get_sense
);
2974 static int __init
dasd_init(void)
2978 init_waitqueue_head(&dasd_init_waitq
);
2979 init_waitqueue_head(&dasd_flush_wq
);
2980 init_waitqueue_head(&generic_waitq
);
2982 /* register 'common' DASD debug area, used for all DBF_XXX calls */
2983 dasd_debug_area
= debug_register("dasd", 1, 1, 8 * sizeof(long));
2984 if (dasd_debug_area
== NULL
) {
2988 debug_register_view(dasd_debug_area
, &debug_sprintf_view
);
2989 debug_set_level(dasd_debug_area
, DBF_WARNING
);
2991 DBF_EVENT(DBF_EMERG
, "%s", "debug area created");
2993 dasd_diag_discipline_pointer
= NULL
;
2995 rc
= dasd_devmap_init();
2998 rc
= dasd_gendisk_init();
3004 rc
= dasd_eer_init();
3007 #ifdef CONFIG_PROC_FS
3008 rc
= dasd_proc_init();
3015 pr_info("The DASD device driver could not be initialized\n");
3020 module_init(dasd_init
);
3021 module_exit(dasd_exit
);
3023 EXPORT_SYMBOL(dasd_debug_area
);
3024 EXPORT_SYMBOL(dasd_diag_discipline_pointer
);
3026 EXPORT_SYMBOL(dasd_add_request_head
);
3027 EXPORT_SYMBOL(dasd_add_request_tail
);
3028 EXPORT_SYMBOL(dasd_cancel_req
);
3029 EXPORT_SYMBOL(dasd_device_clear_timer
);
3030 EXPORT_SYMBOL(dasd_block_clear_timer
);
3031 EXPORT_SYMBOL(dasd_enable_device
);
3032 EXPORT_SYMBOL(dasd_int_handler
);
3033 EXPORT_SYMBOL(dasd_kfree_request
);
3034 EXPORT_SYMBOL(dasd_kick_device
);
3035 EXPORT_SYMBOL(dasd_kmalloc_request
);
3036 EXPORT_SYMBOL(dasd_schedule_device_bh
);
3037 EXPORT_SYMBOL(dasd_schedule_block_bh
);
3038 EXPORT_SYMBOL(dasd_set_target_state
);
3039 EXPORT_SYMBOL(dasd_device_set_timer
);
3040 EXPORT_SYMBOL(dasd_block_set_timer
);
3041 EXPORT_SYMBOL(dasd_sfree_request
);
3042 EXPORT_SYMBOL(dasd_sleep_on
);
3043 EXPORT_SYMBOL(dasd_sleep_on_immediatly
);
3044 EXPORT_SYMBOL(dasd_sleep_on_interruptible
);
3045 EXPORT_SYMBOL(dasd_smalloc_request
);
3046 EXPORT_SYMBOL(dasd_start_IO
);
3047 EXPORT_SYMBOL(dasd_term_IO
);
3049 EXPORT_SYMBOL_GPL(dasd_generic_probe
);
3050 EXPORT_SYMBOL_GPL(dasd_generic_remove
);
3051 EXPORT_SYMBOL_GPL(dasd_generic_notify
);
3052 EXPORT_SYMBOL_GPL(dasd_generic_set_online
);
3053 EXPORT_SYMBOL_GPL(dasd_generic_set_offline
);
3054 EXPORT_SYMBOL_GPL(dasd_generic_handle_state_change
);
3055 EXPORT_SYMBOL_GPL(dasd_flush_device_queue
);
3056 EXPORT_SYMBOL_GPL(dasd_alloc_block
);
3057 EXPORT_SYMBOL_GPL(dasd_free_block
);