Command data content is specific to command opcode. This is similar to command result field command_specific_result.
Hence, make it u8. This patch is on top of [1]. [1] https://lore.kernel.org/virtio-comment/[email protected]/T/#t Signed-off-by: Parav Pandit <[email protected]> --- admin.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin.tex b/admin.tex index 037e2e6..648253c 100644 --- a/admin.tex +++ b/admin.tex @@ -85,7 +85,7 @@ \subsection{Group administration commands}\label{sec:Basic Facilities of a Virti /* unused, reserved for future extensions */ u8 reserved1[12]; le64 group_member_id; - le64 command_specific_data[]; + u8 command_specific_data[]; /* Device-writable part */ le16 status; -- 2.26.2 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
