2 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
3 * Horst Hummel <Horst.Hummel@de.ibm.com>
4 * Carsten Otte <Cotte@de.ibm.com>
5 * Martin Schwidefsky <schwidefsky@de.ibm.com>
6 * Bugreports.to..: <Linux390@de.ibm.com>
7 * Copyright IBM Corp. 1999, 2009
10 #define KMSG_COMPONENT "dasd"
11 #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
13 #include <linux/kmod.h>
14 #include <linux/init.h>
15 #include <linux/interrupt.h>
16 #include <linux/ctype.h>
17 #include <linux/major.h>
18 #include <linux/slab.h>
19 #include <linux/hdreg.h>
20 #include <linux/async.h>
21 #include <linux/mutex.h>
22 #include <linux/debugfs.h>
23 #include <linux/seq_file.h>
24 #include <linux/vmalloc.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_DIAG_MOD "dasd_diag_mod"
44 * SECTION: exported variables of dasd.c
46 debug_info_t
*dasd_debug_area
;
47 EXPORT_SYMBOL(dasd_debug_area
);
48 static struct dentry
*dasd_debugfs_root_entry
;
49 struct dasd_discipline
*dasd_diag_discipline_pointer
;
50 EXPORT_SYMBOL(dasd_diag_discipline_pointer
);
51 void dasd_int_handler(struct ccw_device
*, unsigned long, struct irb
*);
53 MODULE_AUTHOR("Holger Smolinski <Holger.Smolinski@de.ibm.com>");
54 MODULE_DESCRIPTION("Linux on S/390 DASD device driver,"
55 " Copyright IBM Corp. 2000");
56 MODULE_SUPPORTED_DEVICE("dasd");
57 MODULE_LICENSE("GPL");
60 * SECTION: prototypes for static functions of dasd.c
62 static int dasd_alloc_queue(struct dasd_block
*);
63 static void dasd_setup_queue(struct dasd_block
*);
64 static void dasd_free_queue(struct dasd_block
*);
65 static void dasd_flush_request_queue(struct dasd_block
*);
66 static int dasd_flush_block_queue(struct dasd_block
*);
67 static void dasd_device_tasklet(struct dasd_device
*);
68 static void dasd_block_tasklet(struct dasd_block
*);
69 static void do_kick_device(struct work_struct
*);
70 static void do_restore_device(struct work_struct
*);
71 static void do_reload_device(struct work_struct
*);
72 static void do_requeue_requests(struct work_struct
*);
73 static void dasd_return_cqr_cb(struct dasd_ccw_req
*, void *);
74 static void dasd_device_timeout(unsigned long);
75 static void dasd_block_timeout(unsigned long);
76 static void __dasd_process_erp(struct dasd_device
*, struct dasd_ccw_req
*);
77 static void dasd_profile_init(struct dasd_profile
*, struct dentry
*);
78 static void dasd_profile_exit(struct dasd_profile
*);
79 static void dasd_hosts_init(struct dentry
*, struct dasd_device
*);
80 static void dasd_hosts_exit(struct dasd_device
*);
83 * SECTION: Operations on the device structure.
85 static wait_queue_head_t dasd_init_waitq
;
86 static wait_queue_head_t dasd_flush_wq
;
87 static wait_queue_head_t generic_waitq
;
88 static wait_queue_head_t shutdown_waitq
;
91 * Allocate memory for a new device structure.
93 struct dasd_device
*dasd_alloc_device(void)
95 struct dasd_device
*device
;
97 device
= kzalloc(sizeof(struct dasd_device
), GFP_ATOMIC
);
99 return ERR_PTR(-ENOMEM
);
101 /* Get two pages for normal block device operations. */
102 device
->ccw_mem
= (void *) __get_free_pages(GFP_ATOMIC
| GFP_DMA
, 1);
103 if (!device
->ccw_mem
) {
105 return ERR_PTR(-ENOMEM
);
107 /* Get one page for error recovery. */
108 device
->erp_mem
= (void *) get_zeroed_page(GFP_ATOMIC
| GFP_DMA
);
109 if (!device
->erp_mem
) {
110 free_pages((unsigned long) device
->ccw_mem
, 1);
112 return ERR_PTR(-ENOMEM
);
115 dasd_init_chunklist(&device
->ccw_chunks
, device
->ccw_mem
, PAGE_SIZE
*2);
116 dasd_init_chunklist(&device
->erp_chunks
, device
->erp_mem
, PAGE_SIZE
);
117 spin_lock_init(&device
->mem_lock
);
118 atomic_set(&device
->tasklet_scheduled
, 0);
119 tasklet_init(&device
->tasklet
,
120 (void (*)(unsigned long)) dasd_device_tasklet
,
121 (unsigned long) device
);
122 INIT_LIST_HEAD(&device
->ccw_queue
);
123 init_timer(&device
->timer
);
124 device
->timer
.function
= dasd_device_timeout
;
125 device
->timer
.data
= (unsigned long) device
;
126 INIT_WORK(&device
->kick_work
, do_kick_device
);
127 INIT_WORK(&device
->restore_device
, do_restore_device
);
128 INIT_WORK(&device
->reload_device
, do_reload_device
);
129 INIT_WORK(&device
->requeue_requests
, do_requeue_requests
);
130 device
->state
= DASD_STATE_NEW
;
131 device
->target
= DASD_STATE_NEW
;
132 mutex_init(&device
->state_mutex
);
133 spin_lock_init(&device
->profile
.lock
);
138 * Free memory of a device structure.
140 void dasd_free_device(struct dasd_device
*device
)
142 kfree(device
->private);
143 free_page((unsigned long) device
->erp_mem
);
144 free_pages((unsigned long) device
->ccw_mem
, 1);
149 * Allocate memory for a new device structure.
151 struct dasd_block
*dasd_alloc_block(void)
153 struct dasd_block
*block
;
155 block
= kzalloc(sizeof(*block
), GFP_ATOMIC
);
157 return ERR_PTR(-ENOMEM
);
158 /* open_count = 0 means device online but not in use */
159 atomic_set(&block
->open_count
, -1);
161 spin_lock_init(&block
->request_queue_lock
);
162 atomic_set(&block
->tasklet_scheduled
, 0);
163 tasklet_init(&block
->tasklet
,
164 (void (*)(unsigned long)) dasd_block_tasklet
,
165 (unsigned long) block
);
166 INIT_LIST_HEAD(&block
->ccw_queue
);
167 spin_lock_init(&block
->queue_lock
);
168 init_timer(&block
->timer
);
169 block
->timer
.function
= dasd_block_timeout
;
170 block
->timer
.data
= (unsigned long) block
;
171 spin_lock_init(&block
->profile
.lock
);
175 EXPORT_SYMBOL_GPL(dasd_alloc_block
);
178 * Free memory of a device structure.
180 void dasd_free_block(struct dasd_block
*block
)
184 EXPORT_SYMBOL_GPL(dasd_free_block
);
187 * Make a new device known to the system.
189 static int dasd_state_new_to_known(struct dasd_device
*device
)
194 * As long as the device is not in state DASD_STATE_NEW we want to
195 * keep the reference count > 0.
197 dasd_get_device(device
);
200 rc
= dasd_alloc_queue(device
->block
);
202 dasd_put_device(device
);
206 device
->state
= DASD_STATE_KNOWN
;
211 * Let the system forget about a device.
213 static int dasd_state_known_to_new(struct dasd_device
*device
)
215 /* Disable extended error reporting for this device. */
216 dasd_eer_disable(device
);
217 device
->state
= DASD_STATE_NEW
;
220 dasd_free_queue(device
->block
);
222 /* Give up reference we took in dasd_state_new_to_known. */
223 dasd_put_device(device
);
227 static struct dentry
*dasd_debugfs_setup(const char *name
,
228 struct dentry
*base_dentry
)
234 pde
= debugfs_create_dir(name
, base_dentry
);
235 if (!pde
|| IS_ERR(pde
))
241 * Request the irq line for the device.
243 static int dasd_state_known_to_basic(struct dasd_device
*device
)
245 struct dasd_block
*block
= device
->block
;
248 /* Allocate and register gendisk structure. */
250 rc
= dasd_gendisk_alloc(block
);
253 block
->debugfs_dentry
=
254 dasd_debugfs_setup(block
->gdp
->disk_name
,
255 dasd_debugfs_root_entry
);
256 dasd_profile_init(&block
->profile
, block
->debugfs_dentry
);
257 if (dasd_global_profile_level
== DASD_PROFILE_ON
)
258 dasd_profile_on(&device
->block
->profile
);
260 device
->debugfs_dentry
=
261 dasd_debugfs_setup(dev_name(&device
->cdev
->dev
),
262 dasd_debugfs_root_entry
);
263 dasd_profile_init(&device
->profile
, device
->debugfs_dentry
);
264 dasd_hosts_init(device
->debugfs_dentry
, device
);
266 /* register 'device' debug area, used for all DBF_DEV_XXX calls */
267 device
->debug_area
= debug_register(dev_name(&device
->cdev
->dev
), 4, 1,
269 debug_register_view(device
->debug_area
, &debug_sprintf_view
);
270 debug_set_level(device
->debug_area
, DBF_WARNING
);
271 DBF_DEV_EVENT(DBF_EMERG
, device
, "%s", "debug area created");
273 device
->state
= DASD_STATE_BASIC
;
279 * Release the irq line for the device. Terminate any running i/o.
281 static int dasd_state_basic_to_known(struct dasd_device
*device
)
285 if (device
->discipline
->basic_to_known
) {
286 rc
= device
->discipline
->basic_to_known(device
);
292 dasd_profile_exit(&device
->block
->profile
);
293 debugfs_remove(device
->block
->debugfs_dentry
);
294 dasd_gendisk_free(device
->block
);
295 dasd_block_clear_timer(device
->block
);
297 rc
= dasd_flush_device_queue(device
);
300 dasd_device_clear_timer(device
);
301 dasd_profile_exit(&device
->profile
);
302 dasd_hosts_exit(device
);
303 debugfs_remove(device
->debugfs_dentry
);
304 DBF_DEV_EVENT(DBF_EMERG
, device
, "%p debug area deleted", device
);
305 if (device
->debug_area
!= NULL
) {
306 debug_unregister(device
->debug_area
);
307 device
->debug_area
= NULL
;
309 device
->state
= DASD_STATE_KNOWN
;
314 * Do the initial analysis. The do_analysis function may return
315 * -EAGAIN in which case the device keeps the state DASD_STATE_BASIC
316 * until the discipline decides to continue the startup sequence
317 * by calling the function dasd_change_state. The eckd disciplines
318 * uses this to start a ccw that detects the format. The completion
319 * interrupt for this detection ccw uses the kernel event daemon to
320 * trigger the call to dasd_change_state. All this is done in the
321 * discipline code, see dasd_eckd.c.
322 * After the analysis ccw is done (do_analysis returned 0) the block
324 * In case the analysis returns an error, the device setup is stopped
325 * (a fake disk was already added to allow formatting).
327 static int dasd_state_basic_to_ready(struct dasd_device
*device
)
330 struct dasd_block
*block
;
331 struct gendisk
*disk
;
334 block
= device
->block
;
335 /* make disk known with correct capacity */
337 if (block
->base
->discipline
->do_analysis
!= NULL
)
338 rc
= block
->base
->discipline
->do_analysis(block
);
341 device
->state
= DASD_STATE_UNFMT
;
342 disk
= device
->block
->gdp
;
343 kobject_uevent(&disk_to_dev(disk
)->kobj
,
349 dasd_setup_queue(block
);
350 set_capacity(block
->gdp
,
351 block
->blocks
<< block
->s2b_shift
);
352 device
->state
= DASD_STATE_READY
;
353 rc
= dasd_scan_partitions(block
);
355 device
->state
= DASD_STATE_BASIC
;
359 device
->state
= DASD_STATE_READY
;
362 if (device
->discipline
->basic_to_ready
)
363 rc
= device
->discipline
->basic_to_ready(device
);
368 int _wait_for_empty_queues(struct dasd_device
*device
)
371 return list_empty(&device
->ccw_queue
) &&
372 list_empty(&device
->block
->ccw_queue
);
374 return list_empty(&device
->ccw_queue
);
378 * Remove device from block device layer. Destroy dirty buffers.
379 * Forget format information. Check if the target level is basic
380 * and if it is create fake disk for formatting.
382 static int dasd_state_ready_to_basic(struct dasd_device
*device
)
386 device
->state
= DASD_STATE_BASIC
;
388 struct dasd_block
*block
= device
->block
;
389 rc
= dasd_flush_block_queue(block
);
391 device
->state
= DASD_STATE_READY
;
394 dasd_flush_request_queue(block
);
395 dasd_destroy_partitions(block
);
398 block
->s2b_shift
= 0;
406 static int dasd_state_unfmt_to_basic(struct dasd_device
*device
)
408 device
->state
= DASD_STATE_BASIC
;
413 * Make the device online and schedule the bottom half to start
414 * the requeueing of requests from the linux request queue to the
418 dasd_state_ready_to_online(struct dasd_device
* device
)
420 struct gendisk
*disk
;
421 struct disk_part_iter piter
;
422 struct hd_struct
*part
;
424 device
->state
= DASD_STATE_ONLINE
;
426 dasd_schedule_block_bh(device
->block
);
427 if ((device
->features
& DASD_FEATURE_USERAW
)) {
428 disk
= device
->block
->gdp
;
429 kobject_uevent(&disk_to_dev(disk
)->kobj
, KOBJ_CHANGE
);
432 disk
= device
->block
->bdev
->bd_disk
;
433 disk_part_iter_init(&piter
, disk
, DISK_PITER_INCL_PART0
);
434 while ((part
= disk_part_iter_next(&piter
)))
435 kobject_uevent(&part_to_dev(part
)->kobj
, KOBJ_CHANGE
);
436 disk_part_iter_exit(&piter
);
442 * Stop the requeueing of requests again.
444 static int dasd_state_online_to_ready(struct dasd_device
*device
)
447 struct gendisk
*disk
;
448 struct disk_part_iter piter
;
449 struct hd_struct
*part
;
451 if (device
->discipline
->online_to_ready
) {
452 rc
= device
->discipline
->online_to_ready(device
);
457 device
->state
= DASD_STATE_READY
;
458 if (device
->block
&& !(device
->features
& DASD_FEATURE_USERAW
)) {
459 disk
= device
->block
->bdev
->bd_disk
;
460 disk_part_iter_init(&piter
, disk
, DISK_PITER_INCL_PART0
);
461 while ((part
= disk_part_iter_next(&piter
)))
462 kobject_uevent(&part_to_dev(part
)->kobj
, KOBJ_CHANGE
);
463 disk_part_iter_exit(&piter
);
469 * Device startup state changes.
471 static int dasd_increase_state(struct dasd_device
*device
)
476 if (device
->state
== DASD_STATE_NEW
&&
477 device
->target
>= DASD_STATE_KNOWN
)
478 rc
= dasd_state_new_to_known(device
);
481 device
->state
== DASD_STATE_KNOWN
&&
482 device
->target
>= DASD_STATE_BASIC
)
483 rc
= dasd_state_known_to_basic(device
);
486 device
->state
== DASD_STATE_BASIC
&&
487 device
->target
>= DASD_STATE_READY
)
488 rc
= dasd_state_basic_to_ready(device
);
491 device
->state
== DASD_STATE_UNFMT
&&
492 device
->target
> DASD_STATE_UNFMT
)
496 device
->state
== DASD_STATE_READY
&&
497 device
->target
>= DASD_STATE_ONLINE
)
498 rc
= dasd_state_ready_to_online(device
);
504 * Device shutdown state changes.
506 static int dasd_decrease_state(struct dasd_device
*device
)
511 if (device
->state
== DASD_STATE_ONLINE
&&
512 device
->target
<= DASD_STATE_READY
)
513 rc
= dasd_state_online_to_ready(device
);
516 device
->state
== DASD_STATE_READY
&&
517 device
->target
<= DASD_STATE_BASIC
)
518 rc
= dasd_state_ready_to_basic(device
);
521 device
->state
== DASD_STATE_UNFMT
&&
522 device
->target
<= DASD_STATE_BASIC
)
523 rc
= dasd_state_unfmt_to_basic(device
);
526 device
->state
== DASD_STATE_BASIC
&&
527 device
->target
<= DASD_STATE_KNOWN
)
528 rc
= dasd_state_basic_to_known(device
);
531 device
->state
== DASD_STATE_KNOWN
&&
532 device
->target
<= DASD_STATE_NEW
)
533 rc
= dasd_state_known_to_new(device
);
539 * This is the main startup/shutdown routine.
541 static void dasd_change_state(struct dasd_device
*device
)
545 if (device
->state
== device
->target
)
546 /* Already where we want to go today... */
548 if (device
->state
< device
->target
)
549 rc
= dasd_increase_state(device
);
551 rc
= dasd_decrease_state(device
);
555 device
->target
= device
->state
;
557 /* let user-space know that the device status changed */
558 kobject_uevent(&device
->cdev
->dev
.kobj
, KOBJ_CHANGE
);
560 if (device
->state
== device
->target
)
561 wake_up(&dasd_init_waitq
);
565 * Kick starter for devices that did not complete the startup/shutdown
566 * procedure or were sleeping because of a pending state.
567 * dasd_kick_device will schedule a call do do_kick_device to the kernel
570 static void do_kick_device(struct work_struct
*work
)
572 struct dasd_device
*device
= container_of(work
, struct dasd_device
, kick_work
);
573 mutex_lock(&device
->state_mutex
);
574 dasd_change_state(device
);
575 mutex_unlock(&device
->state_mutex
);
576 dasd_schedule_device_bh(device
);
577 dasd_put_device(device
);
580 void dasd_kick_device(struct dasd_device
*device
)
582 dasd_get_device(device
);
583 /* queue call to dasd_kick_device to the kernel event daemon. */
584 if (!schedule_work(&device
->kick_work
))
585 dasd_put_device(device
);
587 EXPORT_SYMBOL(dasd_kick_device
);
590 * dasd_reload_device will schedule a call do do_reload_device to the kernel
593 static void do_reload_device(struct work_struct
*work
)
595 struct dasd_device
*device
= container_of(work
, struct dasd_device
,
597 device
->discipline
->reload(device
);
598 dasd_put_device(device
);
601 void dasd_reload_device(struct dasd_device
*device
)
603 dasd_get_device(device
);
604 /* queue call to dasd_reload_device to the kernel event daemon. */
605 if (!schedule_work(&device
->reload_device
))
606 dasd_put_device(device
);
608 EXPORT_SYMBOL(dasd_reload_device
);
611 * dasd_restore_device will schedule a call do do_restore_device to the kernel
614 static void do_restore_device(struct work_struct
*work
)
616 struct dasd_device
*device
= container_of(work
, struct dasd_device
,
618 device
->cdev
->drv
->restore(device
->cdev
);
619 dasd_put_device(device
);
622 void dasd_restore_device(struct dasd_device
*device
)
624 dasd_get_device(device
);
625 /* queue call to dasd_restore_device to the kernel event daemon. */
626 if (!schedule_work(&device
->restore_device
))
627 dasd_put_device(device
);
631 * Set the target state for a device and starts the state change.
633 void dasd_set_target_state(struct dasd_device
*device
, int target
)
635 dasd_get_device(device
);
636 mutex_lock(&device
->state_mutex
);
637 /* If we are in probeonly mode stop at DASD_STATE_READY. */
638 if (dasd_probeonly
&& target
> DASD_STATE_READY
)
639 target
= DASD_STATE_READY
;
640 if (device
->target
!= target
) {
641 if (device
->state
== target
)
642 wake_up(&dasd_init_waitq
);
643 device
->target
= target
;
645 if (device
->state
!= device
->target
)
646 dasd_change_state(device
);
647 mutex_unlock(&device
->state_mutex
);
648 dasd_put_device(device
);
650 EXPORT_SYMBOL(dasd_set_target_state
);
653 * Enable devices with device numbers in [from..to].
655 static inline int _wait_for_device(struct dasd_device
*device
)
657 return (device
->state
== device
->target
);
660 void dasd_enable_device(struct dasd_device
*device
)
662 dasd_set_target_state(device
, DASD_STATE_ONLINE
);
663 if (device
->state
<= DASD_STATE_KNOWN
)
664 /* No discipline for device found. */
665 dasd_set_target_state(device
, DASD_STATE_NEW
);
666 /* Now wait for the devices to come up. */
667 wait_event(dasd_init_waitq
, _wait_for_device(device
));
669 dasd_reload_device(device
);
670 if (device
->discipline
->kick_validate
)
671 device
->discipline
->kick_validate(device
);
673 EXPORT_SYMBOL(dasd_enable_device
);
676 * SECTION: device operation (interrupt handler, start i/o, term i/o ...)
679 unsigned int dasd_global_profile_level
= DASD_PROFILE_OFF
;
681 #ifdef CONFIG_DASD_PROFILE
682 struct dasd_profile dasd_global_profile
= {
683 .lock
= __SPIN_LOCK_UNLOCKED(dasd_global_profile
.lock
),
685 static struct dentry
*dasd_debugfs_global_entry
;
688 * Add profiling information for cqr before execution.
690 static void dasd_profile_start(struct dasd_block
*block
,
691 struct dasd_ccw_req
*cqr
,
695 unsigned int counter
;
696 struct dasd_device
*device
;
698 /* count the length of the chanq for statistics */
700 if (dasd_global_profile_level
|| block
->profile
.data
)
701 list_for_each(l
, &block
->ccw_queue
)
705 spin_lock(&dasd_global_profile
.lock
);
706 if (dasd_global_profile
.data
) {
707 dasd_global_profile
.data
->dasd_io_nr_req
[counter
]++;
708 if (rq_data_dir(req
) == READ
)
709 dasd_global_profile
.data
->dasd_read_nr_req
[counter
]++;
711 spin_unlock(&dasd_global_profile
.lock
);
713 spin_lock(&block
->profile
.lock
);
714 if (block
->profile
.data
) {
715 block
->profile
.data
->dasd_io_nr_req
[counter
]++;
716 if (rq_data_dir(req
) == READ
)
717 block
->profile
.data
->dasd_read_nr_req
[counter
]++;
719 spin_unlock(&block
->profile
.lock
);
722 * We count the request for the start device, even though it may run on
723 * some other device due to error recovery. This way we make sure that
724 * we count each request only once.
726 device
= cqr
->startdev
;
727 if (device
->profile
.data
) {
728 counter
= 1; /* request is not yet queued on the start device */
729 list_for_each(l
, &device
->ccw_queue
)
733 spin_lock(&device
->profile
.lock
);
734 if (device
->profile
.data
) {
735 device
->profile
.data
->dasd_io_nr_req
[counter
]++;
736 if (rq_data_dir(req
) == READ
)
737 device
->profile
.data
->dasd_read_nr_req
[counter
]++;
739 spin_unlock(&device
->profile
.lock
);
743 * Add profiling information for cqr after execution.
746 #define dasd_profile_counter(value, index) \
748 for (index = 0; index < 31 && value >> (2+index); index++) \
752 static void dasd_profile_end_add_data(struct dasd_profile_info
*data
,
765 /* in case of an overflow, reset the whole profile */
766 if (data
->dasd_io_reqs
== UINT_MAX
) {
767 memset(data
, 0, sizeof(*data
));
768 getnstimeofday(&data
->starttod
);
770 data
->dasd_io_reqs
++;
771 data
->dasd_io_sects
+= sectors
;
773 data
->dasd_io_alias
++;
777 data
->dasd_io_secs
[sectors_ind
]++;
778 data
->dasd_io_times
[tottime_ind
]++;
779 data
->dasd_io_timps
[tottimeps_ind
]++;
780 data
->dasd_io_time1
[strtime_ind
]++;
781 data
->dasd_io_time2
[irqtime_ind
]++;
782 data
->dasd_io_time2ps
[irqtimeps_ind
]++;
783 data
->dasd_io_time3
[endtime_ind
]++;
786 data
->dasd_read_reqs
++;
787 data
->dasd_read_sects
+= sectors
;
789 data
->dasd_read_alias
++;
791 data
->dasd_read_tpm
++;
792 data
->dasd_read_secs
[sectors_ind
]++;
793 data
->dasd_read_times
[tottime_ind
]++;
794 data
->dasd_read_time1
[strtime_ind
]++;
795 data
->dasd_read_time2
[irqtime_ind
]++;
796 data
->dasd_read_time3
[endtime_ind
]++;
800 static void dasd_profile_end(struct dasd_block
*block
,
801 struct dasd_ccw_req
*cqr
,
804 long strtime
, irqtime
, endtime
, tottime
; /* in microseconds */
805 long tottimeps
, sectors
;
806 struct dasd_device
*device
;
807 int sectors_ind
, tottime_ind
, tottimeps_ind
, strtime_ind
;
808 int irqtime_ind
, irqtimeps_ind
, endtime_ind
;
810 device
= cqr
->startdev
;
811 if (!(dasd_global_profile_level
||
812 block
->profile
.data
||
813 device
->profile
.data
))
816 sectors
= blk_rq_sectors(req
);
817 if (!cqr
->buildclk
|| !cqr
->startclk
||
818 !cqr
->stopclk
|| !cqr
->endclk
||
822 strtime
= ((cqr
->startclk
- cqr
->buildclk
) >> 12);
823 irqtime
= ((cqr
->stopclk
- cqr
->startclk
) >> 12);
824 endtime
= ((cqr
->endclk
- cqr
->stopclk
) >> 12);
825 tottime
= ((cqr
->endclk
- cqr
->buildclk
) >> 12);
826 tottimeps
= tottime
/ sectors
;
828 dasd_profile_counter(sectors
, sectors_ind
);
829 dasd_profile_counter(tottime
, tottime_ind
);
830 dasd_profile_counter(tottimeps
, tottimeps_ind
);
831 dasd_profile_counter(strtime
, strtime_ind
);
832 dasd_profile_counter(irqtime
, irqtime_ind
);
833 dasd_profile_counter(irqtime
/ sectors
, irqtimeps_ind
);
834 dasd_profile_counter(endtime
, endtime_ind
);
836 spin_lock(&dasd_global_profile
.lock
);
837 if (dasd_global_profile
.data
) {
838 dasd_profile_end_add_data(dasd_global_profile
.data
,
839 cqr
->startdev
!= block
->base
,
841 rq_data_dir(req
) == READ
,
842 sectors
, sectors_ind
, tottime_ind
,
843 tottimeps_ind
, strtime_ind
,
844 irqtime_ind
, irqtimeps_ind
,
847 spin_unlock(&dasd_global_profile
.lock
);
849 spin_lock(&block
->profile
.lock
);
850 if (block
->profile
.data
)
851 dasd_profile_end_add_data(block
->profile
.data
,
852 cqr
->startdev
!= block
->base
,
854 rq_data_dir(req
) == READ
,
855 sectors
, sectors_ind
, tottime_ind
,
856 tottimeps_ind
, strtime_ind
,
857 irqtime_ind
, irqtimeps_ind
,
859 spin_unlock(&block
->profile
.lock
);
861 spin_lock(&device
->profile
.lock
);
862 if (device
->profile
.data
)
863 dasd_profile_end_add_data(device
->profile
.data
,
864 cqr
->startdev
!= block
->base
,
866 rq_data_dir(req
) == READ
,
867 sectors
, sectors_ind
, tottime_ind
,
868 tottimeps_ind
, strtime_ind
,
869 irqtime_ind
, irqtimeps_ind
,
871 spin_unlock(&device
->profile
.lock
);
874 void dasd_profile_reset(struct dasd_profile
*profile
)
876 struct dasd_profile_info
*data
;
878 spin_lock_bh(&profile
->lock
);
879 data
= profile
->data
;
881 spin_unlock_bh(&profile
->lock
);
884 memset(data
, 0, sizeof(*data
));
885 getnstimeofday(&data
->starttod
);
886 spin_unlock_bh(&profile
->lock
);
889 int dasd_profile_on(struct dasd_profile
*profile
)
891 struct dasd_profile_info
*data
;
893 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
896 spin_lock_bh(&profile
->lock
);
898 spin_unlock_bh(&profile
->lock
);
902 getnstimeofday(&data
->starttod
);
903 profile
->data
= data
;
904 spin_unlock_bh(&profile
->lock
);
908 void dasd_profile_off(struct dasd_profile
*profile
)
910 spin_lock_bh(&profile
->lock
);
911 kfree(profile
->data
);
912 profile
->data
= NULL
;
913 spin_unlock_bh(&profile
->lock
);
916 char *dasd_get_user_string(const char __user
*user_buf
, size_t user_len
)
920 buffer
= vmalloc(user_len
+ 1);
922 return ERR_PTR(-ENOMEM
);
923 if (copy_from_user(buffer
, user_buf
, user_len
) != 0) {
925 return ERR_PTR(-EFAULT
);
927 /* got the string, now strip linefeed. */
928 if (buffer
[user_len
- 1] == '\n')
929 buffer
[user_len
- 1] = 0;
931 buffer
[user_len
] = 0;
935 static ssize_t
dasd_stats_write(struct file
*file
,
936 const char __user
*user_buf
,
937 size_t user_len
, loff_t
*pos
)
941 struct seq_file
*m
= (struct seq_file
*)file
->private_data
;
942 struct dasd_profile
*prof
= m
->private;
944 if (user_len
> 65536)
946 buffer
= dasd_get_user_string(user_buf
, user_len
);
948 return PTR_ERR(buffer
);
950 str
= skip_spaces(buffer
);
952 if (strncmp(str
, "reset", 5) == 0) {
953 dasd_profile_reset(prof
);
954 } else if (strncmp(str
, "on", 2) == 0) {
955 rc
= dasd_profile_on(prof
);
959 if (prof
== &dasd_global_profile
) {
960 dasd_profile_reset(prof
);
961 dasd_global_profile_level
= DASD_PROFILE_GLOBAL_ONLY
;
963 } else if (strncmp(str
, "off", 3) == 0) {
964 if (prof
== &dasd_global_profile
)
965 dasd_global_profile_level
= DASD_PROFILE_OFF
;
966 dasd_profile_off(prof
);
974 static void dasd_stats_array(struct seq_file
*m
, unsigned int *array
)
978 for (i
= 0; i
< 32; i
++)
979 seq_printf(m
, "%u ", array
[i
]);
983 static void dasd_stats_seq_print(struct seq_file
*m
,
984 struct dasd_profile_info
*data
)
986 seq_printf(m
, "start_time %ld.%09ld\n",
987 data
->starttod
.tv_sec
, data
->starttod
.tv_nsec
);
988 seq_printf(m
, "total_requests %u\n", data
->dasd_io_reqs
);
989 seq_printf(m
, "total_sectors %u\n", data
->dasd_io_sects
);
990 seq_printf(m
, "total_pav %u\n", data
->dasd_io_alias
);
991 seq_printf(m
, "total_hpf %u\n", data
->dasd_io_tpm
);
992 seq_puts(m
, "histogram_sectors ");
993 dasd_stats_array(m
, data
->dasd_io_secs
);
994 seq_puts(m
, "histogram_io_times ");
995 dasd_stats_array(m
, data
->dasd_io_times
);
996 seq_puts(m
, "histogram_io_times_weighted ");
997 dasd_stats_array(m
, data
->dasd_io_timps
);
998 seq_puts(m
, "histogram_time_build_to_ssch ");
999 dasd_stats_array(m
, data
->dasd_io_time1
);
1000 seq_puts(m
, "histogram_time_ssch_to_irq ");
1001 dasd_stats_array(m
, data
->dasd_io_time2
);
1002 seq_puts(m
, "histogram_time_ssch_to_irq_weighted ");
1003 dasd_stats_array(m
, data
->dasd_io_time2ps
);
1004 seq_puts(m
, "histogram_time_irq_to_end ");
1005 dasd_stats_array(m
, data
->dasd_io_time3
);
1006 seq_puts(m
, "histogram_ccw_queue_length ");
1007 dasd_stats_array(m
, data
->dasd_io_nr_req
);
1008 seq_printf(m
, "total_read_requests %u\n", data
->dasd_read_reqs
);
1009 seq_printf(m
, "total_read_sectors %u\n", data
->dasd_read_sects
);
1010 seq_printf(m
, "total_read_pav %u\n", data
->dasd_read_alias
);
1011 seq_printf(m
, "total_read_hpf %u\n", data
->dasd_read_tpm
);
1012 seq_puts(m
, "histogram_read_sectors ");
1013 dasd_stats_array(m
, data
->dasd_read_secs
);
1014 seq_puts(m
, "histogram_read_times ");
1015 dasd_stats_array(m
, data
->dasd_read_times
);
1016 seq_puts(m
, "histogram_read_time_build_to_ssch ");
1017 dasd_stats_array(m
, data
->dasd_read_time1
);
1018 seq_puts(m
, "histogram_read_time_ssch_to_irq ");
1019 dasd_stats_array(m
, data
->dasd_read_time2
);
1020 seq_puts(m
, "histogram_read_time_irq_to_end ");
1021 dasd_stats_array(m
, data
->dasd_read_time3
);
1022 seq_puts(m
, "histogram_read_ccw_queue_length ");
1023 dasd_stats_array(m
, data
->dasd_read_nr_req
);
1026 static int dasd_stats_show(struct seq_file
*m
, void *v
)
1028 struct dasd_profile
*profile
;
1029 struct dasd_profile_info
*data
;
1031 profile
= m
->private;
1032 spin_lock_bh(&profile
->lock
);
1033 data
= profile
->data
;
1035 spin_unlock_bh(&profile
->lock
);
1036 seq_puts(m
, "disabled\n");
1039 dasd_stats_seq_print(m
, data
);
1040 spin_unlock_bh(&profile
->lock
);
1044 static int dasd_stats_open(struct inode
*inode
, struct file
*file
)
1046 struct dasd_profile
*profile
= inode
->i_private
;
1047 return single_open(file
, dasd_stats_show
, profile
);
1050 static const struct file_operations dasd_stats_raw_fops
= {
1051 .owner
= THIS_MODULE
,
1052 .open
= dasd_stats_open
,
1054 .llseek
= seq_lseek
,
1055 .release
= single_release
,
1056 .write
= dasd_stats_write
,
1059 static void dasd_profile_init(struct dasd_profile
*profile
,
1060 struct dentry
*base_dentry
)
1067 profile
->dentry
= NULL
;
1068 profile
->data
= NULL
;
1069 mode
= (S_IRUSR
| S_IWUSR
| S_IFREG
);
1070 pde
= debugfs_create_file("statistics", mode
, base_dentry
,
1071 profile
, &dasd_stats_raw_fops
);
1072 if (pde
&& !IS_ERR(pde
))
1073 profile
->dentry
= pde
;
1077 static void dasd_profile_exit(struct dasd_profile
*profile
)
1079 dasd_profile_off(profile
);
1080 debugfs_remove(profile
->dentry
);
1081 profile
->dentry
= NULL
;
1084 static void dasd_statistics_removeroot(void)
1086 dasd_global_profile_level
= DASD_PROFILE_OFF
;
1087 dasd_profile_exit(&dasd_global_profile
);
1088 debugfs_remove(dasd_debugfs_global_entry
);
1089 debugfs_remove(dasd_debugfs_root_entry
);
1092 static void dasd_statistics_createroot(void)
1096 dasd_debugfs_root_entry
= NULL
;
1097 pde
= debugfs_create_dir("dasd", NULL
);
1098 if (!pde
|| IS_ERR(pde
))
1100 dasd_debugfs_root_entry
= pde
;
1101 pde
= debugfs_create_dir("global", dasd_debugfs_root_entry
);
1102 if (!pde
|| IS_ERR(pde
))
1104 dasd_debugfs_global_entry
= pde
;
1105 dasd_profile_init(&dasd_global_profile
, dasd_debugfs_global_entry
);
1109 DBF_EVENT(DBF_ERR
, "%s",
1110 "Creation of the dasd debugfs interface failed");
1111 dasd_statistics_removeroot();
1116 #define dasd_profile_start(block, cqr, req) do {} while (0)
1117 #define dasd_profile_end(block, cqr, req) do {} while (0)
1119 static void dasd_statistics_createroot(void)
1124 static void dasd_statistics_removeroot(void)
1129 int dasd_stats_generic_show(struct seq_file
*m
, void *v
)
1131 seq_puts(m
, "Statistics are not activated in this kernel\n");
1135 static void dasd_profile_init(struct dasd_profile
*profile
,
1136 struct dentry
*base_dentry
)
1141 static void dasd_profile_exit(struct dasd_profile
*profile
)
1146 int dasd_profile_on(struct dasd_profile
*profile
)
1151 #endif /* CONFIG_DASD_PROFILE */
1153 static int dasd_hosts_show(struct seq_file
*m
, void *v
)
1155 struct dasd_device
*device
;
1156 int rc
= -EOPNOTSUPP
;
1158 device
= m
->private;
1159 dasd_get_device(device
);
1161 if (device
->discipline
->hosts_print
)
1162 rc
= device
->discipline
->hosts_print(device
, m
);
1164 dasd_put_device(device
);
1168 static int dasd_hosts_open(struct inode
*inode
, struct file
*file
)
1170 struct dasd_device
*device
= inode
->i_private
;
1172 return single_open(file
, dasd_hosts_show
, device
);
1175 static const struct file_operations dasd_hosts_fops
= {
1176 .owner
= THIS_MODULE
,
1177 .open
= dasd_hosts_open
,
1179 .llseek
= seq_lseek
,
1180 .release
= single_release
,
1183 static void dasd_hosts_exit(struct dasd_device
*device
)
1185 debugfs_remove(device
->hosts_dentry
);
1186 device
->hosts_dentry
= NULL
;
1189 static void dasd_hosts_init(struct dentry
*base_dentry
,
1190 struct dasd_device
*device
)
1198 mode
= S_IRUSR
| S_IFREG
;
1199 pde
= debugfs_create_file("host_access_list", mode
, base_dentry
,
1200 device
, &dasd_hosts_fops
);
1201 if (pde
&& !IS_ERR(pde
))
1202 device
->hosts_dentry
= pde
;
1206 * Allocate memory for a channel program with 'cplength' channel
1207 * command words and 'datasize' additional space. There are two
1208 * variantes: 1) dasd_kmalloc_request uses kmalloc to get the needed
1209 * memory and 2) dasd_smalloc_request uses the static ccw memory
1210 * that gets allocated for each device.
1212 struct dasd_ccw_req
*dasd_kmalloc_request(int magic
, int cplength
,
1214 struct dasd_device
*device
)
1216 struct dasd_ccw_req
*cqr
;
1219 BUG_ON(datasize
> PAGE_SIZE
||
1220 (cplength
*sizeof(struct ccw1
)) > PAGE_SIZE
);
1222 cqr
= kzalloc(sizeof(struct dasd_ccw_req
), GFP_ATOMIC
);
1224 return ERR_PTR(-ENOMEM
);
1227 cqr
->cpaddr
= kcalloc(cplength
, sizeof(struct ccw1
),
1228 GFP_ATOMIC
| GFP_DMA
);
1229 if (cqr
->cpaddr
== NULL
) {
1231 return ERR_PTR(-ENOMEM
);
1236 cqr
->data
= kzalloc(datasize
, GFP_ATOMIC
| GFP_DMA
);
1237 if (cqr
->data
== NULL
) {
1240 return ERR_PTR(-ENOMEM
);
1244 set_bit(DASD_CQR_FLAGS_USE_ERP
, &cqr
->flags
);
1245 dasd_get_device(device
);
1248 EXPORT_SYMBOL(dasd_kmalloc_request
);
1250 struct dasd_ccw_req
*dasd_smalloc_request(int magic
, int cplength
,
1252 struct dasd_device
*device
)
1254 unsigned long flags
;
1255 struct dasd_ccw_req
*cqr
;
1259 size
= (sizeof(struct dasd_ccw_req
) + 7L) & -8L;
1261 size
+= cplength
* sizeof(struct ccw1
);
1264 spin_lock_irqsave(&device
->mem_lock
, flags
);
1265 cqr
= (struct dasd_ccw_req
*)
1266 dasd_alloc_chunk(&device
->ccw_chunks
, size
);
1267 spin_unlock_irqrestore(&device
->mem_lock
, flags
);
1269 return ERR_PTR(-ENOMEM
);
1270 memset(cqr
, 0, sizeof(struct dasd_ccw_req
));
1271 data
= (char *) cqr
+ ((sizeof(struct dasd_ccw_req
) + 7L) & -8L);
1274 cqr
->cpaddr
= (struct ccw1
*) data
;
1275 data
+= cplength
*sizeof(struct ccw1
);
1276 memset(cqr
->cpaddr
, 0, cplength
*sizeof(struct ccw1
));
1281 memset(cqr
->data
, 0, datasize
);
1284 set_bit(DASD_CQR_FLAGS_USE_ERP
, &cqr
->flags
);
1285 dasd_get_device(device
);
1288 EXPORT_SYMBOL(dasd_smalloc_request
);
1291 * Free memory of a channel program. This function needs to free all the
1292 * idal lists that might have been created by dasd_set_cda and the
1293 * struct dasd_ccw_req itself.
1295 void dasd_kfree_request(struct dasd_ccw_req
*cqr
, struct dasd_device
*device
)
1299 /* Clear any idals used for the request. */
1302 clear_normalized_cda(ccw
);
1303 } while (ccw
++->flags
& (CCW_FLAG_CC
| CCW_FLAG_DC
));
1307 dasd_put_device(device
);
1309 EXPORT_SYMBOL(dasd_kfree_request
);
1311 void dasd_sfree_request(struct dasd_ccw_req
*cqr
, struct dasd_device
*device
)
1313 unsigned long flags
;
1315 spin_lock_irqsave(&device
->mem_lock
, flags
);
1316 dasd_free_chunk(&device
->ccw_chunks
, cqr
);
1317 spin_unlock_irqrestore(&device
->mem_lock
, flags
);
1318 dasd_put_device(device
);
1320 EXPORT_SYMBOL(dasd_sfree_request
);
1323 * Check discipline magic in cqr.
1325 static inline int dasd_check_cqr(struct dasd_ccw_req
*cqr
)
1327 struct dasd_device
*device
;
1331 device
= cqr
->startdev
;
1332 if (strncmp((char *) &cqr
->magic
, device
->discipline
->ebcname
, 4)) {
1333 DBF_DEV_EVENT(DBF_WARNING
, device
,
1334 " dasd_ccw_req 0x%08x magic doesn't match"
1335 " discipline 0x%08x",
1337 *(unsigned int *) device
->discipline
->name
);
1344 * Terminate the current i/o and set the request to clear_pending.
1345 * Timer keeps device runnig.
1346 * ccw_device_clear can fail if the i/o subsystem
1349 int dasd_term_IO(struct dasd_ccw_req
*cqr
)
1351 struct dasd_device
*device
;
1353 char errorstring
[ERRORLENGTH
];
1356 rc
= dasd_check_cqr(cqr
);
1360 device
= (struct dasd_device
*) cqr
->startdev
;
1361 while ((retries
< 5) && (cqr
->status
== DASD_CQR_IN_IO
)) {
1362 rc
= ccw_device_clear(device
->cdev
, (long) cqr
);
1364 case 0: /* termination successful */
1365 cqr
->status
= DASD_CQR_CLEAR_PENDING
;
1366 cqr
->stopclk
= get_tod_clock();
1368 DBF_DEV_EVENT(DBF_DEBUG
, device
,
1369 "terminate cqr %p successful",
1373 DBF_DEV_EVENT(DBF_ERR
, device
, "%s",
1374 "device gone, retry");
1377 DBF_DEV_EVENT(DBF_ERR
, device
, "%s",
1378 "I/O error, retry");
1382 * device not valid so no I/O could be running
1383 * handle CQR as termination successful
1385 cqr
->status
= DASD_CQR_CLEARED
;
1386 cqr
->stopclk
= get_tod_clock();
1388 /* no retries for invalid devices */
1390 DBF_DEV_EVENT(DBF_ERR
, device
, "%s",
1391 "EINVAL, handle as terminated");
1392 /* fake rc to success */
1396 DBF_DEV_EVENT(DBF_ERR
, device
, "%s",
1397 "device busy, retry later");
1400 /* internal error 10 - unknown rc*/
1401 snprintf(errorstring
, ERRORLENGTH
, "10 %d", rc
);
1402 dev_err(&device
->cdev
->dev
, "An error occurred in the "
1403 "DASD device driver, reason=%s\n", errorstring
);
1409 dasd_schedule_device_bh(device
);
1412 EXPORT_SYMBOL(dasd_term_IO
);
1415 * Start the i/o. This start_IO can fail if the channel is really busy.
1416 * In that case set up a timer to start the request later.
1418 int dasd_start_IO(struct dasd_ccw_req
*cqr
)
1420 struct dasd_device
*device
;
1422 char errorstring
[ERRORLENGTH
];
1425 rc
= dasd_check_cqr(cqr
);
1430 device
= (struct dasd_device
*) cqr
->startdev
;
1432 test_bit(DASD_FLAG_LOCK_STOLEN
, &cqr
->block
->base
->flags
)) ||
1433 test_bit(DASD_FLAG_LOCK_STOLEN
, &device
->flags
)) &&
1434 !test_bit(DASD_CQR_ALLOW_SLOCK
, &cqr
->flags
)) {
1435 DBF_DEV_EVENT(DBF_DEBUG
, device
, "start_IO: return request %p "
1436 "because of stolen lock", cqr
);
1437 cqr
->status
= DASD_CQR_ERROR
;
1438 cqr
->intrc
= -EPERM
;
1441 if (cqr
->retries
< 0) {
1442 /* internal error 14 - start_IO run out of retries */
1443 sprintf(errorstring
, "14 %p", cqr
);
1444 dev_err(&device
->cdev
->dev
, "An error occurred in the DASD "
1445 "device driver, reason=%s\n", errorstring
);
1446 cqr
->status
= DASD_CQR_ERROR
;
1449 cqr
->startclk
= get_tod_clock();
1450 cqr
->starttime
= jiffies
;
1452 if (!test_bit(DASD_CQR_VERIFY_PATH
, &cqr
->flags
)) {
1453 cqr
->lpm
&= dasd_path_get_opm(device
);
1455 cqr
->lpm
= dasd_path_get_opm(device
);
1457 if (cqr
->cpmode
== 1) {
1458 rc
= ccw_device_tm_start(device
->cdev
, cqr
->cpaddr
,
1459 (long) cqr
, cqr
->lpm
);
1461 rc
= ccw_device_start(device
->cdev
, cqr
->cpaddr
,
1462 (long) cqr
, cqr
->lpm
, 0);
1466 cqr
->status
= DASD_CQR_IN_IO
;
1469 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s",
1470 "start_IO: device busy, retry later");
1473 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s",
1474 "start_IO: request timeout, retry later");
1477 /* -EACCES indicates that the request used only a subset of the
1478 * available paths and all these paths are gone. If the lpm of
1479 * this request was only a subset of the opm (e.g. the ppm) then
1480 * we just do a retry with all available paths.
1481 * If we already use the full opm, something is amiss, and we
1482 * need a full path verification.
1484 if (test_bit(DASD_CQR_VERIFY_PATH
, &cqr
->flags
)) {
1485 DBF_DEV_EVENT(DBF_WARNING
, device
,
1486 "start_IO: selected paths gone (%x)",
1488 } else if (cqr
->lpm
!= dasd_path_get_opm(device
)) {
1489 cqr
->lpm
= dasd_path_get_opm(device
);
1490 DBF_DEV_EVENT(DBF_DEBUG
, device
, "%s",
1491 "start_IO: selected paths gone,"
1492 " retry on all paths");
1494 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s",
1495 "start_IO: all paths in opm gone,"
1496 " do path verification");
1497 dasd_generic_last_path_gone(device
);
1498 dasd_path_no_path(device
);
1499 dasd_path_set_tbvpm(device
,
1500 ccw_device_get_path_mask(
1505 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s",
1506 "start_IO: -ENODEV device gone, retry");
1509 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s",
1510 "start_IO: -EIO device gone, retry");
1513 /* most likely caused in power management context */
1514 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s",
1515 "start_IO: -EINVAL device currently "
1519 /* internal error 11 - unknown rc */
1520 snprintf(errorstring
, ERRORLENGTH
, "11 %d", rc
);
1521 dev_err(&device
->cdev
->dev
,
1522 "An error occurred in the DASD device driver, "
1523 "reason=%s\n", errorstring
);
1530 EXPORT_SYMBOL(dasd_start_IO
);
1533 * Timeout function for dasd devices. This is used for different purposes
1534 * 1) missing interrupt handler for normal operation
1535 * 2) delayed start of request where start_IO failed with -EBUSY
1536 * 3) timeout for missing state change interrupts
1537 * The head of the ccw queue will have status DASD_CQR_IN_IO for 1),
1538 * DASD_CQR_QUEUED for 2) and 3).
1540 static void dasd_device_timeout(unsigned long ptr
)
1542 unsigned long flags
;
1543 struct dasd_device
*device
;
1545 device
= (struct dasd_device
*) ptr
;
1546 spin_lock_irqsave(get_ccwdev_lock(device
->cdev
), flags
);
1547 /* re-activate request queue */
1548 dasd_device_remove_stop_bits(device
, DASD_STOPPED_PENDING
);
1549 spin_unlock_irqrestore(get_ccwdev_lock(device
->cdev
), flags
);
1550 dasd_schedule_device_bh(device
);
1554 * Setup timeout for a device in jiffies.
1556 void dasd_device_set_timer(struct dasd_device
*device
, int expires
)
1559 del_timer(&device
->timer
);
1561 mod_timer(&device
->timer
, jiffies
+ expires
);
1563 EXPORT_SYMBOL(dasd_device_set_timer
);
1566 * Clear timeout for a device.
1568 void dasd_device_clear_timer(struct dasd_device
*device
)
1570 del_timer(&device
->timer
);
1572 EXPORT_SYMBOL(dasd_device_clear_timer
);
1574 static void dasd_handle_killed_request(struct ccw_device
*cdev
,
1575 unsigned long intparm
)
1577 struct dasd_ccw_req
*cqr
;
1578 struct dasd_device
*device
;
1582 cqr
= (struct dasd_ccw_req
*) intparm
;
1583 if (cqr
->status
!= DASD_CQR_IN_IO
) {
1584 DBF_EVENT_DEVID(DBF_DEBUG
, cdev
,
1585 "invalid status in handle_killed_request: "
1586 "%02x", cqr
->status
);
1590 device
= dasd_device_from_cdev_locked(cdev
);
1591 if (IS_ERR(device
)) {
1592 DBF_EVENT_DEVID(DBF_DEBUG
, cdev
, "%s",
1593 "unable to get device from cdev");
1597 if (!cqr
->startdev
||
1598 device
!= cqr
->startdev
||
1599 strncmp(cqr
->startdev
->discipline
->ebcname
,
1600 (char *) &cqr
->magic
, 4)) {
1601 DBF_EVENT_DEVID(DBF_DEBUG
, cdev
, "%s",
1602 "invalid device in request");
1603 dasd_put_device(device
);
1607 /* Schedule request to be retried. */
1608 cqr
->status
= DASD_CQR_QUEUED
;
1610 dasd_device_clear_timer(device
);
1611 dasd_schedule_device_bh(device
);
1612 dasd_put_device(device
);
1615 void dasd_generic_handle_state_change(struct dasd_device
*device
)
1617 /* First of all start sense subsystem status request. */
1618 dasd_eer_snss(device
);
1620 dasd_device_remove_stop_bits(device
, DASD_STOPPED_PENDING
);
1621 dasd_schedule_device_bh(device
);
1623 dasd_schedule_block_bh(device
->block
);
1625 EXPORT_SYMBOL_GPL(dasd_generic_handle_state_change
);
1627 static int dasd_check_hpf_error(struct irb
*irb
)
1629 return (scsw_tm_is_valid_schxs(&irb
->scsw
) &&
1630 (irb
->scsw
.tm
.sesq
== SCSW_SESQ_DEV_NOFCX
||
1631 irb
->scsw
.tm
.sesq
== SCSW_SESQ_PATH_NOFCX
));
1635 * Interrupt handler for "normal" ssch-io based dasd devices.
1637 void dasd_int_handler(struct ccw_device
*cdev
, unsigned long intparm
,
1640 struct dasd_ccw_req
*cqr
, *next
;
1641 struct dasd_device
*device
;
1642 unsigned long long now
;
1643 int nrf_suppressed
= 0;
1644 int fp_suppressed
= 0;
1648 cqr
= (struct dasd_ccw_req
*) intparm
;
1650 switch (PTR_ERR(irb
)) {
1652 if (cqr
&& cqr
->status
== DASD_CQR_CLEAR_PENDING
) {
1653 device
= cqr
->startdev
;
1654 cqr
->status
= DASD_CQR_CLEARED
;
1655 dasd_device_clear_timer(device
);
1656 wake_up(&dasd_flush_wq
);
1657 dasd_schedule_device_bh(device
);
1662 DBF_EVENT_DEVID(DBF_WARNING
, cdev
, "%s: "
1663 "request timed out\n", __func__
);
1666 DBF_EVENT_DEVID(DBF_WARNING
, cdev
, "%s: "
1667 "unknown error %ld\n", __func__
,
1670 dasd_handle_killed_request(cdev
, intparm
);
1674 now
= get_tod_clock();
1675 /* check for conditions that should be handled immediately */
1677 !(scsw_dstat(&irb
->scsw
) == (DEV_STAT_CHN_END
| DEV_STAT_DEV_END
) &&
1678 scsw_cstat(&irb
->scsw
) == 0)) {
1680 memcpy(&cqr
->irb
, irb
, sizeof(*irb
));
1681 device
= dasd_device_from_cdev_locked(cdev
);
1684 /* ignore unsolicited interrupts for DIAG discipline */
1685 if (device
->discipline
== dasd_diag_discipline_pointer
) {
1686 dasd_put_device(device
);
1691 * In some cases 'File Protected' or 'No Record Found' errors
1692 * might be expected and debug log messages for the
1693 * corresponding interrupts shouldn't be written then.
1694 * Check if either of the according suppress bits is set.
1696 sense
= dasd_get_sense(irb
);
1698 fp_suppressed
= (sense
[1] & SNS1_FILE_PROTECTED
) &&
1699 test_bit(DASD_CQR_SUPPRESS_FP
, &cqr
->flags
);
1700 nrf_suppressed
= (sense
[1] & SNS1_NO_REC_FOUND
) &&
1701 test_bit(DASD_CQR_SUPPRESS_NRF
, &cqr
->flags
);
1703 if (!(fp_suppressed
|| nrf_suppressed
))
1704 device
->discipline
->dump_sense_dbf(device
, irb
, "int");
1706 if (device
->features
& DASD_FEATURE_ERPLOG
)
1707 device
->discipline
->dump_sense(device
, cqr
, irb
);
1708 device
->discipline
->check_for_device_change(device
, cqr
, irb
);
1709 dasd_put_device(device
);
1712 /* check for for attention message */
1713 if (scsw_dstat(&irb
->scsw
) & DEV_STAT_ATTENTION
) {
1714 device
= dasd_device_from_cdev_locked(cdev
);
1715 device
->discipline
->check_attention(device
, irb
->esw
.esw1
.lpum
);
1716 dasd_put_device(device
);
1722 device
= (struct dasd_device
*) cqr
->startdev
;
1724 strncmp(device
->discipline
->ebcname
, (char *) &cqr
->magic
, 4)) {
1725 DBF_EVENT_DEVID(DBF_DEBUG
, cdev
, "%s",
1726 "invalid device in request");
1730 /* Check for clear pending */
1731 if (cqr
->status
== DASD_CQR_CLEAR_PENDING
&&
1732 scsw_fctl(&irb
->scsw
) & SCSW_FCTL_CLEAR_FUNC
) {
1733 cqr
->status
= DASD_CQR_CLEARED
;
1734 dasd_device_clear_timer(device
);
1735 wake_up(&dasd_flush_wq
);
1736 dasd_schedule_device_bh(device
);
1740 /* check status - the request might have been killed by dyn detach */
1741 if (cqr
->status
!= DASD_CQR_IN_IO
) {
1742 DBF_DEV_EVENT(DBF_DEBUG
, device
, "invalid status: bus_id %s, "
1743 "status %02x", dev_name(&cdev
->dev
), cqr
->status
);
1749 if (scsw_dstat(&irb
->scsw
) == (DEV_STAT_CHN_END
| DEV_STAT_DEV_END
) &&
1750 scsw_cstat(&irb
->scsw
) == 0) {
1751 /* request was completed successfully */
1752 cqr
->status
= DASD_CQR_SUCCESS
;
1754 /* Start first request on queue if possible -> fast_io. */
1755 if (cqr
->devlist
.next
!= &device
->ccw_queue
) {
1756 next
= list_entry(cqr
->devlist
.next
,
1757 struct dasd_ccw_req
, devlist
);
1759 } else { /* error */
1760 /* check for HPF error
1761 * call discipline function to requeue all requests
1762 * and disable HPF accordingly
1764 if (cqr
->cpmode
&& dasd_check_hpf_error(irb
) &&
1765 device
->discipline
->handle_hpf_error
)
1766 device
->discipline
->handle_hpf_error(device
, irb
);
1768 * If we don't want complex ERP for this request, then just
1769 * reset this and retry it in the fastpath
1771 if (!test_bit(DASD_CQR_FLAGS_USE_ERP
, &cqr
->flags
) &&
1773 if (cqr
->lpm
== dasd_path_get_opm(device
))
1774 DBF_DEV_EVENT(DBF_DEBUG
, device
,
1775 "default ERP in fastpath "
1776 "(%i retries left)",
1778 if (!test_bit(DASD_CQR_VERIFY_PATH
, &cqr
->flags
))
1779 cqr
->lpm
= dasd_path_get_opm(device
);
1780 cqr
->status
= DASD_CQR_QUEUED
;
1783 cqr
->status
= DASD_CQR_ERROR
;
1785 if (next
&& (next
->status
== DASD_CQR_QUEUED
) &&
1786 (!device
->stopped
)) {
1787 if (device
->discipline
->start_IO(next
) == 0)
1788 expires
= next
->expires
;
1791 dasd_device_set_timer(device
, expires
);
1793 dasd_device_clear_timer(device
);
1794 dasd_schedule_device_bh(device
);
1796 EXPORT_SYMBOL(dasd_int_handler
);
1798 enum uc_todo
dasd_generic_uc_handler(struct ccw_device
*cdev
, struct irb
*irb
)
1800 struct dasd_device
*device
;
1802 device
= dasd_device_from_cdev_locked(cdev
);
1806 if (test_bit(DASD_FLAG_OFFLINE
, &device
->flags
) ||
1807 device
->state
!= device
->target
||
1808 !device
->discipline
->check_for_device_change
){
1809 dasd_put_device(device
);
1812 if (device
->discipline
->dump_sense_dbf
)
1813 device
->discipline
->dump_sense_dbf(device
, irb
, "uc");
1814 device
->discipline
->check_for_device_change(device
, NULL
, irb
);
1815 dasd_put_device(device
);
1817 return UC_TODO_RETRY
;
1819 EXPORT_SYMBOL_GPL(dasd_generic_uc_handler
);
1822 * If we have an error on a dasd_block layer request then we cancel
1823 * and return all further requests from the same dasd_block as well.
1825 static void __dasd_device_recovery(struct dasd_device
*device
,
1826 struct dasd_ccw_req
*ref_cqr
)
1828 struct list_head
*l
, *n
;
1829 struct dasd_ccw_req
*cqr
;
1832 * only requeue request that came from the dasd_block layer
1834 if (!ref_cqr
->block
)
1837 list_for_each_safe(l
, n
, &device
->ccw_queue
) {
1838 cqr
= list_entry(l
, struct dasd_ccw_req
, devlist
);
1839 if (cqr
->status
== DASD_CQR_QUEUED
&&
1840 ref_cqr
->block
== cqr
->block
) {
1841 cqr
->status
= DASD_CQR_CLEARED
;
1847 * Remove those ccw requests from the queue that need to be returned
1848 * to the upper layer.
1850 static void __dasd_device_process_ccw_queue(struct dasd_device
*device
,
1851 struct list_head
*final_queue
)
1853 struct list_head
*l
, *n
;
1854 struct dasd_ccw_req
*cqr
;
1856 /* Process request with final status. */
1857 list_for_each_safe(l
, n
, &device
->ccw_queue
) {
1858 cqr
= list_entry(l
, struct dasd_ccw_req
, devlist
);
1860 /* Skip any non-final request. */
1861 if (cqr
->status
== DASD_CQR_QUEUED
||
1862 cqr
->status
== DASD_CQR_IN_IO
||
1863 cqr
->status
== DASD_CQR_CLEAR_PENDING
)
1865 if (cqr
->status
== DASD_CQR_ERROR
) {
1866 __dasd_device_recovery(device
, cqr
);
1868 /* Rechain finished requests to final queue */
1869 list_move_tail(&cqr
->devlist
, final_queue
);
1874 * the cqrs from the final queue are returned to the upper layer
1875 * by setting a dasd_block state and calling the callback function
1877 static void __dasd_device_process_final_queue(struct dasd_device
*device
,
1878 struct list_head
*final_queue
)
1880 struct list_head
*l
, *n
;
1881 struct dasd_ccw_req
*cqr
;
1882 struct dasd_block
*block
;
1883 void (*callback
)(struct dasd_ccw_req
*, void *data
);
1884 void *callback_data
;
1885 char errorstring
[ERRORLENGTH
];
1887 list_for_each_safe(l
, n
, final_queue
) {
1888 cqr
= list_entry(l
, struct dasd_ccw_req
, devlist
);
1889 list_del_init(&cqr
->devlist
);
1891 callback
= cqr
->callback
;
1892 callback_data
= cqr
->callback_data
;
1894 spin_lock_bh(&block
->queue_lock
);
1895 switch (cqr
->status
) {
1896 case DASD_CQR_SUCCESS
:
1897 cqr
->status
= DASD_CQR_DONE
;
1899 case DASD_CQR_ERROR
:
1900 cqr
->status
= DASD_CQR_NEED_ERP
;
1902 case DASD_CQR_CLEARED
:
1903 cqr
->status
= DASD_CQR_TERMINATED
;
1906 /* internal error 12 - wrong cqr status*/
1907 snprintf(errorstring
, ERRORLENGTH
, "12 %p %x02", cqr
, cqr
->status
);
1908 dev_err(&device
->cdev
->dev
,
1909 "An error occurred in the DASD device driver, "
1910 "reason=%s\n", errorstring
);
1913 if (cqr
->callback
!= NULL
)
1914 (callback
)(cqr
, callback_data
);
1916 spin_unlock_bh(&block
->queue_lock
);
1921 * Take a look at the first request on the ccw queue and check
1922 * if it reached its expire time. If so, terminate the IO.
1924 static void __dasd_device_check_expire(struct dasd_device
*device
)
1926 struct dasd_ccw_req
*cqr
;
1928 if (list_empty(&device
->ccw_queue
))
1930 cqr
= list_entry(device
->ccw_queue
.next
, struct dasd_ccw_req
, devlist
);
1931 if ((cqr
->status
== DASD_CQR_IN_IO
&& cqr
->expires
!= 0) &&
1932 (time_after_eq(jiffies
, cqr
->expires
+ cqr
->starttime
))) {
1933 if (test_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING
, &device
->flags
)) {
1935 * IO in safe offline processing should not
1936 * run out of retries
1940 if (device
->discipline
->term_IO(cqr
) != 0) {
1941 /* Hmpf, try again in 5 sec */
1942 dev_err(&device
->cdev
->dev
,
1943 "cqr %p timed out (%lus) but cannot be "
1944 "ended, retrying in 5 s\n",
1945 cqr
, (cqr
->expires
/HZ
));
1946 cqr
->expires
+= 5*HZ
;
1947 dasd_device_set_timer(device
, 5*HZ
);
1949 dev_err(&device
->cdev
->dev
,
1950 "cqr %p timed out (%lus), %i retries "
1951 "remaining\n", cqr
, (cqr
->expires
/HZ
),
1958 * return 1 when device is not eligible for IO
1960 static int __dasd_device_is_unusable(struct dasd_device
*device
,
1961 struct dasd_ccw_req
*cqr
)
1963 int mask
= ~(DASD_STOPPED_DC_WAIT
| DASD_UNRESUMED_PM
);
1965 if (test_bit(DASD_FLAG_OFFLINE
, &device
->flags
)) {
1966 /* dasd is being set offline. */
1969 if (device
->stopped
) {
1970 if (device
->stopped
& mask
) {
1971 /* stopped and CQR will not change that. */
1974 if (!test_bit(DASD_CQR_VERIFY_PATH
, &cqr
->flags
)) {
1975 /* CQR is not able to change device to
1979 /* CQR required to get device operational. */
1985 * Take a look at the first request on the ccw queue and check
1986 * if it needs to be started.
1988 static void __dasd_device_start_head(struct dasd_device
*device
)
1990 struct dasd_ccw_req
*cqr
;
1993 if (list_empty(&device
->ccw_queue
))
1995 cqr
= list_entry(device
->ccw_queue
.next
, struct dasd_ccw_req
, devlist
);
1996 if (cqr
->status
!= DASD_CQR_QUEUED
)
1998 /* if device is not usable return request to upper layer */
1999 if (__dasd_device_is_unusable(device
, cqr
)) {
2000 cqr
->intrc
= -EAGAIN
;
2001 cqr
->status
= DASD_CQR_CLEARED
;
2002 dasd_schedule_device_bh(device
);
2006 rc
= device
->discipline
->start_IO(cqr
);
2008 dasd_device_set_timer(device
, cqr
->expires
);
2009 else if (rc
== -EACCES
) {
2010 dasd_schedule_device_bh(device
);
2012 /* Hmpf, try again in 1/2 sec */
2013 dasd_device_set_timer(device
, 50);
2016 static void __dasd_device_check_path_events(struct dasd_device
*device
)
2020 if (!dasd_path_get_tbvpm(device
))
2023 if (device
->stopped
&
2024 ~(DASD_STOPPED_DC_WAIT
| DASD_UNRESUMED_PM
))
2026 rc
= device
->discipline
->verify_path(device
,
2027 dasd_path_get_tbvpm(device
));
2029 dasd_device_set_timer(device
, 50);
2031 dasd_path_clear_all_verify(device
);
2035 * Go through all request on the dasd_device request queue,
2036 * terminate them on the cdev if necessary, and return them to the
2037 * submitting layer via callback.
2039 * Make sure that all 'submitting layers' still exist when
2040 * this function is called!. In other words, when 'device' is a base
2041 * device then all block layer requests must have been removed before
2042 * via dasd_flush_block_queue.
2044 int dasd_flush_device_queue(struct dasd_device
*device
)
2046 struct dasd_ccw_req
*cqr
, *n
;
2048 struct list_head flush_queue
;
2050 INIT_LIST_HEAD(&flush_queue
);
2051 spin_lock_irq(get_ccwdev_lock(device
->cdev
));
2053 list_for_each_entry_safe(cqr
, n
, &device
->ccw_queue
, devlist
) {
2054 /* Check status and move request to flush_queue */
2055 switch (cqr
->status
) {
2056 case DASD_CQR_IN_IO
:
2057 rc
= device
->discipline
->term_IO(cqr
);
2059 /* unable to terminate requeust */
2060 dev_err(&device
->cdev
->dev
,
2061 "Flushing the DASD request queue "
2062 "failed for request %p\n", cqr
);
2063 /* stop flush processing */
2067 case DASD_CQR_QUEUED
:
2068 cqr
->stopclk
= get_tod_clock();
2069 cqr
->status
= DASD_CQR_CLEARED
;
2071 default: /* no need to modify the others */
2074 list_move_tail(&cqr
->devlist
, &flush_queue
);
2077 spin_unlock_irq(get_ccwdev_lock(device
->cdev
));
2079 * After this point all requests must be in state CLEAR_PENDING,
2080 * CLEARED, SUCCESS or ERROR. Now wait for CLEAR_PENDING to become
2081 * one of the others.
2083 list_for_each_entry_safe(cqr
, n
, &flush_queue
, devlist
)
2084 wait_event(dasd_flush_wq
,
2085 (cqr
->status
!= DASD_CQR_CLEAR_PENDING
));
2087 * Now set each request back to TERMINATED, DONE or NEED_ERP
2088 * and call the callback function of flushed requests
2090 __dasd_device_process_final_queue(device
, &flush_queue
);
2093 EXPORT_SYMBOL_GPL(dasd_flush_device_queue
);
2096 * Acquire the device lock and process queues for the device.
2098 static void dasd_device_tasklet(struct dasd_device
*device
)
2100 struct list_head final_queue
;
2102 atomic_set (&device
->tasklet_scheduled
, 0);
2103 INIT_LIST_HEAD(&final_queue
);
2104 spin_lock_irq(get_ccwdev_lock(device
->cdev
));
2105 /* Check expire time of first request on the ccw queue. */
2106 __dasd_device_check_expire(device
);
2107 /* find final requests on ccw queue */
2108 __dasd_device_process_ccw_queue(device
, &final_queue
);
2109 __dasd_device_check_path_events(device
);
2110 spin_unlock_irq(get_ccwdev_lock(device
->cdev
));
2111 /* Now call the callback function of requests with final status */
2112 __dasd_device_process_final_queue(device
, &final_queue
);
2113 spin_lock_irq(get_ccwdev_lock(device
->cdev
));
2114 /* Now check if the head of the ccw queue needs to be started. */
2115 __dasd_device_start_head(device
);
2116 spin_unlock_irq(get_ccwdev_lock(device
->cdev
));
2117 if (waitqueue_active(&shutdown_waitq
))
2118 wake_up(&shutdown_waitq
);
2119 dasd_put_device(device
);
2123 * Schedules a call to dasd_tasklet over the device tasklet.
2125 void dasd_schedule_device_bh(struct dasd_device
*device
)
2127 /* Protect against rescheduling. */
2128 if (atomic_cmpxchg (&device
->tasklet_scheduled
, 0, 1) != 0)
2130 dasd_get_device(device
);
2131 tasklet_hi_schedule(&device
->tasklet
);
2133 EXPORT_SYMBOL(dasd_schedule_device_bh
);
2135 void dasd_device_set_stop_bits(struct dasd_device
*device
, int bits
)
2137 device
->stopped
|= bits
;
2139 EXPORT_SYMBOL_GPL(dasd_device_set_stop_bits
);
2141 void dasd_device_remove_stop_bits(struct dasd_device
*device
, int bits
)
2143 device
->stopped
&= ~bits
;
2144 if (!device
->stopped
)
2145 wake_up(&generic_waitq
);
2147 EXPORT_SYMBOL_GPL(dasd_device_remove_stop_bits
);
2150 * Queue a request to the head of the device ccw_queue.
2151 * Start the I/O if possible.
2153 void dasd_add_request_head(struct dasd_ccw_req
*cqr
)
2155 struct dasd_device
*device
;
2156 unsigned long flags
;
2158 device
= cqr
->startdev
;
2159 spin_lock_irqsave(get_ccwdev_lock(device
->cdev
), flags
);
2160 cqr
->status
= DASD_CQR_QUEUED
;
2161 list_add(&cqr
->devlist
, &device
->ccw_queue
);
2162 /* let the bh start the request to keep them in order */
2163 dasd_schedule_device_bh(device
);
2164 spin_unlock_irqrestore(get_ccwdev_lock(device
->cdev
), flags
);
2166 EXPORT_SYMBOL(dasd_add_request_head
);
2169 * Queue a request to the tail of the device ccw_queue.
2170 * Start the I/O if possible.
2172 void dasd_add_request_tail(struct dasd_ccw_req
*cqr
)
2174 struct dasd_device
*device
;
2175 unsigned long flags
;
2177 device
= cqr
->startdev
;
2178 spin_lock_irqsave(get_ccwdev_lock(device
->cdev
), flags
);
2179 cqr
->status
= DASD_CQR_QUEUED
;
2180 list_add_tail(&cqr
->devlist
, &device
->ccw_queue
);
2181 /* let the bh start the request to keep them in order */
2182 dasd_schedule_device_bh(device
);
2183 spin_unlock_irqrestore(get_ccwdev_lock(device
->cdev
), flags
);
2185 EXPORT_SYMBOL(dasd_add_request_tail
);
2188 * Wakeup helper for the 'sleep_on' functions.
2190 void dasd_wakeup_cb(struct dasd_ccw_req
*cqr
, void *data
)
2192 spin_lock_irq(get_ccwdev_lock(cqr
->startdev
->cdev
));
2193 cqr
->callback_data
= DASD_SLEEPON_END_TAG
;
2194 spin_unlock_irq(get_ccwdev_lock(cqr
->startdev
->cdev
));
2195 wake_up(&generic_waitq
);
2197 EXPORT_SYMBOL_GPL(dasd_wakeup_cb
);
2199 static inline int _wait_for_wakeup(struct dasd_ccw_req
*cqr
)
2201 struct dasd_device
*device
;
2204 device
= cqr
->startdev
;
2205 spin_lock_irq(get_ccwdev_lock(device
->cdev
));
2206 rc
= (cqr
->callback_data
== DASD_SLEEPON_END_TAG
);
2207 spin_unlock_irq(get_ccwdev_lock(device
->cdev
));
2212 * checks if error recovery is necessary, returns 1 if yes, 0 otherwise.
2214 static int __dasd_sleep_on_erp(struct dasd_ccw_req
*cqr
)
2216 struct dasd_device
*device
;
2217 dasd_erp_fn_t erp_fn
;
2219 if (cqr
->status
== DASD_CQR_FILLED
)
2221 device
= cqr
->startdev
;
2222 if (test_bit(DASD_CQR_FLAGS_USE_ERP
, &cqr
->flags
)) {
2223 if (cqr
->status
== DASD_CQR_TERMINATED
) {
2224 device
->discipline
->handle_terminated_request(cqr
);
2227 if (cqr
->status
== DASD_CQR_NEED_ERP
) {
2228 erp_fn
= device
->discipline
->erp_action(cqr
);
2232 if (cqr
->status
== DASD_CQR_FAILED
)
2233 dasd_log_sense(cqr
, &cqr
->irb
);
2235 __dasd_process_erp(device
, cqr
);
2242 static int __dasd_sleep_on_loop_condition(struct dasd_ccw_req
*cqr
)
2244 if (test_bit(DASD_CQR_FLAGS_USE_ERP
, &cqr
->flags
)) {
2245 if (cqr
->refers
) /* erp is not done yet */
2247 return ((cqr
->status
!= DASD_CQR_DONE
) &&
2248 (cqr
->status
!= DASD_CQR_FAILED
));
2250 return (cqr
->status
== DASD_CQR_FILLED
);
2253 static int _dasd_sleep_on(struct dasd_ccw_req
*maincqr
, int interruptible
)
2255 struct dasd_device
*device
;
2257 struct list_head ccw_queue
;
2258 struct dasd_ccw_req
*cqr
;
2260 INIT_LIST_HEAD(&ccw_queue
);
2261 maincqr
->status
= DASD_CQR_FILLED
;
2262 device
= maincqr
->startdev
;
2263 list_add(&maincqr
->blocklist
, &ccw_queue
);
2264 for (cqr
= maincqr
; __dasd_sleep_on_loop_condition(cqr
);
2265 cqr
= list_first_entry(&ccw_queue
,
2266 struct dasd_ccw_req
, blocklist
)) {
2268 if (__dasd_sleep_on_erp(cqr
))
2270 if (cqr
->status
!= DASD_CQR_FILLED
) /* could be failed */
2272 if (test_bit(DASD_FLAG_LOCK_STOLEN
, &device
->flags
) &&
2273 !test_bit(DASD_CQR_ALLOW_SLOCK
, &cqr
->flags
)) {
2274 cqr
->status
= DASD_CQR_FAILED
;
2275 cqr
->intrc
= -EPERM
;
2278 /* Non-temporary stop condition will trigger fail fast */
2279 if (device
->stopped
& ~DASD_STOPPED_PENDING
&&
2280 test_bit(DASD_CQR_FLAGS_FAILFAST
, &cqr
->flags
) &&
2281 (!dasd_eer_enabled(device
))) {
2282 cqr
->status
= DASD_CQR_FAILED
;
2283 cqr
->intrc
= -ENOLINK
;
2287 * Don't try to start requests if device is in
2288 * offline processing, it might wait forever
2290 if (test_bit(DASD_FLAG_OFFLINE
, &device
->flags
)) {
2291 cqr
->status
= DASD_CQR_FAILED
;
2292 cqr
->intrc
= -ENODEV
;
2296 * Don't try to start requests if device is stopped
2297 * except path verification requests
2299 if (!test_bit(DASD_CQR_VERIFY_PATH
, &cqr
->flags
)) {
2300 if (interruptible
) {
2301 rc
= wait_event_interruptible(
2302 generic_waitq
, !(device
->stopped
));
2303 if (rc
== -ERESTARTSYS
) {
2304 cqr
->status
= DASD_CQR_FAILED
;
2305 maincqr
->intrc
= rc
;
2309 wait_event(generic_waitq
, !(device
->stopped
));
2312 cqr
->callback
= dasd_wakeup_cb
;
2314 cqr
->callback_data
= DASD_SLEEPON_START_TAG
;
2315 dasd_add_request_tail(cqr
);
2316 if (interruptible
) {
2317 rc
= wait_event_interruptible(
2318 generic_waitq
, _wait_for_wakeup(cqr
));
2319 if (rc
== -ERESTARTSYS
) {
2320 dasd_cancel_req(cqr
);
2321 /* wait (non-interruptible) for final status */
2322 wait_event(generic_waitq
,
2323 _wait_for_wakeup(cqr
));
2324 cqr
->status
= DASD_CQR_FAILED
;
2325 maincqr
->intrc
= rc
;
2329 wait_event(generic_waitq
, _wait_for_wakeup(cqr
));
2332 maincqr
->endclk
= get_tod_clock();
2333 if ((maincqr
->status
!= DASD_CQR_DONE
) &&
2334 (maincqr
->intrc
!= -ERESTARTSYS
))
2335 dasd_log_sense(maincqr
, &maincqr
->irb
);
2336 if (maincqr
->status
== DASD_CQR_DONE
)
2338 else if (maincqr
->intrc
)
2339 rc
= maincqr
->intrc
;
2345 static inline int _wait_for_wakeup_queue(struct list_head
*ccw_queue
)
2347 struct dasd_ccw_req
*cqr
;
2349 list_for_each_entry(cqr
, ccw_queue
, blocklist
) {
2350 if (cqr
->callback_data
!= DASD_SLEEPON_END_TAG
)
2357 static int _dasd_sleep_on_queue(struct list_head
*ccw_queue
, int interruptible
)
2359 struct dasd_device
*device
;
2360 struct dasd_ccw_req
*cqr
, *n
;
2365 list_for_each_entry_safe(cqr
, n
, ccw_queue
, blocklist
) {
2366 device
= cqr
->startdev
;
2367 if (cqr
->status
!= DASD_CQR_FILLED
) /*could be failed*/
2370 if (test_bit(DASD_FLAG_LOCK_STOLEN
, &device
->flags
) &&
2371 !test_bit(DASD_CQR_ALLOW_SLOCK
, &cqr
->flags
)) {
2372 cqr
->status
= DASD_CQR_FAILED
;
2373 cqr
->intrc
= -EPERM
;
2376 /*Non-temporary stop condition will trigger fail fast*/
2377 if (device
->stopped
& ~DASD_STOPPED_PENDING
&&
2378 test_bit(DASD_CQR_FLAGS_FAILFAST
, &cqr
->flags
) &&
2379 !dasd_eer_enabled(device
)) {
2380 cqr
->status
= DASD_CQR_FAILED
;
2381 cqr
->intrc
= -EAGAIN
;
2385 /*Don't try to start requests if device is stopped*/
2386 if (interruptible
) {
2387 rc
= wait_event_interruptible(
2388 generic_waitq
, !device
->stopped
);
2389 if (rc
== -ERESTARTSYS
) {
2390 cqr
->status
= DASD_CQR_FAILED
;
2395 wait_event(generic_waitq
, !(device
->stopped
));
2398 cqr
->callback
= dasd_wakeup_cb
;
2399 cqr
->callback_data
= DASD_SLEEPON_START_TAG
;
2400 dasd_add_request_tail(cqr
);
2403 wait_event(generic_waitq
, _wait_for_wakeup_queue(ccw_queue
));
2406 list_for_each_entry_safe(cqr
, n
, ccw_queue
, blocklist
) {
2408 * In some cases the 'File Protected' or 'Incorrect Length'
2409 * error might be expected and error recovery would be
2410 * unnecessary in these cases. Check if the according suppress
2413 sense
= dasd_get_sense(&cqr
->irb
);
2414 if (sense
&& sense
[1] & SNS1_FILE_PROTECTED
&&
2415 test_bit(DASD_CQR_SUPPRESS_FP
, &cqr
->flags
))
2417 if (scsw_cstat(&cqr
->irb
.scsw
) == 0x40 &&
2418 test_bit(DASD_CQR_SUPPRESS_IL
, &cqr
->flags
))
2422 * for alias devices simplify error recovery and
2423 * return to upper layer
2424 * do not skip ERP requests
2426 if (cqr
->startdev
!= cqr
->basedev
&& !cqr
->refers
&&
2427 (cqr
->status
== DASD_CQR_TERMINATED
||
2428 cqr
->status
== DASD_CQR_NEED_ERP
))
2431 /* normal recovery for basedev IO */
2432 if (__dasd_sleep_on_erp(cqr
))
2433 /* handle erp first */
2441 * Queue a request to the tail of the device ccw_queue and wait for
2444 int dasd_sleep_on(struct dasd_ccw_req
*cqr
)
2446 return _dasd_sleep_on(cqr
, 0);
2448 EXPORT_SYMBOL(dasd_sleep_on
);
2451 * Start requests from a ccw_queue and wait for their completion.
2453 int dasd_sleep_on_queue(struct list_head
*ccw_queue
)
2455 return _dasd_sleep_on_queue(ccw_queue
, 0);
2457 EXPORT_SYMBOL(dasd_sleep_on_queue
);
2460 * Queue a request to the tail of the device ccw_queue and wait
2461 * interruptible for it's completion.
2463 int dasd_sleep_on_interruptible(struct dasd_ccw_req
*cqr
)
2465 return _dasd_sleep_on(cqr
, 1);
2467 EXPORT_SYMBOL(dasd_sleep_on_interruptible
);
2470 * Whoa nelly now it gets really hairy. For some functions (e.g. steal lock
2471 * for eckd devices) the currently running request has to be terminated
2472 * and be put back to status queued, before the special request is added
2473 * to the head of the queue. Then the special request is waited on normally.
2475 static inline int _dasd_term_running_cqr(struct dasd_device
*device
)
2477 struct dasd_ccw_req
*cqr
;
2480 if (list_empty(&device
->ccw_queue
))
2482 cqr
= list_entry(device
->ccw_queue
.next
, struct dasd_ccw_req
, devlist
);
2483 rc
= device
->discipline
->term_IO(cqr
);
2486 * CQR terminated because a more important request is pending.
2487 * Undo decreasing of retry counter because this is
2488 * not an error case.
2494 int dasd_sleep_on_immediatly(struct dasd_ccw_req
*cqr
)
2496 struct dasd_device
*device
;
2499 device
= cqr
->startdev
;
2500 if (test_bit(DASD_FLAG_LOCK_STOLEN
, &device
->flags
) &&
2501 !test_bit(DASD_CQR_ALLOW_SLOCK
, &cqr
->flags
)) {
2502 cqr
->status
= DASD_CQR_FAILED
;
2503 cqr
->intrc
= -EPERM
;
2506 spin_lock_irq(get_ccwdev_lock(device
->cdev
));
2507 rc
= _dasd_term_running_cqr(device
);
2509 spin_unlock_irq(get_ccwdev_lock(device
->cdev
));
2512 cqr
->callback
= dasd_wakeup_cb
;
2513 cqr
->callback_data
= DASD_SLEEPON_START_TAG
;
2514 cqr
->status
= DASD_CQR_QUEUED
;
2516 * add new request as second
2517 * first the terminated cqr needs to be finished
2519 list_add(&cqr
->devlist
, device
->ccw_queue
.next
);
2521 /* let the bh start the request to keep them in order */
2522 dasd_schedule_device_bh(device
);
2524 spin_unlock_irq(get_ccwdev_lock(device
->cdev
));
2526 wait_event(generic_waitq
, _wait_for_wakeup(cqr
));
2528 if (cqr
->status
== DASD_CQR_DONE
)
2530 else if (cqr
->intrc
)
2536 dasd_schedule_device_bh(device
);
2538 dasd_schedule_block_bh(device
->block
);
2542 EXPORT_SYMBOL(dasd_sleep_on_immediatly
);
2545 * Cancels a request that was started with dasd_sleep_on_req.
2546 * This is useful to timeout requests. The request will be
2547 * terminated if it is currently in i/o.
2548 * Returns 0 if request termination was successful
2549 * negative error code if termination failed
2550 * Cancellation of a request is an asynchronous operation! The calling
2551 * function has to wait until the request is properly returned via callback.
2553 int dasd_cancel_req(struct dasd_ccw_req
*cqr
)
2555 struct dasd_device
*device
= cqr
->startdev
;
2556 unsigned long flags
;
2560 spin_lock_irqsave(get_ccwdev_lock(device
->cdev
), flags
);
2561 switch (cqr
->status
) {
2562 case DASD_CQR_QUEUED
:
2563 /* request was not started - just set to cleared */
2564 cqr
->status
= DASD_CQR_CLEARED
;
2565 if (cqr
->callback_data
== DASD_SLEEPON_START_TAG
)
2566 cqr
->callback_data
= DASD_SLEEPON_END_TAG
;
2568 case DASD_CQR_IN_IO
:
2569 /* request in IO - terminate IO and release again */
2570 rc
= device
->discipline
->term_IO(cqr
);
2572 dev_err(&device
->cdev
->dev
,
2573 "Cancelling request %p failed with rc=%d\n",
2576 cqr
->stopclk
= get_tod_clock();
2579 default: /* already finished or clear pending - do nothing */
2582 spin_unlock_irqrestore(get_ccwdev_lock(device
->cdev
), flags
);
2583 dasd_schedule_device_bh(device
);
2586 EXPORT_SYMBOL(dasd_cancel_req
);
2589 * SECTION: Operations of the dasd_block layer.
2593 * Timeout function for dasd_block. This is used when the block layer
2594 * is waiting for something that may not come reliably, (e.g. a state
2597 static void dasd_block_timeout(unsigned long ptr
)
2599 unsigned long flags
;
2600 struct dasd_block
*block
;
2602 block
= (struct dasd_block
*) ptr
;
2603 spin_lock_irqsave(get_ccwdev_lock(block
->base
->cdev
), flags
);
2604 /* re-activate request queue */
2605 dasd_device_remove_stop_bits(block
->base
, DASD_STOPPED_PENDING
);
2606 spin_unlock_irqrestore(get_ccwdev_lock(block
->base
->cdev
), flags
);
2607 dasd_schedule_block_bh(block
);
2611 * Setup timeout for a dasd_block in jiffies.
2613 void dasd_block_set_timer(struct dasd_block
*block
, int expires
)
2616 del_timer(&block
->timer
);
2618 mod_timer(&block
->timer
, jiffies
+ expires
);
2620 EXPORT_SYMBOL(dasd_block_set_timer
);
2623 * Clear timeout for a dasd_block.
2625 void dasd_block_clear_timer(struct dasd_block
*block
)
2627 del_timer(&block
->timer
);
2629 EXPORT_SYMBOL(dasd_block_clear_timer
);
2632 * Process finished error recovery ccw.
2634 static void __dasd_process_erp(struct dasd_device
*device
,
2635 struct dasd_ccw_req
*cqr
)
2637 dasd_erp_fn_t erp_fn
;
2639 if (cqr
->status
== DASD_CQR_DONE
)
2640 DBF_DEV_EVENT(DBF_NOTICE
, device
, "%s", "ERP successful");
2642 dev_err(&device
->cdev
->dev
, "ERP failed for the DASD\n");
2643 erp_fn
= device
->discipline
->erp_postaction(cqr
);
2648 * Fetch requests from the block device queue.
2650 static void __dasd_process_request_queue(struct dasd_block
*block
)
2652 struct request_queue
*queue
;
2653 struct request
*req
;
2654 struct dasd_ccw_req
*cqr
;
2655 struct dasd_device
*basedev
;
2656 unsigned long flags
;
2657 queue
= block
->request_queue
;
2658 basedev
= block
->base
;
2659 /* No queue ? Then there is nothing to do. */
2664 * We requeue request from the block device queue to the ccw
2665 * queue only in two states. In state DASD_STATE_READY the
2666 * partition detection is done and we need to requeue requests
2667 * for that. State DASD_STATE_ONLINE is normal block device
2670 if (basedev
->state
< DASD_STATE_READY
) {
2671 while ((req
= blk_fetch_request(block
->request_queue
)))
2672 __blk_end_request_all(req
, -EIO
);
2677 * if device is stopped do not fetch new requests
2678 * except failfast is active which will let requests fail
2679 * immediately in __dasd_block_start_head()
2681 if (basedev
->stopped
&& !(basedev
->features
& DASD_FEATURE_FAILFAST
))
2684 /* Now we try to fetch requests from the request queue */
2685 while ((req
= blk_peek_request(queue
))) {
2686 if (basedev
->features
& DASD_FEATURE_READONLY
&&
2687 rq_data_dir(req
) == WRITE
) {
2688 DBF_DEV_EVENT(DBF_ERR
, basedev
,
2689 "Rejecting write request %p",
2691 blk_start_request(req
);
2692 __blk_end_request_all(req
, -EIO
);
2695 if (test_bit(DASD_FLAG_ABORTALL
, &basedev
->flags
) &&
2696 (basedev
->features
& DASD_FEATURE_FAILFAST
||
2697 blk_noretry_request(req
))) {
2698 DBF_DEV_EVENT(DBF_ERR
, basedev
,
2699 "Rejecting failfast request %p",
2701 blk_start_request(req
);
2702 __blk_end_request_all(req
, -ETIMEDOUT
);
2705 cqr
= basedev
->discipline
->build_cp(basedev
, block
, req
);
2707 if (PTR_ERR(cqr
) == -EBUSY
)
2708 break; /* normal end condition */
2709 if (PTR_ERR(cqr
) == -ENOMEM
)
2710 break; /* terminate request queue loop */
2711 if (PTR_ERR(cqr
) == -EAGAIN
) {
2713 * The current request cannot be build right
2714 * now, we have to try later. If this request
2715 * is the head-of-queue we stop the device
2718 if (!list_empty(&block
->ccw_queue
))
2721 get_ccwdev_lock(basedev
->cdev
), flags
);
2722 dasd_device_set_stop_bits(basedev
,
2723 DASD_STOPPED_PENDING
);
2724 spin_unlock_irqrestore(
2725 get_ccwdev_lock(basedev
->cdev
), flags
);
2726 dasd_block_set_timer(block
, HZ
/2);
2729 DBF_DEV_EVENT(DBF_ERR
, basedev
,
2730 "CCW creation failed (rc=%ld) "
2733 blk_start_request(req
);
2734 __blk_end_request_all(req
, -EIO
);
2738 * Note: callback is set to dasd_return_cqr_cb in
2739 * __dasd_block_start_head to cover erp requests as well
2741 cqr
->callback_data
= (void *) req
;
2742 cqr
->status
= DASD_CQR_FILLED
;
2743 req
->completion_data
= cqr
;
2744 blk_start_request(req
);
2745 list_add_tail(&cqr
->blocklist
, &block
->ccw_queue
);
2746 INIT_LIST_HEAD(&cqr
->devlist
);
2747 dasd_profile_start(block
, cqr
, req
);
2751 static void __dasd_cleanup_cqr(struct dasd_ccw_req
*cqr
)
2753 struct request
*req
;
2757 req
= (struct request
*) cqr
->callback_data
;
2758 dasd_profile_end(cqr
->block
, cqr
, req
);
2759 status
= cqr
->block
->base
->discipline
->free_cp(cqr
, req
);
2762 else if (status
== 0) {
2763 if (cqr
->intrc
== -EPERM
)
2765 else if (cqr
->intrc
== -ENOLINK
||
2766 cqr
->intrc
== -ETIMEDOUT
)
2771 __blk_end_request_all(req
, error
);
2775 * Process ccw request queue.
2777 static void __dasd_process_block_ccw_queue(struct dasd_block
*block
,
2778 struct list_head
*final_queue
)
2780 struct list_head
*l
, *n
;
2781 struct dasd_ccw_req
*cqr
;
2782 dasd_erp_fn_t erp_fn
;
2783 unsigned long flags
;
2784 struct dasd_device
*base
= block
->base
;
2787 /* Process request with final status. */
2788 list_for_each_safe(l
, n
, &block
->ccw_queue
) {
2789 cqr
= list_entry(l
, struct dasd_ccw_req
, blocklist
);
2790 if (cqr
->status
!= DASD_CQR_DONE
&&
2791 cqr
->status
!= DASD_CQR_FAILED
&&
2792 cqr
->status
!= DASD_CQR_NEED_ERP
&&
2793 cqr
->status
!= DASD_CQR_TERMINATED
)
2796 if (cqr
->status
== DASD_CQR_TERMINATED
) {
2797 base
->discipline
->handle_terminated_request(cqr
);
2801 /* Process requests that may be recovered */
2802 if (cqr
->status
== DASD_CQR_NEED_ERP
) {
2803 erp_fn
= base
->discipline
->erp_action(cqr
);
2804 if (IS_ERR(erp_fn(cqr
)))
2809 /* log sense for fatal error */
2810 if (cqr
->status
== DASD_CQR_FAILED
) {
2811 dasd_log_sense(cqr
, &cqr
->irb
);
2814 /* First of all call extended error reporting. */
2815 if (dasd_eer_enabled(base
) &&
2816 cqr
->status
== DASD_CQR_FAILED
) {
2817 dasd_eer_write(base
, cqr
, DASD_EER_FATALERROR
);
2819 /* restart request */
2820 cqr
->status
= DASD_CQR_FILLED
;
2822 spin_lock_irqsave(get_ccwdev_lock(base
->cdev
), flags
);
2823 dasd_device_set_stop_bits(base
, DASD_STOPPED_QUIESCE
);
2824 spin_unlock_irqrestore(get_ccwdev_lock(base
->cdev
),
2829 /* Process finished ERP request. */
2831 __dasd_process_erp(base
, cqr
);
2835 /* Rechain finished requests to final queue */
2836 cqr
->endclk
= get_tod_clock();
2837 list_move_tail(&cqr
->blocklist
, final_queue
);
2841 static void dasd_return_cqr_cb(struct dasd_ccw_req
*cqr
, void *data
)
2843 dasd_schedule_block_bh(cqr
->block
);
2846 static void __dasd_block_start_head(struct dasd_block
*block
)
2848 struct dasd_ccw_req
*cqr
;
2850 if (list_empty(&block
->ccw_queue
))
2852 /* We allways begin with the first requests on the queue, as some
2853 * of previously started requests have to be enqueued on a
2854 * dasd_device again for error recovery.
2856 list_for_each_entry(cqr
, &block
->ccw_queue
, blocklist
) {
2857 if (cqr
->status
!= DASD_CQR_FILLED
)
2859 if (test_bit(DASD_FLAG_LOCK_STOLEN
, &block
->base
->flags
) &&
2860 !test_bit(DASD_CQR_ALLOW_SLOCK
, &cqr
->flags
)) {
2861 cqr
->status
= DASD_CQR_FAILED
;
2862 cqr
->intrc
= -EPERM
;
2863 dasd_schedule_block_bh(block
);
2866 /* Non-temporary stop condition will trigger fail fast */
2867 if (block
->base
->stopped
& ~DASD_STOPPED_PENDING
&&
2868 test_bit(DASD_CQR_FLAGS_FAILFAST
, &cqr
->flags
) &&
2869 (!dasd_eer_enabled(block
->base
))) {
2870 cqr
->status
= DASD_CQR_FAILED
;
2871 cqr
->intrc
= -ENOLINK
;
2872 dasd_schedule_block_bh(block
);
2875 /* Don't try to start requests if device is stopped */
2876 if (block
->base
->stopped
)
2879 /* just a fail safe check, should not happen */
2881 cqr
->startdev
= block
->base
;
2883 /* make sure that the requests we submit find their way back */
2884 cqr
->callback
= dasd_return_cqr_cb
;
2886 dasd_add_request_tail(cqr
);
2891 * Central dasd_block layer routine. Takes requests from the generic
2892 * block layer request queue, creates ccw requests, enqueues them on
2893 * a dasd_device and processes ccw requests that have been returned.
2895 static void dasd_block_tasklet(struct dasd_block
*block
)
2897 struct list_head final_queue
;
2898 struct list_head
*l
, *n
;
2899 struct dasd_ccw_req
*cqr
;
2901 atomic_set(&block
->tasklet_scheduled
, 0);
2902 INIT_LIST_HEAD(&final_queue
);
2903 spin_lock(&block
->queue_lock
);
2904 /* Finish off requests on ccw queue */
2905 __dasd_process_block_ccw_queue(block
, &final_queue
);
2906 spin_unlock(&block
->queue_lock
);
2907 /* Now call the callback function of requests with final status */
2908 spin_lock_irq(&block
->request_queue_lock
);
2909 list_for_each_safe(l
, n
, &final_queue
) {
2910 cqr
= list_entry(l
, struct dasd_ccw_req
, blocklist
);
2911 list_del_init(&cqr
->blocklist
);
2912 __dasd_cleanup_cqr(cqr
);
2914 spin_lock(&block
->queue_lock
);
2915 /* Get new request from the block device request queue */
2916 __dasd_process_request_queue(block
);
2917 /* Now check if the head of the ccw queue needs to be started. */
2918 __dasd_block_start_head(block
);
2919 spin_unlock(&block
->queue_lock
);
2920 spin_unlock_irq(&block
->request_queue_lock
);
2921 if (waitqueue_active(&shutdown_waitq
))
2922 wake_up(&shutdown_waitq
);
2923 dasd_put_device(block
->base
);
2926 static void _dasd_wake_block_flush_cb(struct dasd_ccw_req
*cqr
, void *data
)
2928 wake_up(&dasd_flush_wq
);
2932 * Requeue a request back to the block request queue
2933 * only works for block requests
2935 static int _dasd_requeue_request(struct dasd_ccw_req
*cqr
)
2937 struct dasd_block
*block
= cqr
->block
;
2938 struct request
*req
;
2939 unsigned long flags
;
2943 spin_lock_irqsave(&block
->request_queue_lock
, flags
);
2944 req
= (struct request
*) cqr
->callback_data
;
2945 blk_requeue_request(block
->request_queue
, req
);
2946 spin_unlock_irqrestore(&block
->request_queue_lock
, flags
);
2952 * Go through all request on the dasd_block request queue, cancel them
2953 * on the respective dasd_device, and return them to the generic
2956 static int dasd_flush_block_queue(struct dasd_block
*block
)
2958 struct dasd_ccw_req
*cqr
, *n
;
2960 struct list_head flush_queue
;
2962 INIT_LIST_HEAD(&flush_queue
);
2963 spin_lock_bh(&block
->queue_lock
);
2966 list_for_each_entry_safe(cqr
, n
, &block
->ccw_queue
, blocklist
) {
2967 /* if this request currently owned by a dasd_device cancel it */
2968 if (cqr
->status
>= DASD_CQR_QUEUED
)
2969 rc
= dasd_cancel_req(cqr
);
2972 /* Rechain request (including erp chain) so it won't be
2973 * touched by the dasd_block_tasklet anymore.
2974 * Replace the callback so we notice when the request
2975 * is returned from the dasd_device layer.
2977 cqr
->callback
= _dasd_wake_block_flush_cb
;
2978 for (i
= 0; cqr
!= NULL
; cqr
= cqr
->refers
, i
++)
2979 list_move_tail(&cqr
->blocklist
, &flush_queue
);
2981 /* moved more than one request - need to restart */
2984 spin_unlock_bh(&block
->queue_lock
);
2985 /* Now call the callback function of flushed requests */
2987 list_for_each_entry_safe(cqr
, n
, &flush_queue
, blocklist
) {
2988 wait_event(dasd_flush_wq
, (cqr
->status
< DASD_CQR_QUEUED
));
2989 /* Process finished ERP request. */
2991 spin_lock_bh(&block
->queue_lock
);
2992 __dasd_process_erp(block
->base
, cqr
);
2993 spin_unlock_bh(&block
->queue_lock
);
2994 /* restart list_for_xx loop since dasd_process_erp
2995 * might remove multiple elements */
2998 /* call the callback function */
2999 spin_lock_irq(&block
->request_queue_lock
);
3000 cqr
->endclk
= get_tod_clock();
3001 list_del_init(&cqr
->blocklist
);
3002 __dasd_cleanup_cqr(cqr
);
3003 spin_unlock_irq(&block
->request_queue_lock
);
3009 * Schedules a call to dasd_tasklet over the device tasklet.
3011 void dasd_schedule_block_bh(struct dasd_block
*block
)
3013 /* Protect against rescheduling. */
3014 if (atomic_cmpxchg(&block
->tasklet_scheduled
, 0, 1) != 0)
3016 /* life cycle of block is bound to it's base device */
3017 dasd_get_device(block
->base
);
3018 tasklet_hi_schedule(&block
->tasklet
);
3020 EXPORT_SYMBOL(dasd_schedule_block_bh
);
3024 * SECTION: external block device operations
3025 * (request queue handling, open, release, etc.)
3029 * Dasd request queue function. Called from ll_rw_blk.c
3031 static void do_dasd_request(struct request_queue
*queue
)
3033 struct dasd_block
*block
;
3035 block
= queue
->queuedata
;
3036 spin_lock(&block
->queue_lock
);
3037 /* Get new request from the block device request queue */
3038 __dasd_process_request_queue(block
);
3039 /* Now check if the head of the ccw queue needs to be started. */
3040 __dasd_block_start_head(block
);
3041 spin_unlock(&block
->queue_lock
);
3045 * Block timeout callback, called from the block layer
3047 * request_queue lock is held on entry.
3050 * BLK_EH_RESET_TIMER if the request should be left running
3051 * BLK_EH_NOT_HANDLED if the request is handled or terminated
3054 enum blk_eh_timer_return
dasd_times_out(struct request
*req
)
3056 struct dasd_ccw_req
*cqr
= req
->completion_data
;
3057 struct dasd_block
*block
= req
->q
->queuedata
;
3058 struct dasd_device
*device
;
3062 return BLK_EH_NOT_HANDLED
;
3064 device
= cqr
->startdev
? cqr
->startdev
: block
->base
;
3065 if (!device
->blk_timeout
)
3066 return BLK_EH_RESET_TIMER
;
3067 DBF_DEV_EVENT(DBF_WARNING
, device
,
3068 " dasd_times_out cqr %p status %x",
3071 spin_lock(&block
->queue_lock
);
3072 spin_lock(get_ccwdev_lock(device
->cdev
));
3074 cqr
->intrc
= -ETIMEDOUT
;
3075 if (cqr
->status
>= DASD_CQR_QUEUED
) {
3076 spin_unlock(get_ccwdev_lock(device
->cdev
));
3077 rc
= dasd_cancel_req(cqr
);
3078 } else if (cqr
->status
== DASD_CQR_FILLED
||
3079 cqr
->status
== DASD_CQR_NEED_ERP
) {
3080 cqr
->status
= DASD_CQR_TERMINATED
;
3081 spin_unlock(get_ccwdev_lock(device
->cdev
));
3082 } else if (cqr
->status
== DASD_CQR_IN_ERP
) {
3083 struct dasd_ccw_req
*searchcqr
, *nextcqr
, *tmpcqr
;
3085 list_for_each_entry_safe(searchcqr
, nextcqr
,
3086 &block
->ccw_queue
, blocklist
) {
3088 while (tmpcqr
->refers
)
3089 tmpcqr
= tmpcqr
->refers
;
3092 /* searchcqr is an ERP request for cqr */
3093 searchcqr
->retries
= -1;
3094 searchcqr
->intrc
= -ETIMEDOUT
;
3095 if (searchcqr
->status
>= DASD_CQR_QUEUED
) {
3096 spin_unlock(get_ccwdev_lock(device
->cdev
));
3097 rc
= dasd_cancel_req(searchcqr
);
3098 spin_lock(get_ccwdev_lock(device
->cdev
));
3099 } else if ((searchcqr
->status
== DASD_CQR_FILLED
) ||
3100 (searchcqr
->status
== DASD_CQR_NEED_ERP
)) {
3101 searchcqr
->status
= DASD_CQR_TERMINATED
;
3103 } else if (searchcqr
->status
== DASD_CQR_IN_ERP
) {
3105 * Shouldn't happen; most recent ERP
3106 * request is at the front of queue
3112 spin_unlock(get_ccwdev_lock(device
->cdev
));
3114 dasd_schedule_block_bh(block
);
3115 spin_unlock(&block
->queue_lock
);
3117 return rc
? BLK_EH_RESET_TIMER
: BLK_EH_NOT_HANDLED
;
3121 * Allocate and initialize request queue and default I/O scheduler.
3123 static int dasd_alloc_queue(struct dasd_block
*block
)
3125 block
->request_queue
= blk_init_queue(do_dasd_request
,
3126 &block
->request_queue_lock
);
3127 if (block
->request_queue
== NULL
)
3130 block
->request_queue
->queuedata
= block
;
3136 * Allocate and initialize request queue.
3138 static void dasd_setup_queue(struct dasd_block
*block
)
3140 struct request_queue
*q
= block
->request_queue
;
3143 if (block
->base
->features
& DASD_FEATURE_USERAW
) {
3145 * the max_blocks value for raw_track access is 256
3146 * it is higher than the native ECKD value because we
3147 * only need one ccw per track
3148 * so the max_hw_sectors are
3149 * 2048 x 512B = 1024kB = 16 tracks
3153 max
= block
->base
->discipline
->max_blocks
<< block
->s2b_shift
;
3155 queue_flag_set_unlocked(QUEUE_FLAG_NONROT
, q
);
3156 q
->limits
.max_dev_sectors
= max
;
3157 blk_queue_logical_block_size(q
, block
->bp_block
);
3158 blk_queue_max_hw_sectors(q
, max
);
3159 blk_queue_max_segments(q
, USHRT_MAX
);
3160 /* with page sized segments we can translate each segement into
3163 blk_queue_max_segment_size(q
, PAGE_SIZE
);
3164 blk_queue_segment_boundary(q
, PAGE_SIZE
- 1);
3168 * Deactivate and free request queue.
3170 static void dasd_free_queue(struct dasd_block
*block
)
3172 if (block
->request_queue
) {
3173 blk_cleanup_queue(block
->request_queue
);
3174 block
->request_queue
= NULL
;
3179 * Flush request on the request queue.
3181 static void dasd_flush_request_queue(struct dasd_block
*block
)
3183 struct request
*req
;
3185 if (!block
->request_queue
)
3188 spin_lock_irq(&block
->request_queue_lock
);
3189 while ((req
= blk_fetch_request(block
->request_queue
)))
3190 __blk_end_request_all(req
, -EIO
);
3191 spin_unlock_irq(&block
->request_queue_lock
);
3194 static int dasd_open(struct block_device
*bdev
, fmode_t mode
)
3196 struct dasd_device
*base
;
3199 base
= dasd_device_from_gendisk(bdev
->bd_disk
);
3203 atomic_inc(&base
->block
->open_count
);
3204 if (test_bit(DASD_FLAG_OFFLINE
, &base
->flags
)) {
3209 if (!try_module_get(base
->discipline
->owner
)) {
3214 if (dasd_probeonly
) {
3215 dev_info(&base
->cdev
->dev
,
3216 "Accessing the DASD failed because it is in "
3217 "probeonly mode\n");
3222 if (base
->state
<= DASD_STATE_BASIC
) {
3223 DBF_DEV_EVENT(DBF_ERR
, base
, " %s",
3224 " Cannot open unrecognized device");
3229 if ((mode
& FMODE_WRITE
) &&
3230 (test_bit(DASD_FLAG_DEVICE_RO
, &base
->flags
) ||
3231 (base
->features
& DASD_FEATURE_READONLY
))) {
3236 dasd_put_device(base
);
3240 module_put(base
->discipline
->owner
);
3242 atomic_dec(&base
->block
->open_count
);
3243 dasd_put_device(base
);
3247 static void dasd_release(struct gendisk
*disk
, fmode_t mode
)
3249 struct dasd_device
*base
= dasd_device_from_gendisk(disk
);
3251 atomic_dec(&base
->block
->open_count
);
3252 module_put(base
->discipline
->owner
);
3253 dasd_put_device(base
);
3258 * Return disk geometry.
3260 static int dasd_getgeo(struct block_device
*bdev
, struct hd_geometry
*geo
)
3262 struct dasd_device
*base
;
3264 base
= dasd_device_from_gendisk(bdev
->bd_disk
);
3268 if (!base
->discipline
||
3269 !base
->discipline
->fill_geometry
) {
3270 dasd_put_device(base
);
3273 base
->discipline
->fill_geometry(base
->block
, geo
);
3274 geo
->start
= get_start_sect(bdev
) >> base
->block
->s2b_shift
;
3275 dasd_put_device(base
);
3279 const struct block_device_operations
3280 dasd_device_operations
= {
3281 .owner
= THIS_MODULE
,
3283 .release
= dasd_release
,
3284 .ioctl
= dasd_ioctl
,
3285 .compat_ioctl
= dasd_ioctl
,
3286 .getgeo
= dasd_getgeo
,
3289 /*******************************************************************************
3290 * end of block device operations
3296 #ifdef CONFIG_PROC_FS
3300 if (dasd_page_cache
!= NULL
) {
3301 kmem_cache_destroy(dasd_page_cache
);
3302 dasd_page_cache
= NULL
;
3304 dasd_gendisk_exit();
3306 if (dasd_debug_area
!= NULL
) {
3307 debug_unregister(dasd_debug_area
);
3308 dasd_debug_area
= NULL
;
3310 dasd_statistics_removeroot();
3314 * SECTION: common functions for ccw_driver use
3318 * Is the device read-only?
3319 * Note that this function does not report the setting of the
3320 * readonly device attribute, but how it is configured in z/VM.
3322 int dasd_device_is_ro(struct dasd_device
*device
)
3324 struct ccw_dev_id dev_id
;
3325 struct diag210 diag_data
;
3330 ccw_device_get_id(device
->cdev
, &dev_id
);
3331 memset(&diag_data
, 0, sizeof(diag_data
));
3332 diag_data
.vrdcdvno
= dev_id
.devno
;
3333 diag_data
.vrdclen
= sizeof(diag_data
);
3334 rc
= diag210(&diag_data
);
3335 if (rc
== 0 || rc
== 2) {
3336 return diag_data
.vrdcvfla
& 0x80;
3338 DBF_EVENT(DBF_WARNING
, "diag210 failed for dev=%04x with rc=%d",
3343 EXPORT_SYMBOL_GPL(dasd_device_is_ro
);
3345 static void dasd_generic_auto_online(void *data
, async_cookie_t cookie
)
3347 struct ccw_device
*cdev
= data
;
3350 ret
= ccw_device_set_online(cdev
);
3352 pr_warn("%s: Setting the DASD online failed with rc=%d\n",
3353 dev_name(&cdev
->dev
), ret
);
3357 * Initial attempt at a probe function. this can be simplified once
3358 * the other detection code is gone.
3360 int dasd_generic_probe(struct ccw_device
*cdev
,
3361 struct dasd_discipline
*discipline
)
3365 ret
= dasd_add_sysfs_files(cdev
);
3367 DBF_EVENT_DEVID(DBF_WARNING
, cdev
, "%s",
3368 "dasd_generic_probe: could not add "
3372 cdev
->handler
= &dasd_int_handler
;
3375 * Automatically online either all dasd devices (dasd_autodetect)
3376 * or all devices specified with dasd= parameters during
3379 if ((dasd_get_feature(cdev
, DASD_FEATURE_INITIAL_ONLINE
) > 0 ) ||
3380 (dasd_autodetect
&& dasd_busid_known(dev_name(&cdev
->dev
)) != 0))
3381 async_schedule(dasd_generic_auto_online
, cdev
);
3384 EXPORT_SYMBOL_GPL(dasd_generic_probe
);
3386 void dasd_generic_free_discipline(struct dasd_device
*device
)
3388 /* Forget the discipline information. */
3389 if (device
->discipline
) {
3390 if (device
->discipline
->uncheck_device
)
3391 device
->discipline
->uncheck_device(device
);
3392 module_put(device
->discipline
->owner
);
3393 device
->discipline
= NULL
;
3395 if (device
->base_discipline
) {
3396 module_put(device
->base_discipline
->owner
);
3397 device
->base_discipline
= NULL
;
3400 EXPORT_SYMBOL_GPL(dasd_generic_free_discipline
);
3403 * This will one day be called from a global not_oper handler.
3404 * It is also used by driver_unregister during module unload.
3406 void dasd_generic_remove(struct ccw_device
*cdev
)
3408 struct dasd_device
*device
;
3409 struct dasd_block
*block
;
3411 cdev
->handler
= NULL
;
3413 device
= dasd_device_from_cdev(cdev
);
3414 if (IS_ERR(device
)) {
3415 dasd_remove_sysfs_files(cdev
);
3418 if (test_and_set_bit(DASD_FLAG_OFFLINE
, &device
->flags
) &&
3419 !test_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING
, &device
->flags
)) {
3420 /* Already doing offline processing */
3421 dasd_put_device(device
);
3422 dasd_remove_sysfs_files(cdev
);
3426 * This device is removed unconditionally. Set offline
3427 * flag to prevent dasd_open from opening it while it is
3428 * no quite down yet.
3430 dasd_set_target_state(device
, DASD_STATE_NEW
);
3431 /* dasd_delete_device destroys the device reference. */
3432 block
= device
->block
;
3433 dasd_delete_device(device
);
3435 * life cycle of block is bound to device, so delete it after
3436 * device was safely removed
3439 dasd_free_block(block
);
3441 dasd_remove_sysfs_files(cdev
);
3443 EXPORT_SYMBOL_GPL(dasd_generic_remove
);
3446 * Activate a device. This is called from dasd_{eckd,fba}_probe() when either
3447 * the device is detected for the first time and is supposed to be used
3448 * or the user has started activation through sysfs.
3450 int dasd_generic_set_online(struct ccw_device
*cdev
,
3451 struct dasd_discipline
*base_discipline
)
3453 struct dasd_discipline
*discipline
;
3454 struct dasd_device
*device
;
3457 /* first online clears initial online feature flag */
3458 dasd_set_feature(cdev
, DASD_FEATURE_INITIAL_ONLINE
, 0);
3459 device
= dasd_create_device(cdev
);
3461 return PTR_ERR(device
);
3463 discipline
= base_discipline
;
3464 if (device
->features
& DASD_FEATURE_USEDIAG
) {
3465 if (!dasd_diag_discipline_pointer
) {
3466 /* Try to load the required module. */
3467 rc
= request_module(DASD_DIAG_MOD
);
3469 pr_warn("%s Setting the DASD online failed "
3470 "because the required module %s "
3471 "could not be loaded (rc=%d)\n",
3472 dev_name(&cdev
->dev
), DASD_DIAG_MOD
,
3474 dasd_delete_device(device
);
3478 /* Module init could have failed, so check again here after
3479 * request_module(). */
3480 if (!dasd_diag_discipline_pointer
) {
3481 pr_warn("%s Setting the DASD online failed because of missing DIAG discipline\n",
3482 dev_name(&cdev
->dev
));
3483 dasd_delete_device(device
);
3486 discipline
= dasd_diag_discipline_pointer
;
3488 if (!try_module_get(base_discipline
->owner
)) {
3489 dasd_delete_device(device
);
3492 if (!try_module_get(discipline
->owner
)) {
3493 module_put(base_discipline
->owner
);
3494 dasd_delete_device(device
);
3497 device
->base_discipline
= base_discipline
;
3498 device
->discipline
= discipline
;
3500 /* check_device will allocate block device if necessary */
3501 rc
= discipline
->check_device(device
);
3503 pr_warn("%s Setting the DASD online with discipline %s failed with rc=%i\n",
3504 dev_name(&cdev
->dev
), discipline
->name
, rc
);
3505 module_put(discipline
->owner
);
3506 module_put(base_discipline
->owner
);
3507 dasd_delete_device(device
);
3511 dasd_set_target_state(device
, DASD_STATE_ONLINE
);
3512 if (device
->state
<= DASD_STATE_KNOWN
) {
3513 pr_warn("%s Setting the DASD online failed because of a missing discipline\n",
3514 dev_name(&cdev
->dev
));
3516 dasd_set_target_state(device
, DASD_STATE_NEW
);
3518 dasd_free_block(device
->block
);
3519 dasd_delete_device(device
);
3521 pr_debug("dasd_generic device %s found\n",
3522 dev_name(&cdev
->dev
));
3524 wait_event(dasd_init_waitq
, _wait_for_device(device
));
3526 dasd_put_device(device
);
3529 EXPORT_SYMBOL_GPL(dasd_generic_set_online
);
3531 int dasd_generic_set_offline(struct ccw_device
*cdev
)
3533 struct dasd_device
*device
;
3534 struct dasd_block
*block
;
3535 int max_count
, open_count
, rc
;
3536 unsigned long flags
;
3539 spin_lock_irqsave(get_ccwdev_lock(cdev
), flags
);
3540 device
= dasd_device_from_cdev_locked(cdev
);
3541 if (IS_ERR(device
)) {
3542 spin_unlock_irqrestore(get_ccwdev_lock(cdev
), flags
);
3543 return PTR_ERR(device
);
3547 * We must make sure that this device is currently not in use.
3548 * The open_count is increased for every opener, that includes
3549 * the blkdev_get in dasd_scan_partitions. We are only interested
3550 * in the other openers.
3552 if (device
->block
) {
3553 max_count
= device
->block
->bdev
? 0 : -1;
3554 open_count
= atomic_read(&device
->block
->open_count
);
3555 if (open_count
> max_count
) {
3557 pr_warn("%s: The DASD cannot be set offline with open count %i\n",
3558 dev_name(&cdev
->dev
), open_count
);
3560 pr_warn("%s: The DASD cannot be set offline while it is in use\n",
3561 dev_name(&cdev
->dev
));
3562 clear_bit(DASD_FLAG_OFFLINE
, &device
->flags
);
3567 if (test_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING
, &device
->flags
)) {
3569 * safe offline already running
3570 * could only be called by normal offline so safe_offline flag
3571 * needs to be removed to run normal offline and kill all I/O
3573 if (test_and_set_bit(DASD_FLAG_OFFLINE
, &device
->flags
))
3574 /* Already doing normal offline processing */
3577 clear_bit(DASD_FLAG_SAFE_OFFLINE
, &device
->flags
);
3579 if (test_bit(DASD_FLAG_OFFLINE
, &device
->flags
))
3580 /* Already doing offline processing */
3584 set_bit(DASD_FLAG_OFFLINE
, &device
->flags
);
3585 spin_unlock_irqrestore(get_ccwdev_lock(cdev
), flags
);
3588 * if safe_offline called set safe_offline_running flag and
3589 * clear safe_offline so that a call to normal offline
3590 * can overrun safe_offline processing
3592 if (test_and_clear_bit(DASD_FLAG_SAFE_OFFLINE
, &device
->flags
) &&
3593 !test_and_set_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING
, &device
->flags
)) {
3595 * If we want to set the device safe offline all IO operations
3596 * should be finished before continuing the offline process
3597 * so sync bdev first and then wait for our queues to become
3600 /* sync blockdev and partitions */
3601 rc
= fsync_bdev(device
->block
->bdev
);
3605 /* schedule device tasklet and wait for completion */
3606 dasd_schedule_device_bh(device
);
3607 rc
= wait_event_interruptible(shutdown_waitq
,
3608 _wait_for_empty_queues(device
));
3613 dasd_set_target_state(device
, DASD_STATE_NEW
);
3614 /* dasd_delete_device destroys the device reference. */
3615 block
= device
->block
;
3616 dasd_delete_device(device
);
3618 * life cycle of block is bound to device, so delete it after
3619 * device was safely removed
3622 dasd_free_block(block
);
3626 /* interrupted by signal */
3627 clear_bit(DASD_FLAG_SAFE_OFFLINE
, &device
->flags
);
3628 clear_bit(DASD_FLAG_SAFE_OFFLINE_RUNNING
, &device
->flags
);
3629 clear_bit(DASD_FLAG_OFFLINE
, &device
->flags
);
3630 dasd_put_device(device
);
3635 dasd_put_device(device
);
3636 spin_unlock_irqrestore(get_ccwdev_lock(cdev
), flags
);
3640 EXPORT_SYMBOL_GPL(dasd_generic_set_offline
);
3642 int dasd_generic_last_path_gone(struct dasd_device
*device
)
3644 struct dasd_ccw_req
*cqr
;
3646 dev_warn(&device
->cdev
->dev
, "No operational channel path is left "
3647 "for the device\n");
3648 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s", "last path gone");
3649 /* First of all call extended error reporting. */
3650 dasd_eer_write(device
, NULL
, DASD_EER_NOPATH
);
3652 if (device
->state
< DASD_STATE_BASIC
)
3654 /* Device is active. We want to keep it. */
3655 list_for_each_entry(cqr
, &device
->ccw_queue
, devlist
)
3656 if ((cqr
->status
== DASD_CQR_IN_IO
) ||
3657 (cqr
->status
== DASD_CQR_CLEAR_PENDING
)) {
3658 cqr
->status
= DASD_CQR_QUEUED
;
3661 dasd_device_set_stop_bits(device
, DASD_STOPPED_DC_WAIT
);
3662 dasd_device_clear_timer(device
);
3663 dasd_schedule_device_bh(device
);
3666 EXPORT_SYMBOL_GPL(dasd_generic_last_path_gone
);
3668 int dasd_generic_path_operational(struct dasd_device
*device
)
3670 dev_info(&device
->cdev
->dev
, "A channel path to the device has become "
3672 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s", "path operational");
3673 dasd_device_remove_stop_bits(device
, DASD_STOPPED_DC_WAIT
);
3674 if (device
->stopped
& DASD_UNRESUMED_PM
) {
3675 dasd_device_remove_stop_bits(device
, DASD_UNRESUMED_PM
);
3676 dasd_restore_device(device
);
3679 dasd_schedule_device_bh(device
);
3681 dasd_schedule_block_bh(device
->block
);
3683 if (!device
->stopped
)
3684 wake_up(&generic_waitq
);
3688 EXPORT_SYMBOL_GPL(dasd_generic_path_operational
);
3690 int dasd_generic_notify(struct ccw_device
*cdev
, int event
)
3692 struct dasd_device
*device
;
3695 device
= dasd_device_from_cdev_locked(cdev
);
3703 dasd_path_no_path(device
);
3704 ret
= dasd_generic_last_path_gone(device
);
3708 if (dasd_path_get_opm(device
))
3709 ret
= dasd_generic_path_operational(device
);
3712 dasd_put_device(device
);
3715 EXPORT_SYMBOL_GPL(dasd_generic_notify
);
3717 void dasd_generic_path_event(struct ccw_device
*cdev
, int *path_event
)
3719 struct dasd_device
*device
;
3720 int chp
, oldopm
, hpfpm
, ifccpm
;
3722 device
= dasd_device_from_cdev_locked(cdev
);
3726 oldopm
= dasd_path_get_opm(device
);
3727 for (chp
= 0; chp
< 8; chp
++) {
3728 if (path_event
[chp
] & PE_PATH_GONE
) {
3729 dasd_path_notoper(device
, chp
);
3731 if (path_event
[chp
] & PE_PATH_AVAILABLE
) {
3732 dasd_path_available(device
, chp
);
3733 dasd_schedule_device_bh(device
);
3735 if (path_event
[chp
] & PE_PATHGROUP_ESTABLISHED
) {
3736 if (!dasd_path_is_operational(device
, chp
) &&
3737 !dasd_path_need_verify(device
, chp
)) {
3739 * we can not establish a pathgroup on an
3740 * unavailable path, so trigger a path
3741 * verification first
3743 dasd_path_available(device
, chp
);
3744 dasd_schedule_device_bh(device
);
3746 DBF_DEV_EVENT(DBF_WARNING
, device
, "%s",
3747 "Pathgroup re-established\n");
3748 if (device
->discipline
->kick_validate
)
3749 device
->discipline
->kick_validate(device
);
3752 hpfpm
= dasd_path_get_hpfpm(device
);
3753 ifccpm
= dasd_path_get_ifccpm(device
);
3754 if (!dasd_path_get_opm(device
) && hpfpm
) {
3756 * device has no operational paths but at least one path is
3757 * disabled due to HPF errors
3758 * disable HPF at all and use the path(s) again
3760 if (device
->discipline
->disable_hpf
)
3761 device
->discipline
->disable_hpf(device
);
3762 dasd_device_set_stop_bits(device
, DASD_STOPPED_NOT_ACC
);
3763 dasd_path_set_tbvpm(device
, hpfpm
);
3764 dasd_schedule_device_bh(device
);
3765 dasd_schedule_requeue(device
);
3766 } else if (!dasd_path_get_opm(device
) && ifccpm
) {
3768 * device has no operational paths but at least one path is
3769 * disabled due to IFCC errors
3770 * trigger path verification on paths with IFCC errors
3772 dasd_path_set_tbvpm(device
, ifccpm
);
3773 dasd_schedule_device_bh(device
);
3775 if (oldopm
&& !dasd_path_get_opm(device
) && !hpfpm
&& !ifccpm
) {
3776 dev_warn(&device
->cdev
->dev
,
3777 "No verified channel paths remain for the device\n");
3778 DBF_DEV_EVENT(DBF_WARNING
, device
,
3779 "%s", "last verified path gone");
3780 dasd_eer_write(device
, NULL
, DASD_EER_NOPATH
);
3781 dasd_device_set_stop_bits(device
,
3782 DASD_STOPPED_DC_WAIT
);
3784 dasd_put_device(device
);
3786 EXPORT_SYMBOL_GPL(dasd_generic_path_event
);
3788 int dasd_generic_verify_path(struct dasd_device
*device
, __u8 lpm
)
3790 if (!dasd_path_get_opm(device
) && lpm
) {
3791 dasd_path_set_opm(device
, lpm
);
3792 dasd_generic_path_operational(device
);
3794 dasd_path_add_opm(device
, lpm
);
3797 EXPORT_SYMBOL_GPL(dasd_generic_verify_path
);
3800 * clear active requests and requeue them to block layer if possible
3802 static int dasd_generic_requeue_all_requests(struct dasd_device
*device
)
3804 struct list_head requeue_queue
;
3805 struct dasd_ccw_req
*cqr
, *n
;
3806 struct dasd_ccw_req
*refers
;
3809 INIT_LIST_HEAD(&requeue_queue
);
3810 spin_lock_irq(get_ccwdev_lock(device
->cdev
));
3812 list_for_each_entry_safe(cqr
, n
, &device
->ccw_queue
, devlist
) {
3813 /* Check status and move request to flush_queue */
3814 if (cqr
->status
== DASD_CQR_IN_IO
) {
3815 rc
= device
->discipline
->term_IO(cqr
);
3817 /* unable to terminate requeust */
3818 dev_err(&device
->cdev
->dev
,
3819 "Unable to terminate request %p "
3820 "on suspend\n", cqr
);
3821 spin_unlock_irq(get_ccwdev_lock(device
->cdev
));
3822 dasd_put_device(device
);
3826 list_move_tail(&cqr
->devlist
, &requeue_queue
);
3828 spin_unlock_irq(get_ccwdev_lock(device
->cdev
));
3830 list_for_each_entry_safe(cqr
, n
, &requeue_queue
, devlist
) {
3831 wait_event(dasd_flush_wq
,
3832 (cqr
->status
!= DASD_CQR_CLEAR_PENDING
));
3834 /* mark sleepon requests as ended */
3835 if (cqr
->callback_data
== DASD_SLEEPON_START_TAG
)
3836 cqr
->callback_data
= DASD_SLEEPON_END_TAG
;
3838 /* remove requests from device and block queue */
3839 list_del_init(&cqr
->devlist
);
3840 while (cqr
->refers
!= NULL
) {
3841 refers
= cqr
->refers
;
3842 /* remove the request from the block queue */
3843 list_del(&cqr
->blocklist
);
3844 /* free the finished erp request */
3845 dasd_free_erp_request(cqr
, cqr
->memdev
);
3850 * requeue requests to blocklayer will only work
3851 * for block device requests
3853 if (_dasd_requeue_request(cqr
))
3857 list_del_init(&cqr
->blocklist
);
3858 cqr
->block
->base
->discipline
->free_cp(
3859 cqr
, (struct request
*) cqr
->callback_data
);
3863 * if requests remain then they are internal request
3864 * and go back to the device queue
3866 if (!list_empty(&requeue_queue
)) {
3867 /* move freeze_queue to start of the ccw_queue */
3868 spin_lock_irq(get_ccwdev_lock(device
->cdev
));
3869 list_splice_tail(&requeue_queue
, &device
->ccw_queue
);
3870 spin_unlock_irq(get_ccwdev_lock(device
->cdev
));
3872 /* wake up generic waitqueue for eventually ended sleepon requests */
3873 wake_up(&generic_waitq
);
3877 static void do_requeue_requests(struct work_struct
*work
)
3879 struct dasd_device
*device
= container_of(work
, struct dasd_device
,
3881 dasd_generic_requeue_all_requests(device
);
3882 dasd_device_remove_stop_bits(device
, DASD_STOPPED_NOT_ACC
);
3884 dasd_schedule_block_bh(device
->block
);
3885 dasd_put_device(device
);
3888 void dasd_schedule_requeue(struct dasd_device
*device
)
3890 dasd_get_device(device
);
3891 /* queue call to dasd_reload_device to the kernel event daemon. */
3892 if (!schedule_work(&device
->requeue_requests
))
3893 dasd_put_device(device
);
3895 EXPORT_SYMBOL(dasd_schedule_requeue
);
3897 int dasd_generic_pm_freeze(struct ccw_device
*cdev
)
3899 struct dasd_device
*device
= dasd_device_from_cdev(cdev
);
3903 return PTR_ERR(device
);
3905 /* mark device as suspended */
3906 set_bit(DASD_FLAG_SUSPENDED
, &device
->flags
);
3908 if (device
->discipline
->freeze
)
3909 rc
= device
->discipline
->freeze(device
);
3911 /* disallow new I/O */
3912 dasd_device_set_stop_bits(device
, DASD_STOPPED_PM
);
3914 return dasd_generic_requeue_all_requests(device
);
3916 EXPORT_SYMBOL_GPL(dasd_generic_pm_freeze
);
3918 int dasd_generic_restore_device(struct ccw_device
*cdev
)
3920 struct dasd_device
*device
= dasd_device_from_cdev(cdev
);
3924 return PTR_ERR(device
);
3926 /* allow new IO again */
3927 dasd_device_remove_stop_bits(device
,
3928 (DASD_STOPPED_PM
| DASD_UNRESUMED_PM
));
3930 dasd_schedule_device_bh(device
);
3933 * call discipline restore function
3934 * if device is stopped do nothing e.g. for disconnected devices
3936 if (device
->discipline
->restore
&& !(device
->stopped
))
3937 rc
= device
->discipline
->restore(device
);
3938 if (rc
|| device
->stopped
)
3940 * if the resume failed for the DASD we put it in
3941 * an UNRESUMED stop state
3943 device
->stopped
|= DASD_UNRESUMED_PM
;
3946 dasd_schedule_block_bh(device
->block
);
3948 clear_bit(DASD_FLAG_SUSPENDED
, &device
->flags
);
3949 dasd_put_device(device
);
3952 EXPORT_SYMBOL_GPL(dasd_generic_restore_device
);
3954 static struct dasd_ccw_req
*dasd_generic_build_rdc(struct dasd_device
*device
,
3956 int rdc_buffer_size
,
3959 struct dasd_ccw_req
*cqr
;
3961 unsigned long *idaw
;
3963 cqr
= dasd_smalloc_request(magic
, 1 /* RDC */, rdc_buffer_size
, device
);
3966 /* internal error 13 - Allocating the RDC request failed*/
3967 dev_err(&device
->cdev
->dev
,
3968 "An error occurred in the DASD device driver, "
3969 "reason=%s\n", "13");
3974 ccw
->cmd_code
= CCW_CMD_RDC
;
3975 if (idal_is_needed(rdc_buffer
, rdc_buffer_size
)) {
3976 idaw
= (unsigned long *) (cqr
->data
);
3977 ccw
->cda
= (__u32
)(addr_t
) idaw
;
3978 ccw
->flags
= CCW_FLAG_IDA
;
3979 idaw
= idal_create_words(idaw
, rdc_buffer
, rdc_buffer_size
);
3981 ccw
->cda
= (__u32
)(addr_t
) rdc_buffer
;
3985 ccw
->count
= rdc_buffer_size
;
3986 cqr
->startdev
= device
;
3987 cqr
->memdev
= device
;
3988 cqr
->expires
= 10*HZ
;
3990 cqr
->buildclk
= get_tod_clock();
3991 cqr
->status
= DASD_CQR_FILLED
;
3996 int dasd_generic_read_dev_chars(struct dasd_device
*device
, int magic
,
3997 void *rdc_buffer
, int rdc_buffer_size
)
4000 struct dasd_ccw_req
*cqr
;
4002 cqr
= dasd_generic_build_rdc(device
, rdc_buffer
, rdc_buffer_size
,
4005 return PTR_ERR(cqr
);
4007 ret
= dasd_sleep_on(cqr
);
4008 dasd_sfree_request(cqr
, cqr
->memdev
);
4011 EXPORT_SYMBOL_GPL(dasd_generic_read_dev_chars
);
4014 * In command mode and transport mode we need to look for sense
4015 * data in different places. The sense data itself is allways
4016 * an array of 32 bytes, so we can unify the sense data access
4019 char *dasd_get_sense(struct irb
*irb
)
4021 struct tsb
*tsb
= NULL
;
4024 if (scsw_is_tm(&irb
->scsw
) && (irb
->scsw
.tm
.fcxs
== 0x01)) {
4025 if (irb
->scsw
.tm
.tcw
)
4026 tsb
= tcw_get_tsb((struct tcw
*)(unsigned long)
4028 if (tsb
&& tsb
->length
== 64 && tsb
->flags
)
4029 switch (tsb
->flags
& 0x07) {
4030 case 1: /* tsa_iostat */
4031 sense
= tsb
->tsa
.iostat
.sense
;
4033 case 2: /* tsa_ddpc */
4034 sense
= tsb
->tsa
.ddpc
.sense
;
4037 /* currently we don't use interrogate data */
4040 } else if (irb
->esw
.esw0
.erw
.cons
) {
4045 EXPORT_SYMBOL_GPL(dasd_get_sense
);
4047 void dasd_generic_shutdown(struct ccw_device
*cdev
)
4049 struct dasd_device
*device
;
4051 device
= dasd_device_from_cdev(cdev
);
4056 dasd_schedule_block_bh(device
->block
);
4058 dasd_schedule_device_bh(device
);
4060 wait_event(shutdown_waitq
, _wait_for_empty_queues(device
));
4062 EXPORT_SYMBOL_GPL(dasd_generic_shutdown
);
4064 static int __init
dasd_init(void)
4068 init_waitqueue_head(&dasd_init_waitq
);
4069 init_waitqueue_head(&dasd_flush_wq
);
4070 init_waitqueue_head(&generic_waitq
);
4071 init_waitqueue_head(&shutdown_waitq
);
4073 /* register 'common' DASD debug area, used for all DBF_XXX calls */
4074 dasd_debug_area
= debug_register("dasd", 1, 1, 8 * sizeof(long));
4075 if (dasd_debug_area
== NULL
) {
4079 debug_register_view(dasd_debug_area
, &debug_sprintf_view
);
4080 debug_set_level(dasd_debug_area
, DBF_WARNING
);
4082 DBF_EVENT(DBF_EMERG
, "%s", "debug area created");
4084 dasd_diag_discipline_pointer
= NULL
;
4086 dasd_statistics_createroot();
4088 rc
= dasd_devmap_init();
4091 rc
= dasd_gendisk_init();
4097 rc
= dasd_eer_init();
4100 #ifdef CONFIG_PROC_FS
4101 rc
= dasd_proc_init();
4108 pr_info("The DASD device driver could not be initialized\n");
4113 module_init(dasd_init
);
4114 module_exit(dasd_exit
);