提交 4eef39c9 编写于 作者: C Christoph Hellwig 提交者: Jens Axboe

memstick: don't allow REQ_TYPE_BLOCK_PC requests

There is no code to issue or handle REQ_TYPE_BLOCK_PC request in the
memstick drivers, so remove the bogus conditional.
Signed-off-by: NChristoph Hellwig <hch@lst.de>
Signed-off-by: NJens Axboe <axboe@fb.com>
上级 c0acf12a
...@@ -2002,8 +2002,7 @@ static int msb_bd_getgeo(struct block_device *bdev, ...@@ -2002,8 +2002,7 @@ static int msb_bd_getgeo(struct block_device *bdev,
static int msb_prepare_req(struct request_queue *q, struct request *req) static int msb_prepare_req(struct request_queue *q, struct request *req)
{ {
if (req->cmd_type != REQ_TYPE_FS && if (req->cmd_type != REQ_TYPE_FS) {
req->cmd_type != REQ_TYPE_BLOCK_PC) {
blk_dump_rq_flags(req, "MS unsupported request"); blk_dump_rq_flags(req, "MS unsupported request");
return BLKPREP_KILL; return BLKPREP_KILL;
} }
......
...@@ -829,8 +829,7 @@ static void mspro_block_start(struct memstick_dev *card) ...@@ -829,8 +829,7 @@ static void mspro_block_start(struct memstick_dev *card)
static int mspro_block_prepare_req(struct request_queue *q, struct request *req) static int mspro_block_prepare_req(struct request_queue *q, struct request *req)
{ {
if (req->cmd_type != REQ_TYPE_FS && if (req->cmd_type != REQ_TYPE_FS) {
req->cmd_type != REQ_TYPE_BLOCK_PC) {
blk_dump_rq_flags(req, "MSPro unsupported request"); blk_dump_rq_flags(req, "MSPro unsupported request");
return BLKPREP_KILL; return BLKPREP_KILL;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册