scsi: block: remove bidi support
Unused now, and another field in struct request bites the dust. Signed-off-by: Christoph Hellwig <hch@lst.de> Acked-by: Jens Axboe <axboe@kernel.dk> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
Родитель
69ed175c19
Коммит
8b3238cabd
|
@ -115,7 +115,6 @@ static int queue_pm_only_show(void *data, struct seq_file *m)
|
||||||
static const char *const blk_queue_flag_name[] = {
|
static const char *const blk_queue_flag_name[] = {
|
||||||
QUEUE_FLAG_NAME(STOPPED),
|
QUEUE_FLAG_NAME(STOPPED),
|
||||||
QUEUE_FLAG_NAME(DYING),
|
QUEUE_FLAG_NAME(DYING),
|
||||||
QUEUE_FLAG_NAME(BIDI),
|
|
||||||
QUEUE_FLAG_NAME(NOMERGES),
|
QUEUE_FLAG_NAME(NOMERGES),
|
||||||
QUEUE_FLAG_NAME(SAME_COMP),
|
QUEUE_FLAG_NAME(SAME_COMP),
|
||||||
QUEUE_FLAG_NAME(FAIL_IO),
|
QUEUE_FLAG_NAME(FAIL_IO),
|
||||||
|
|
|
@ -339,7 +339,6 @@ static struct request *blk_mq_rq_ctx_init(struct blk_mq_alloc_data *data,
|
||||||
|
|
||||||
rq->end_io = NULL;
|
rq->end_io = NULL;
|
||||||
rq->end_io_data = NULL;
|
rq->end_io_data = NULL;
|
||||||
rq->next_rq = NULL;
|
|
||||||
|
|
||||||
data->ctx->rq_dispatched[op_is_sync(op)]++;
|
data->ctx->rq_dispatched[op_is_sync(op)]++;
|
||||||
refcount_set(&rq->ref, 1);
|
refcount_set(&rq->ref, 1);
|
||||||
|
@ -549,8 +548,6 @@ inline void __blk_mq_end_request(struct request *rq, blk_status_t error)
|
||||||
rq_qos_done(rq->q, rq);
|
rq_qos_done(rq->q, rq);
|
||||||
rq->end_io(rq, error);
|
rq->end_io(rq, error);
|
||||||
} else {
|
} else {
|
||||||
if (unlikely(blk_bidi_rq(rq)))
|
|
||||||
blk_mq_free_request(rq->next_rq);
|
|
||||||
blk_mq_free_request(rq);
|
blk_mq_free_request(rq);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -234,9 +234,6 @@ struct request {
|
||||||
*/
|
*/
|
||||||
rq_end_io_fn *end_io;
|
rq_end_io_fn *end_io;
|
||||||
void *end_io_data;
|
void *end_io_data;
|
||||||
|
|
||||||
/* for bidi */
|
|
||||||
struct request *next_rq;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static inline bool blk_op_is_scsi(unsigned int op)
|
static inline bool blk_op_is_scsi(unsigned int op)
|
||||||
|
@ -572,7 +569,6 @@ struct request_queue {
|
||||||
|
|
||||||
#define QUEUE_FLAG_STOPPED 1 /* queue is stopped */
|
#define QUEUE_FLAG_STOPPED 1 /* queue is stopped */
|
||||||
#define QUEUE_FLAG_DYING 2 /* queue being torn down */
|
#define QUEUE_FLAG_DYING 2 /* queue being torn down */
|
||||||
#define QUEUE_FLAG_BIDI 4 /* queue supports bidi requests */
|
|
||||||
#define QUEUE_FLAG_NOMERGES 5 /* disable merge attempts */
|
#define QUEUE_FLAG_NOMERGES 5 /* disable merge attempts */
|
||||||
#define QUEUE_FLAG_SAME_COMP 6 /* complete on same CPU-group */
|
#define QUEUE_FLAG_SAME_COMP 6 /* complete on same CPU-group */
|
||||||
#define QUEUE_FLAG_FAIL_IO 7 /* fake timeout */
|
#define QUEUE_FLAG_FAIL_IO 7 /* fake timeout */
|
||||||
|
@ -644,8 +640,6 @@ static inline bool blk_account_rq(struct request *rq)
|
||||||
return (rq->rq_flags & RQF_STARTED) && !blk_rq_is_passthrough(rq);
|
return (rq->rq_flags & RQF_STARTED) && !blk_rq_is_passthrough(rq);
|
||||||
}
|
}
|
||||||
|
|
||||||
#define blk_bidi_rq(rq) ((rq)->next_rq != NULL)
|
|
||||||
|
|
||||||
#define list_entry_rq(ptr) list_entry((ptr), struct request, queuelist)
|
#define list_entry_rq(ptr) list_entry((ptr), struct request, queuelist)
|
||||||
|
|
||||||
#define rq_data_dir(rq) (op_is_write(req_op(rq)) ? WRITE : READ)
|
#define rq_data_dir(rq) (op_is_write(req_op(rq)) ? WRITE : READ)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче