OSDN Git Service

net/mlx5: Introduce TLS and IPSec objects enums
authorSaeed Mahameed <saeedm@mellanox.com>
Tue, 3 Mar 2020 00:15:20 +0000 (16:15 -0800)
committerSaeed Mahameed <saeedm@mellanox.com>
Sat, 7 Mar 2020 21:19:25 +0000 (13:19 -0800)
Expose the TLS encryption key general object type enum correctly,
and add the IPSec encryption key general object type enum.

Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
drivers/net/ethernet/mellanox/mlx5/core/lib/crypto.c
include/linux/mlx5/mlx5_ifc.h

index 3fc575d..dcea87e 100644 (file)
@@ -42,7 +42,7 @@ int mlx5_create_encryption_key(struct mlx5_core_dev *mdev,
 
        MLX5_SET(encryption_key_obj, obj, key_size, general_obj_key_size);
        MLX5_SET(encryption_key_obj, obj, key_type,
-                MLX5_GENERAL_OBJECT_TYPE_ENCRYPTION_KEY_TYPE_DEK);
+                MLX5_GENERAL_OBJECT_TYPE_ENCRYPTION_KEY_TYPE_TLS);
        MLX5_SET(general_obj_in_cmd_hdr, in, opcode,
                 MLX5_CMD_OP_CREATE_GENERAL_OBJECT);
        MLX5_SET(general_obj_in_cmd_hdr, in, obj_type,
index 07be46e..2e98bba 100644 (file)
@@ -10489,7 +10489,8 @@ enum {
 };
 
 enum {
-       MLX5_GENERAL_OBJECT_TYPE_ENCRYPTION_KEY_TYPE_DEK = 0x1,
+       MLX5_GENERAL_OBJECT_TYPE_ENCRYPTION_KEY_TYPE_TLS = 0x1,
+       MLX5_GENERAL_OBJECT_TYPE_ENCRYPTION_KEY_TYPE_IPSEC = 0x2,
 };
 
 struct mlx5_ifc_tls_static_params_bits {