- Group the request header and I/O buffer in one structure, rather than assuming that both request structures have the same size.
- Pass a pointer to the whole structure to urndis_ctrl_query() and urndis_ctrl_set() rather than just the header. This way, on CHERI platforms, the compiler will set bounds as intended. Otherwise, on CHERI platforms these functions violate subobject bounds since they modify the buffer following the header.
While here, there is no apparent reason for the request structure used
in urndis_attach() to be allocated statically. Change it so that it's
allocated on the stack.