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 43509A0A05; Tue, 19 Jan 2021 13:16:31 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 24B2F140DFB; Tue, 19 Jan 2021 13:16:31 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 2E09B140DE2 for ; Tue, 19 Jan 2021 13:16:29 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1611058588; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=T9tu6wlkjJnV0I/dBQ3nvGu7XM7BS1GMp2Bf4+7dy68=; b=G26O+7hNxzZ2fMaP/MNrGi+S1o7rGUo+dfu3dMMSqam5LgbmsUemsy8s8YD7Vz9cMF/2TQ t16H7Hw6kuUFmWaPBx2RGZyRIW4scXafyMZeoG6cCBghOE3ZgO1yq/eEsM7T8eeB42kaU8 hKlShhZAXz4DvVyu4tykpVLLervDo6c= Received: from mail-ua1-f71.google.com (mail-ua1-f71.google.com [209.85.222.71]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-447-yGWjKA5QMqSIlzh9IkFbjA-1; Tue, 19 Jan 2021 07:16:27 -0500 X-MC-Unique: yGWjKA5QMqSIlzh9IkFbjA-1 Received: by mail-ua1-f71.google.com with SMTP id o16so3981125uaj.10 for ; Tue, 19 Jan 2021 04:16:27 -0800 (PST) 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=T9tu6wlkjJnV0I/dBQ3nvGu7XM7BS1GMp2Bf4+7dy68=; b=sFuLl+L50oT0o+p85eJwDapZzTXaq69q/BgpZwJiKlaAae0b6RZNkuD3ZfFE+0JLrF AvaVN39NwYuxO5RdY9SdEUqm8LbNw4z1FHXCjgi8YwoqLQ3Wo3jJK582jQ2VmdNMfVeM raWBZ+eitEqu8n0Q2jOAO9YatGXzw6j9uk1Elid8gUrZGYUI4vpnEHWWKoy+kjzBNqFu lGiIGo3bDT1E4ZRsaff2iC8STOGYSuSXMPMYGVSbB7wc8CduZREHJa57ZgLT6ZmLoHCO /pnlHL4VMv7rrg9EvS7P4rrKxWA34mZxQ0h1gKqxxmAsDzqSrUEAcASBwcKZI3hnVR+W 78gw== X-Gm-Message-State: AOAM5307PtNwFlEZT5Gnp/6ifRpx5qCW/WHyS6Pbe3pXhBp4OGdVN9j2 sixPoCdyafstp3RVeC3E1EFGI0FNTybzoCGp1K6lVz/QfsF+CIz6BZjpiuQ3cRgUc/8jko9GIFQ qyueL0jjln53s+RIfX7c= X-Received: by 2002:ab0:4588:: with SMTP id u8mr1974647uau.41.1611058586678; Tue, 19 Jan 2021 04:16:26 -0800 (PST) X-Google-Smtp-Source: ABdhPJz5YWqQx0nk8hQtKB7Ze2qSXaO1K66RfZVz520M177ysU8mEteVJO4MvqkYKoqWDwyMxTa6ihv8vZ4DzflXTxE= X-Received: by 2002:ab0:4588:: with SMTP id u8mr1974640uau.41.1611058586534; Tue, 19 Jan 2021 04:16:26 -0800 (PST) MIME-Version: 1.0 References: <20210112182446.29448-1-hkalra@marvell.com> In-Reply-To: <20210112182446.29448-1-hkalra@marvell.com> From: David Marchand Date: Tue, 19 Jan 2021 13:16:15 +0100 Message-ID: To: Harman Kalra Cc: Stephen Hemminger , Ravi Kerur , Thomas Monjalon , dev , dpdk stable Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v2] examples/l3fwd: remove limitation on Tx queue count 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" On Tue, Jan 12, 2021 at 7:25 PM Harman Kalra wrote: > > In l3fwd no of transmit queues is calculated based on no of > lcores with which it is launched. Hence maximum no of tx > queues possible per port should depend on RTE_MAX_LCORE value. > > Fixes: af75078fece3 ("first public release") > Cc: stable@dpdk.org > > Signed-off-by: Harman Kalra > Reviewed-by: David Marchand Applied, thanks. -- David Marchand