Skip to content

Commit

Permalink
net/mlx5e: fix up for "net/mlx5e: Move MACsec flow steering operation…
Browse files Browse the repository at this point in the history
…s to be used as core library"

Recent merge had a conflict in:

  drivers/net/ethernet/mellanox/mlx5/core/en_accel/macsec_fs.c

between commit:

  aeb6601 ("net/mlx5e: fix double free in macsec_fs_tx_create_crypto_table_groups")

from Linus' tree and commit:

  cb5ebe4 ("net/mlx5e: Move MACsec flow steering operations to be used as core library")

from the mlx5-next tree. This was missed and the former commit
got lost, bring it back.

Fixes: 3c5066c ("Merge branch 'mlx5-next' of https://git.kernel.org/pub/scm/linux/kernel/git/mellanox/linux")
Signed-off-by: Stephen Rothwell <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
  • Loading branch information
sfrothwell authored and kuba-moo committed Aug 25, 2023
1 parent 59da988 commit 10ea77e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/net/ethernet/mellanox/mlx5/core/lib/macsec_fs.c
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@ static int macsec_fs_tx_create_crypto_table_groups(struct mlx5_macsec_flow_table

if (!in) {
kfree(ft->g);
ft->g = NULL;
return -ENOMEM;
}

Expand Down

0 comments on commit 10ea77e

Please sign in to comment.