From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 99422A04DD; Wed, 28 Oct 2020 10:45:51 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8EA52CAA2; Wed, 28 Oct 2020 10:37:43 +0100 (CET) Received: from mail-il1-f194.google.com (mail-il1-f194.google.com [209.85.166.194]) by dpdk.org (Postfix) with ESMTP id DD0ECC8B0 for ; Wed, 28 Oct 2020 10:36:12 +0100 (CET) Received: by mail-il1-f194.google.com with SMTP id x20so4078059ilj.8 for ; Wed, 28 Oct 2020 02:36:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=Oza2ZtLEPbWJOZi5F5ha8w8oCL+tm2WbcO6AWQ5SuhE=; b=UsFcKhlr2JI7K4kFcj63jMZpMztAyvv9GAIVJ1lGo9XfHKjf5VE+ABOUmzsY43Q7tZ 1nNi+xvXeWFi0Q6NLmjcl9OwE8A310te4EZ3sBCeJQ/CzxVuW9yvMkxG8OPlp6t0a3+h cMZUzhiOvPxrnkzIFQryAIVBKV4/UvSeIr5VwWiqV7HdtKqveybHIN/n01nqX+hp+AfW xPa1DhJ6drhlE+zdQ55fBpM6GfmdKB5UmnMhlXRuQBTuIKYiM3mLWPZF2Usonj/bnW2s U5hy88azK0Dv7A6fpo4x7npeJUkqmprt3q7vxfhwurnenUIozxxinDpb5gCzG3xHk2hP aVFQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=Oza2ZtLEPbWJOZi5F5ha8w8oCL+tm2WbcO6AWQ5SuhE=; b=SNRek7qc0fv0LqLuGnSUgTbF/N8E0PlsMXKu45nkveXZYK0zzM+/UkwdmIiuLsBs2e R9kZpIBEcAhkVmmUkIBRVd0cSU542FqDXGohqvOvTGaibsOZXYHnPYaI1fa+lspqaHSZ wl+kikCjI6b+7S/wMIIgClGaMzRlhEulMkWgUIaQJh2Qeh+Ou8kAHPUOAM4x/Ih+8B0I nQGJw7La5muzTbPuS4yATVb/cdc+0z6ruEUyYP3l6EZbXTY4v3nQEYhjOZAuXVfyYdf2 8m7rwIuL6dG2eT7H8ld+KgUyhekkTislWwznjsB68HtoarlVjg2l6ammEHmkj0Dm1z3D f0qQ== X-Gm-Message-State: AOAM532hkwLrllecAwTMzr+314KFhHHpbJGPKraGLORpFtbNC4PhxUFz 03VhST4yuOuVeGuNLhynYnopJziKSOb+6kyoXzs= X-Google-Smtp-Source: ABdhPJz4A4QMKsTSlTkaJYVWhBW5Zoe3YboHIfOErHAr1x2sj0NKMLLexvjy63pvzwbz4WBixZMtI1u/LJBXnc8bvgY= X-Received: by 2002:a92:1e02:: with SMTP id e2mr5229983ile.294.1603877771332; Wed, 28 Oct 2020 02:36:11 -0700 (PDT) MIME-Version: 1.0 References: <1603728068-1617-1-git-send-email-timothy.mcdaniel@intel.com> In-Reply-To: <1603728068-1617-1-git-send-email-timothy.mcdaniel@intel.com> From: Jerin Jacob Date: Wed, 28 Oct 2020 15:05:55 +0530 Message-ID: To: Timothy McDaniel Cc: Bruce Richardson , dpdk-dev , Erik Gabriel Carrillo , Gage Eads , "Van Haaren, Harry" , Jerin Jacob Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH 1/1] eventdev: increase MAX QUEUES PER DEV to 255 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" On Mon, Oct 26, 2020 at 9:29 PM Timothy McDaniel wrote: > > DLB supports a total of 256 queues, 128 load balanced queues > and 128 directed queues. > > Signed-off-by: Timothy McDaniel > --- > config/rte_config.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/config/rte_config.h b/config/rte_config.h > index 8aa46a1..b78c6aa 100644 > --- a/config/rte_config.h > +++ b/config/rte_config.h > @@ -71,7 +71,7 @@ > > /* eventdev defines */ > #define RTE_EVENT_MAX_DEVS 16 > -#define RTE_EVENT_MAX_QUEUES_PER_DEV 64 > +#define RTE_EVENT_MAX_QUEUES_PER_DEV 255 If it is 0..255 then this value should be 256. Isn't it? > #define RTE_EVENT_TIMER_ADAPTER_NUM_MAX 32 > #define RTE_EVENT_ETH_INTR_RING_SIZE 1024 > #define RTE_EVENT_CRYPTO_ADAPTER_MAX_INSTANCE 32 > -- > 2.6.4 >