Linux-NVME Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [RFC] nvme: Fabrics should use the fctype field for data direction
@ 2017-07-12 16:58 Jon Derrick
  2017-07-13  6:55 ` Sagi Grimberg
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Jon Derrick @ 2017-07-12 16:58 UTC (permalink / raw)


Fabrics commands with opcode 0x7F use the fctype field to indicate data
direction.

Fixes: eb793e2c ("nvme.h: add NVMe over Fabrics definitions")

Signed-off-by: Jon Derrick <jonathan.derrick at intel.com>
---
I don't have a setup available to test this, but according to the fabrics spec,
we should be using fctype. Any write commands would appear to work, including
Connect, but Property Get and other read commands with opcode 0x7F looks like
they should fail.

 include/linux/nvme.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/nvme.h b/include/linux/nvme.h
index 983975b..7246059 100644
--- a/include/linux/nvme.h
+++ b/include/linux/nvme.h
@@ -1017,7 +1017,7 @@ static inline bool nvme_is_write(struct nvme_command *cmd)
 	 * Why can't we simply have a Fabrics In and Fabrics out command?
 	 */
 	if (unlikely(cmd->common.opcode == nvme_fabrics_command))
-		return cmd->fabrics.opcode & 1;
+		return cmd->fabrics.fctype & 1;
 	return cmd->common.opcode & 1;
 }
 
-- 
2.9.3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-07-25 16:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-12 16:58 [RFC] nvme: Fabrics should use the fctype field for data direction Jon Derrick
2017-07-13  6:55 ` Sagi Grimberg
2017-07-13  7:27 ` Christoph Hellwig
2017-07-13  7:59   ` Sagi Grimberg
2017-07-25 16:00 ` Christoph Hellwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox