From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id CB4F7C433F5 for ; Thu, 30 Sep 2021 23:21:11 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id B5FAF61262 for ; Thu, 30 Sep 2021 23:21:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1350247AbhI3XWy (ORCPT ); Thu, 30 Sep 2021 19:22:54 -0400 Received: from mail.kernel.org ([198.145.29.99]:55762 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1349561AbhI3XWm (ORCPT ); Thu, 30 Sep 2021 19:22:42 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 80BEB61A08; Thu, 30 Sep 2021 23:20:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1633044059; bh=TpPW4GJMm0e4nYZbqayUEE2jf12uKW/qJShFo5ZHMls=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=LbtW95nySRsQQSzUh2hRW/f0YEciHw2RKAic2kHRB+4eYqw9h3/bSWAXUOmb2Y32M /CrludtMgP8J5EysjJ49GeUBi8NKDNlPxpDKqlgLKL2ZKrjOv/Awdq1dOhUJ2nUMoV PXfpB1bah0k3/Y4d4t7PYiPD2HDSRUWif3OEL7nBic/aOvMJBcFMG1pPxOOlHvFZTe iSRsOT15X1HSnuGMmlHDTqYWlr2g8kSIr+SNXIIg5SXELUdjYSKxpRIgyZc4T+3cc4 mI/2mO36fhaEo4lczT/Rc3XV5LZekZ2clKVH1bXeyNtNpbDK1OMTAAkNW9Pu+wEtbu sfj+pkPnjHEqQ== From: Saeed Mahameed To: "David S. Miller" Cc: Jakub Kicinski , netdev@vger.kernel.org, Yevgeny Kliteynik , Saeed Mahameed Subject: [net-next 10/15] net/mlx5: DR, Add missing string for action type SAMPLER Date: Thu, 30 Sep 2021 16:20:45 -0700 Message-Id: <20210930232050.41779-11-saeed@kernel.org> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210930232050.41779-1-saeed@kernel.org> References: <20210930232050.41779-1-saeed@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Yevgeny Kliteynik Add missing string value for DR_ACTION_TYP_SAMPLER action type Signed-off-by: Yevgeny Kliteynik Signed-off-by: Saeed Mahameed --- drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c b/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c index 00199b3eae6a..50630112c8ff 100644 --- a/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c +++ b/drivers/net/ethernet/mellanox/mlx5/core/steering/dr_action.c @@ -39,6 +39,7 @@ static const char * const action_type_to_str[] = { [DR_ACTION_TYP_VPORT] = "DR_ACTION_TYP_VPORT", [DR_ACTION_TYP_POP_VLAN] = "DR_ACTION_TYP_POP_VLAN", [DR_ACTION_TYP_PUSH_VLAN] = "DR_ACTION_TYP_PUSH_VLAN", + [DR_ACTION_TYP_SAMPLER] = "DR_ACTION_TYP_SAMPLER", [DR_ACTION_TYP_INSERT_HDR] = "DR_ACTION_TYP_INSERT_HDR", [DR_ACTION_TYP_REMOVE_HDR] = "DR_ACTION_TYP_REMOVE_HDR", [DR_ACTION_TYP_MAX] = "DR_ACTION_UNKNOWN", -- 2.31.1