1
0
Fork 0

scm_blk: remove unneeded REQ_TYPE_FS check

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@fb.com>
hifive-unleashed-5.1
Christoph Hellwig 2017-01-31 16:57:22 +01:00 committed by Jens Axboe
parent 97b50a654d
commit 1dd128a1ff
1 changed files with 0 additions and 7 deletions

View File

@ -300,13 +300,6 @@ static void scm_blk_request(struct request_queue *rq)
struct request *req;
while ((req = blk_peek_request(rq))) {
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))
goto out;