From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124])
	by inbox.dpdk.org (Postfix) with ESMTP id 688CC4404F;
	Wed, 12 Jun 2024 17:13:08 +0200 (CEST)
Received: from mails.dpdk.org (localhost [127.0.0.1])
	by mails.dpdk.org (Postfix) with ESMTP id 312E9427B7;
	Wed, 12 Jun 2024 17:05:05 +0200 (CEST)
Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.10])
 by mails.dpdk.org (Postfix) with ESMTP id 80EED40EAB
 for <dev@dpdk.org>; Wed, 12 Jun 2024 17:05:02 +0200 (CEST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple;
 d=intel.com; i=@intel.com; q=dns/txt; s=Intel;
 t=1718204703; x=1749740703;
 h=from:to:cc:subject:date:message-id:in-reply-to:
 references:mime-version:content-transfer-encoding;
 bh=vOwtA8N4gftQAeT/qtZ+ScczZtZoV163cAyTMLNBLLU=;
 b=WEbwylQ39I5MRMMR3ie7oJ6SNXkF3NU1nL8mdTiTa4W79OWphwoSMhJ0
 S72MQk6y4jV0rWVXldgc5ml7RvSR+LxQ8dIMQxwsHVLCdEpm79oGN54lQ
 MN5Y7UIoaI2Q/c0gMVcQ3/BFLvAqHPEOG+rFcozzGSX5siImuJ2bTHur4
 y5Q7uirvtjEzfKSnDsY9LQBqwpggxn2iP6lV5412L0Sg6SXgpPpDDeD8a
 dT6oJa9jO9KPa56ZVzStrAhF8Yafe/vAKeW+Ls7pDQeXtkeDo5cRZQk44
 c67W3edcbaPtafOWEShSTYL/OQ8I40ilwJ8j0YKZnGIJ/+Q7S8NIKyxd8 g==;
X-CSE-ConnectionGUID: FglmvEXQTD+qEN4lFyM6zA==
X-CSE-MsgGUID: BvzQ9KNsTtuEMHTvaHPpNg==
X-IronPort-AV: E=McAfee;i="6700,10204,11101"; a="32459528"
X-IronPort-AV: E=Sophos;i="6.08,233,1712646000"; d="scan'208";a="32459528"
Received: from orviesa009.jf.intel.com ([10.64.159.149])
 by orvoesa102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;
 12 Jun 2024 08:04:42 -0700
X-CSE-ConnectionGUID: KzBugc/cRt6PCyxPMCX9AA==
X-CSE-MsgGUID: uuV0AjBER6We7KWfEySx+Q==
X-ExtLoop1: 1
X-IronPort-AV: E=Sophos;i="6.08,233,1712646000"; d="scan'208";a="39925334"
Received: from silpixa00401119.ir.intel.com ([10.55.129.167])
 by orviesa009.jf.intel.com with ESMTP; 12 Jun 2024 08:04:41 -0700
From: Anatoly Burakov <anatoly.burakov@intel.com>
To: dev@dpdk.org
Cc: Ian Stokes <ian.stokes@intel.com>, bruce.richardson@intel.com,
 Piotr Raczynski <piotr.raczynski@intel.com>
Subject: [PATCH v2 053/148] net/ice/base: add VSI type for subfunctions
Date: Wed, 12 Jun 2024 16:00:47 +0100
Message-ID: <136f1079476a867e9b60af119e3c8e65e23179b9.1718204528.git.anatoly.burakov@intel.com>
X-Mailer: git-send-email 2.43.0
In-Reply-To: <cover.1718204528.git.anatoly.burakov@intel.com>
References: <20240430154014.1026-1-ian.stokes@intel.com>
 <cover.1718204528.git.anatoly.burakov@intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org

From: Ian Stokes <ian.stokes@intel.com>

Add a separate VSI type for devlink subfunctions due to specific handling in the
driver.

Signed-off-by: Piotr Raczynski <piotr.raczynski@intel.com>
Signed-off-by: Ian Stokes <ian.stokes@intel.com>
---
 drivers/net/ice/base/ice_type.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/ice/base/ice_type.h b/drivers/net/ice/base/ice_type.h
index 879624fc6f..cfdae5ffb7 100644
--- a/drivers/net/ice/base/ice_type.h
+++ b/drivers/net/ice/base/ice_type.h
@@ -317,6 +317,7 @@ enum ice_vsi_type {
 	ICE_VSI_PF = 0,
 	ICE_VSI_CTRL = 3,	/* equates to ICE_VSI_PF with 1 queue pair */
 	ICE_VSI_LB = 6,
+	ICE_VSI_ADI = 8,
 };
 
 struct ice_link_status {
-- 
2.43.0