From patchwork Thu Feb 25 19:01:11 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pavan Nikhilesh Bhagavatula X-Patchwork-Id: 88258 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 19D64A034F; Thu, 25 Feb 2021 20:01:32 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0243C1608D0; Thu, 25 Feb 2021 20:01:32 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 18F3C1608CB for ; Thu, 25 Feb 2021 20:01:30 +0100 (CET) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 11PJ0PUM010946; Thu, 25 Feb 2021 11:01:26 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=OFjrFVYSuLkVGDaZ24FuP6kNcbT3jE3xbb+5G6HHTTU=; b=BPRWk5Eet7m8rNxpKp37ZCgL7Z4/Hkruj5vQVu57AevQhUH09/GKZurlyvlBs0lGhdBx fC001d7haAOwKjEBHaXTEBaGjX0R1PtuyyZSu9bRT/jM95QJllBSvzo6kZRP7JWMfcJR 2Jauy8pTbv5SPaNPeOUxq86aaVRayL2H/0kpcJ2gPa4PAts5G8sv+cC8D3KLKBWrwwo1 cpLZ14IcU6qvFYyD7p16dccj9L/C96tKWAJ+GEZGiKELSQsARxPK7GVNg5PNyzP9HzeC G+3VQKIXzwI+PbHZtRRL3zF+N5Ff71OwMIJ9DKRxYso71exjC4EEmvuHdZBRMjdCu+2l PQ== Received: from dc5-exch01.marvell.com ([199.233.59.181]) by mx0b-0016f401.pphosted.com with ESMTP id 36wxbwuaqx-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Thu, 25 Feb 2021 11:01:26 -0800 Received: from DC5-EXCH02.marvell.com (10.69.176.39) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Thu, 25 Feb 2021 11:01:24 -0800 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Thu, 25 Feb 2021 11:01:24 -0800 Received: from BG-LT7430.marvell.com (BG-LT7430.marvell.com [10.28.177.176]) by maili.marvell.com (Postfix) with ESMTP id 509F03F703F; Thu, 25 Feb 2021 11:01:20 -0800 (PST) From: To: , Ruifeng Wang , Jan Viktorin , Bruce Richardson CC: , Pavan Nikhilesh Date: Fri, 26 Feb 2021 00:31:11 +0530 Message-ID: <20210225190112.2073-2-pbhagavatula@marvell.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210225190112.2073-1-pbhagavatula@marvell.com> References: <20210225190112.2073-1-pbhagavatula@marvell.com> MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.369, 18.0.761 definitions=2021-02-25_11:2021-02-24, 2021-02-25 signatures=0 Subject: [dpdk-dev] [PATCH 2/2] config: increase interrupt vectors for octeontx2 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 Sender: "dev" From: Pavan Nikhilesh Increase maximum interrupt vectors to 1024 for octeontx2. Signed-off-by: Pavan Nikhilesh --- config/arm/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/config/arm/meson.build b/config/arm/meson.build index 00bc4610a..4e728380f 100644 --- a/config/arm/meson.build +++ b/config/arm/meson.build @@ -126,6 +126,7 @@ implementer_cavium = { ['RTE_ARM_FEATURE_ATOMICS', true], ['RTE_USE_C11_MEM_MODEL', true], ['RTE_EAL_IGB_UIO', false], + ['RTE_MAX_RXTX_INTR_VEC_ID', 1024], ['RTE_MAX_LCORE', 36], ['RTE_MAX_NUMA_NODES', 1] ]