diff options
author | Christoph Hellwig <hch@lst.de> | 2021-08-27 09:11:12 +0300 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2021-09-06 10:59:03 +0300 |
commit | ab7a2737ac5acd7d485ca45d8772497717fbc781 (patch) | |
tree | 0885bee4e8fedcdce6e32d6d3d66c853aa7d8bbd /drivers/nvme/target/admin-cmd.c | |
parent | 77d651a65569a5e60f314b768500e94fcb936311 (diff) | |
download | linux-ab7a2737ac5acd7d485ca45d8772497717fbc781.tar.xz |
nvmet: return bool from nvmet_passthru_ctrl and nvmet_is_passthru_req
The target core code never needs the host-side nvme_ctrl structure.
Open code two uses of nvmet_is_passthru_req in passthru.c, and then
switch the helpers used by the core to return bool. Also rename the
fuctions to better match their usage:
nvmet_passthru_ctrl -> nvmet_is_passthru_subsys
nvmet_req_passthru_ctrl -> nvmet_is_passthru_req
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Diffstat (limited to 'drivers/nvme/target/admin-cmd.c')
-rw-r--r-- | drivers/nvme/target/admin-cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/target/admin-cmd.c b/drivers/nvme/target/admin-cmd.c index 0cb98f2bbc8c..aa6d84d8848e 100644 --- a/drivers/nvme/target/admin-cmd.c +++ b/drivers/nvme/target/admin-cmd.c @@ -1015,7 +1015,7 @@ u16 nvmet_parse_admin_cmd(struct nvmet_req *req) if (unlikely(ret)) return ret; - if (nvmet_req_passthru_ctrl(req)) + if (nvmet_is_passthru_req(req)) return nvmet_parse_passthru_admin_cmd(req); switch (cmd->common.opcode) { |