/** * struct nvme_tcp_r2t_pdu - nvme tcp ready-to-transfer pdu * * @hdr: pdu common header * @command_id: nvme command identifier which this relates to * @ttag: transfer tag (controller generated) * @r2t_offset: offset from the start of the command data * @r2t_length: length the host is allowed to send
*/ struct nvme_tcp_r2t_pdu { struct nvme_tcp_hdr hdr;
__u16 command_id;
__u16 ttag;
__le32 r2t_offset;
__le32 r2t_length;
__u8 rsvd[4];
};
/** * struct nvme_tcp_data_pdu - nvme tcp data pdu * * @hdr: pdu common header * @command_id: nvme command identifier which this relates to * @ttag: transfer tag (controller generated) * @data_offset: offset from the start of the command data * @data_length: length of the data stream
*/ struct nvme_tcp_data_pdu { struct nvme_tcp_hdr hdr;
__u16 command_id;
__u16 ttag;
__le32 data_offset;
__le32 data_length;
__u8 rsvd[4];
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.