On Tue, 22 Oct 2024 20:59:09 +0800
Junlong Wang <wang.junlo...@zte.com.cn> wrote:

> +#pragma pack(1)
> +struct qinfo {
> +     uint16_t q_type;
> +     uint16_t wq_tail;
> +     uint16_t wq_head;
> +     uint16_t cq_tail;
> +     uint16_t cq_head;
> +     uint16_t cycle;
> +};
> +
> +struct zsda_admin_resp_qcfg {
> +     uint16_t msg_type;
> +     struct qinfo qcfg;
> +     uint8_t data[14];
> +};
> +#pragma pack()
> +

Not sure why you used a pragma here and __rte_packed in all other cases.
Its ok, the effect is the same, but maybe better to be consistent.
Packed is not even needed here, the compiler will do the same layout
with or without packed in this case.

No need for a new version but you may want to look into it.

Reply via email to