Lines Matching refs:command
16 queue is an array of 64 byte command structures, plus 2 integers (head and tail
21 An I/O is submitted to an NVMe device by constructing a 64 byte command, placing
28 There is a very detailed description of the command submission and completion
32 Most importantly, the command itself describes the operation and also, if
34 associated with the command. This host memory is the data to be written on a
35 write command, or the location to place the data on a read command. Data is
53 other information like which NVMe namespace the command is targeted at and which
55 context pointer that will be called when a completion for the resulting command
72 The second stage is building the 64 byte NVMe command itself. The command is
74 submission queue slot. Once the command has been constructed, SPDK attempts to
79 particular tracker is obtained, the command's CID value is updated with the
103 Each NVMe command has two PRP list elements embedded into it, so a separate PRP
108 With a tracker filled out, SPDK copies the 64 byte command into the actual NVMe
118 called to complete the command.