Re: [PATCH 2/2] net/nfp: fix data endianness problem

2024-03-13 Thread Ferruh Yigit
On 3/11/2024 2:49 AM, Chaoyong He wrote: > From: Shihong Wang > > The algorithm key of the security framework is stored in the u8 > array according to big-endian, and the driver algorithm key is > CPU-endian of u32, so it maybe need to convert the endianness order > to ensure that the value assig

[PATCH 2/2] net/nfp: fix data endianness problem

2024-03-10 Thread Chaoyong He
From: Shihong Wang The algorithm key of the security framework is stored in the u8 array according to big-endian, and the driver algorithm key is CPU-endian of u32, so it maybe need to convert the endianness order to ensure that the value assigned to the driver is CPU-endian. This patch removes