From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 2438E45501; Wed, 26 Jun 2024 14:07:25 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6840D434D3; Wed, 26 Jun 2024 13:57:40 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.9]) by mails.dpdk.org (Postfix) with ESMTP id 7375C42E95 for ; Wed, 26 Jun 2024 13:45:56 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1719402356; x=1750938356; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=kipeKR545WzZm1vhaXMZrGyvGbfLb/HAKXwLyby3Xn8=; b=VB0UaBC19gh9m+cDpkkwd790kMIkGllcTvCMTIoxzVvqqy0NPrw24QlR xiXwJ4ZcPS6pDDa0C5NuzUghSB+XpIvxQI2bigFdAHVds5fOsUUw00o0Z 9xfuUICjsHlkIU9J9Lu//i9wt+Gra7lk0sJLgsuLOac1VbI7WFTNpbjP6 iGbbS0rrm6UUUaxdXDX1TYP+v4XSAXFSnf3iG1cIVAsdxSB/EGz8jrUMb DDRiM3a3vRCIT1FgOxHo1GubiGEEI7ebUBVRaubIOIT84f1rV8vBzlVig qEOHQf0juqliB1Sqpfon8HycMhZ8dM5SxtQ4LqHjQ2cVn/ClpYupHgoOf g==; X-CSE-ConnectionGUID: /EejxcHlR8iYju2BCtliyA== X-CSE-MsgGUID: B+LkmMA4SJKmKDq4vPGYiQ== X-IronPort-AV: E=McAfee;i="6700,10204,11114"; a="38979640" X-IronPort-AV: E=Sophos;i="6.08,266,1712646000"; d="scan'208";a="38979640" Received: from orviesa010.jf.intel.com ([10.64.159.150]) by orvoesa101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Jun 2024 04:45:56 -0700 X-CSE-ConnectionGUID: dfquHz5yR0SpJgBBRryP7Q== X-CSE-MsgGUID: j12oZI5+TQ6OKVEdIgCVjg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,266,1712646000"; d="scan'208";a="43874901" Received: from unknown (HELO silpixa00401119.ir.intel.com) ([10.55.129.167]) by orviesa010.jf.intel.com with ESMTP; 26 Jun 2024 04:45:55 -0700 From: Anatoly Burakov To: dev@dpdk.org, Jochen Behrens Cc: Ian Stokes , bruce.richardson@intel.com Subject: [PATCH v4 102/103] net/ice/base: add missing files for shared code update Date: Wed, 26 Jun 2024 12:42:30 +0100 Message-ID: X-Mailer: git-send-email 2.43.0 In-Reply-To: References: 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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org From: Ian Stokes Add missing files that are present in shared code update. Although these do not contain code add them so that shared code update matches like for like. Signed-off-by: Ian Stokes --- drivers/net/ice/base/ice_fwlog.c | 5 +++++ .../{vmxnet3/base/vmware_pack_end.h => ice/base/ice_fwlog.h} | 2 +- .../base/vmware_pack_end.h => ice/base/ice_vf_mbx.c} | 2 +- .../base/vmware_pack_end.h => ice/base/ice_vf_mbx.h} | 2 +- drivers/net/ice/base/meson.build | 2 ++ 5 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 drivers/net/ice/base/ice_fwlog.c copy drivers/net/{vmxnet3/base/vmware_pack_end.h => ice/base/ice_fwlog.h} (50%) copy drivers/net/{vmxnet3/base/vmware_pack_end.h => ice/base/ice_vf_mbx.c} (50%) copy drivers/net/{vmxnet3/base/vmware_pack_end.h => ice/base/ice_vf_mbx.h} (50%) diff --git a/drivers/net/ice/base/ice_fwlog.c b/drivers/net/ice/base/ice_fwlog.c new file mode 100644 index 0000000000..a285ff3c66 --- /dev/null +++ b/drivers/net/ice/base/ice_fwlog.c @@ -0,0 +1,5 @@ +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright(c) 2001-2023 Intel Corporation + */ + +#include "ice_osdep.h" diff --git a/drivers/net/vmxnet3/base/vmware_pack_end.h b/drivers/net/ice/base/ice_fwlog.h similarity index 50% copy from drivers/net/vmxnet3/base/vmware_pack_end.h copy to drivers/net/ice/base/ice_fwlog.h index df22590f82..220da416ec 100644 --- a/drivers/net/vmxnet3/base/vmware_pack_end.h +++ b/drivers/net/ice/base/ice_fwlog.h @@ -1,3 +1,3 @@ /* SPDX-License-Identifier: BSD-3-Clause - * Copyright(c) 2010-2014 Intel Corporation + * Copyright(c) 2001-2023 Intel Corporation */ diff --git a/drivers/net/vmxnet3/base/vmware_pack_end.h b/drivers/net/ice/base/ice_vf_mbx.c similarity index 50% copy from drivers/net/vmxnet3/base/vmware_pack_end.h copy to drivers/net/ice/base/ice_vf_mbx.c index df22590f82..220da416ec 100644 --- a/drivers/net/vmxnet3/base/vmware_pack_end.h +++ b/drivers/net/ice/base/ice_vf_mbx.c @@ -1,3 +1,3 @@ /* SPDX-License-Identifier: BSD-3-Clause - * Copyright(c) 2010-2014 Intel Corporation + * Copyright(c) 2001-2023 Intel Corporation */ diff --git a/drivers/net/vmxnet3/base/vmware_pack_end.h b/drivers/net/ice/base/ice_vf_mbx.h similarity index 50% copy from drivers/net/vmxnet3/base/vmware_pack_end.h copy to drivers/net/ice/base/ice_vf_mbx.h index df22590f82..220da416ec 100644 --- a/drivers/net/vmxnet3/base/vmware_pack_end.h +++ b/drivers/net/ice/base/ice_vf_mbx.h @@ -1,3 +1,3 @@ /* SPDX-License-Identifier: BSD-3-Clause - * Copyright(c) 2010-2014 Intel Corporation + * Copyright(c) 2001-2023 Intel Corporation */ diff --git a/drivers/net/ice/base/meson.build b/drivers/net/ice/base/meson.build index 41ed2d96c6..38ddde9e8c 100644 --- a/drivers/net/ice/base/meson.build +++ b/drivers/net/ice/base/meson.build @@ -27,6 +27,8 @@ sources = [ 'ice_xlt_kb.c', 'ice_parser_rt.c', 'ice_ddp.c', + 'ice_fwlog.c', + 'ice_vf_mbx.c', ] error_cflags = [ -- 2.43.0