diff options
author | Steffen Maier <[email protected]> | 2013-11-05 12:59:46 +0100 |
---|---|---|
committer | Martin Schwidefsky <[email protected]> | 2013-11-06 14:32:22 +0100 |
commit | de9587a2f54d2d0063f0dbc775328129b9daaaa2 (patch) | |
tree | c013b5729a5250b774b5476dd48fdda817d27c80 | |
parent | 106078641f32a6a10d9759f809f809725695cb09 (diff) |
s390/scm_blk: fix endless loop for requests != REQ_TYPE_FS
The while loop only peeks at the top request in the queue but does
not yet consume it. Since we only handle fs requests, we need to
dequeue and complete all other request command types with error
just in case we would ever receive such an unforeseen request.
Signed-off-by: Steffen Maier <[email protected]>
Signed-off-by: Sebastian Ott <[email protected]>
Signed-off-by: Martin Schwidefsky <[email protected]>
-rw-r--r-- | drivers/s390/block/scm_blk.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/s390/block/scm_blk.c b/drivers/s390/block/scm_blk.c index 5d73e6e49af6..548209a9c43c 100644 --- a/drivers/s390/block/scm_blk.c +++ b/drivers/s390/block/scm_blk.c @@ -223,8 +223,12 @@ static void scm_blk_request(struct request_queue *rq) int ret; while ((req = blk_peek_request(rq))) { - if (req->cmd_type != REQ_TYPE_FS) + if (req->cmd_type != REQ_TYPE_FS) { + blk_start_request(req); + blk_dump_rq_flags(req, KMSG_COMPONENT " bad request"); + blk_end_request_all(req, -EIO); continue; + } if (!scm_permit_request(bdev, req)) { scm_ensure_queue_restart(bdev); |