diff options
author | Keith Busch <[email protected]> | 2016-02-11 13:05:40 -0700 |
---|---|---|
committer | Jens Axboe <[email protected]> | 2016-02-11 13:14:03 -0700 |
commit | ef2d4615c59efb312e531a5e949970f37ca1c841 (patch) | |
tree | 06e439e635c71d8c2681d313d8ba05d7b2488ecf | |
parent | 4f76d0e49835d3da33aa54811157421f7061805e (diff) |
NVMe: Allow request merges
It is generally more efficient to submit larger IO.
Signed-off-by: Keith Busch <[email protected]>
Reviewed-by: Johannes Thumshirn <[email protected]>
Reviewed-by: Sagi Grimberg <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r-- | drivers/nvme/host/core.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c index c5bf001af559..3cd921e6121e 100644 --- a/drivers/nvme/host/core.c +++ b/drivers/nvme/host/core.c @@ -1121,7 +1121,6 @@ static void nvme_alloc_ns(struct nvme_ctrl *ctrl, unsigned nsid) ns->queue = blk_mq_init_queue(ctrl->tagset); if (IS_ERR(ns->queue)) goto out_free_ns; - queue_flag_set_unlocked(QUEUE_FLAG_NOMERGES, ns->queue); queue_flag_set_unlocked(QUEUE_FLAG_NONROT, ns->queue); ns->queue->queuedata = ns; ns->ctrl = ctrl; |