]> git.dujemihanovic.xyz Git - linux.git/commitdiff
nvmet: use symbolic constants for CNS values
authorChristoph Hellwig <hch@lst.de>
Fri, 30 Sep 2016 11:51:10 +0000 (13:51 +0200)
committerJens Axboe <axboe@fb.com>
Wed, 19 Oct 2016 17:36:22 +0000 (11:36 -0600)
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com>
Reviewed-by: Jay Freyensee <james_p_freyensee@linux.intel.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
drivers/nvme/target/admin-cmd.c
drivers/nvme/target/discovery.c

index 6944f246e5623f5869305de0985941710d45e70e..6fe4c48a21e46520ad1e0e569a9773813ed7e233 100644 (file)
@@ -511,13 +511,13 @@ int nvmet_parse_admin_cmd(struct nvmet_req *req)
        case nvme_admin_identify:
                req->data_len = 4096;
                switch (le32_to_cpu(cmd->identify.cns)) {
-               case 0x00:
+               case NVME_ID_CNS_NS:
                        req->execute = nvmet_execute_identify_ns;
                        return 0;
-               case 0x01:
+               case NVME_ID_CNS_CTRL:
                        req->execute = nvmet_execute_identify_ctrl;
                        return 0;
-               case 0x02:
+               case NVME_ID_CNS_NS_ACTIVE_LIST:
                        req->execute = nvmet_execute_identify_nslist;
                        return 0;
                }
index a6c25fbcff3f74dbe4faf94ad92239171d061744..12f39eea569f2fb33cec45884c188d0ad8ae2493 100644 (file)
@@ -187,7 +187,7 @@ int nvmet_parse_discovery_cmd(struct nvmet_req *req)
        case nvme_admin_identify:
                req->data_len = 4096;
                switch (le32_to_cpu(cmd->identify.cns)) {
-               case 0x01:
+               case NVME_ID_CNS_CTRL:
                        req->execute =
                                nvmet_execute_identify_disc_ctrl;
                        return 0;