Re: [PATCH v4 3/3] mctp pcc: Implement MCTP over PCC Transport

From: Adam Young
Date: Mon Jul 08 2024 - 18:16:47 EST



On 7/4/24 06:23, Jeremy Kerr wrote:
+struct mctp_pcc_hdr {
+       u32 signature;
+       u32 flags;
+       u32 length;
+       char mctp_signature[4];
+};
I see you've added the __le annotations that I mentioned, but to a
different patch in the series. Was that intentional?


Yes.  Since the header is used by the Mailbox implementation now, in order to check the ACK flag.

It made sense to move the structure to a common location, but the change was based on your last review.