summaryrefslogtreecommitdiffstats
path: root/include/linux/device-mapper.h
diff options
context:
space:
mode:
authorMike Snitzer2018-10-11 17:06:29 +0200
committerMike Snitzer2018-10-11 17:36:09 +0200
commit953923c09fe83255ae11845db1c9eb576ba73df8 (patch)
tree7408f54cf21487bee8679f55d9f1bb607ad80236 /include/linux/device-mapper.h
parentdm: remove legacy request-based IO path (diff)
downloadkernel-qcow2-linux-953923c09fe83255ae11845db1c9eb576ba73df8.tar.gz
kernel-qcow2-linux-953923c09fe83255ae11845db1c9eb576ba73df8.tar.xz
kernel-qcow2-linux-953923c09fe83255ae11845db1c9eb576ba73df8.zip
dm: rename DM_TYPE_MQ_REQUEST_BASED to DM_TYPE_REQUEST_BASED
Now that request-based DM is only using blk-mq, there is no need to differentiate between legacy "rq" and new "mq". We're back to a single request-based DM -- and there was much rejoicing! Signed-off-by: Mike Snitzer <snitzer@redhat.com>
Diffstat (limited to 'include/linux/device-mapper.h')
-rw-r--r--include/linux/device-mapper.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/linux/device-mapper.h b/include/linux/device-mapper.h
index 6fb0808e87c8..8d937754aa0c 100644
--- a/include/linux/device-mapper.h
+++ b/include/linux/device-mapper.h
@@ -26,9 +26,8 @@ enum dm_queue_mode {
DM_TYPE_NONE = 0,
DM_TYPE_BIO_BASED = 1,
DM_TYPE_REQUEST_BASED = 2,
- DM_TYPE_MQ_REQUEST_BASED = 3,
- DM_TYPE_DAX_BIO_BASED = 4,
- DM_TYPE_NVME_BIO_BASED = 5,
+ DM_TYPE_DAX_BIO_BASED = 3,
+ DM_TYPE_NVME_BIO_BASED = 4,
};
typedef enum { STATUSTYPE_INFO, STATUSTYPE_TABLE } status_type_t;