On Tue, Jan 14, 2025 at 06:10:19PM +0800, Yuan Wang wrote:
> From: Dan Nowlin <[email protected]>
>
> Add missing buffer copy in ixgbe_aci_send_cmd_sc().
>
> In ixgbe_aci_send_cmd_sc() there is code to retry aq commands for
> certain commands. To achieve this the function makes a copy of the
> original ixgbe_aci_desc structure and allocates memory to store an
> original copy of the command buffer. This allows the original structure
> and buffer to be restored before attempting the command again. However,
> the function didn't perform the actual copy of the original command
> buffer into the copy buffer.
>
> Signed-off-by: Dan Nowlin <[email protected]>
> Signed-off-by: Yuan Wang <[email protected]>
> ---
> drivers/net/ixgbe/base/ixgbe_e610.c | 1 +
> 1 file changed, 1 insertion(+)
>
Fixes: 25b48e569f2f ("net/ixgbe/base: add E610 Admin Command Interface")
Cc: [email protected]