diff options
author | Mike Snitzer <snitzer@redhat.com> | 2018-10-11 11:06:29 -0400 |
---|---|---|
committer | Mike Snitzer <snitzer@redhat.com> | 2018-10-11 11:36:09 -0400 |
commit | 953923c09fe83255ae11845db1c9eb576ba73df8 (patch) | |
tree | 7408f54cf21487bee8679f55d9f1bb607ad80236 /include/linux/device-mapper.h | |
parent | 6a23e05c2fe3c64ec012fd81e51e3ab51e4f2f9f (diff) |
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.h | 5 |
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 { | |||
26 | DM_TYPE_NONE = 0, | 26 | DM_TYPE_NONE = 0, |
27 | DM_TYPE_BIO_BASED = 1, | 27 | DM_TYPE_BIO_BASED = 1, |
28 | DM_TYPE_REQUEST_BASED = 2, | 28 | DM_TYPE_REQUEST_BASED = 2, |
29 | DM_TYPE_MQ_REQUEST_BASED = 3, | 29 | DM_TYPE_DAX_BIO_BASED = 3, |
30 | DM_TYPE_DAX_BIO_BASED = 4, | 30 | DM_TYPE_NVME_BIO_BASED = 4, |
31 | DM_TYPE_NVME_BIO_BASED = 5, | ||
32 | }; | 31 | }; |
33 | 32 | ||
34 | typedef enum { STATUSTYPE_INFO, STATUSTYPE_TABLE } status_type_t; | 33 | typedef enum { STATUSTYPE_INFO, STATUSTYPE_TABLE } status_type_t; |