struct used by Cmd.prog_test_run command
prog_fd: fd_tretval: u32data_size_in: u32input: len of data_in
data_size_out: u32input/output: len of data_out. returns ENOSPC if data_out is too small.
data_in: u64data_out: u64repeat: u32duration: u32ctx_size_in: u32input: len of ctx_in
ctx_size_out: u32input/output: len of ctx_out. returns ENOSPC if ctx_out is too small.
ctx_in: u64ctx_out: u64pub const TestRunAttr = extern struct {
prog_fd: fd_t,
retval: u32,
/// input: len of data_in
data_size_in: u32,
/// input/output: len of data_out. returns ENOSPC if data_out is too small.
data_size_out: u32,
data_in: u64,
data_out: u64,
repeat: u32,
duration: u32,
/// input: len of ctx_in
ctx_size_in: u32,
/// input/output: len of ctx_out. returns ENOSPC if ctx_out is too small.
ctx_size_out: u32,
ctx_in: u64,
ctx_out: u64,
}