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 6B17DA04B2; Mon, 4 May 2020 19:27:00 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5A5DB1D51A; Mon, 4 May 2020 19:26:46 +0200 (CEST) Received: from mail-wm1-f48.google.com (mail-wm1-f48.google.com [209.85.128.48]) by dpdk.org (Postfix) with ESMTP id EBBD91D418 for ; Mon, 27 Apr 2020 14:49:53 +0200 (CEST) Received: by mail-wm1-f48.google.com with SMTP id z6so20354031wml.2 for ; Mon, 27 Apr 2020 05:49:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=JnmnmsTKywGq/Yk33K/f0I0LeaefoEtASlRmBddMKSM=; b=tK8rXILX6aB4gnVOcArWLnp7t+gAHAiRajza1RlMOmBpCjixIiIsnoW3uZZ2JfGnh6 OeOFxUGLONPsxxbsjkldgpLkML1LlupNSRweoeAT9ClO+Fe81jP8fNgE7RTOHYSstSgA 51lMrA5gkysC/mdBTmaEDt9QRFcLLKV+fi4pUtArGJSRpTuHxNASLOBWHK9bpcAheL6X q87woIl12eXysRdX74PDmN/x8tIb1IrDZrhvWyeNz4JRYBQpOWbWkEq+Zn5iZm7YH/TB rns8X++NiaoJgDpMfPPy1x9VFUKiDZTYlBf73eqr5kbZ5DjPG1w8W+VHkmJ6k/7AM7gN bE0g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=JnmnmsTKywGq/Yk33K/f0I0LeaefoEtASlRmBddMKSM=; b=cUciYFFGLnrGrxKEn7bcHuKtiTMejhz9LB1V0imNX/+eQ0VHwSJZxW362mVP2bvZgm qSctGV0UdzbZ+FBanIZQro1ZaD3nBNPT0GnPofIVd/6VPQ5PuAsN7TxgFJJRn72+Ivxa qxE/MkF/lHzR65am3hKtfGObsNq3R+HlQnVMUS4h1JcC0H/4immtutSdQXAVUQnQRcRd c/kV0vakBzGqexBd6rGADYhfO6UdJxytbQRUN91UYk3fI6v/P+GPsJRdDZbNHDTxpUGk hnoL3USYra7CJ7Z3vUWrLDsa5oVhJfVwYH2xeOrYG7h9YTXA7WAnuisUexrXCLbGg0TS 5mtw== X-Gm-Message-State: AGi0PuZTvwBdvNN4mZSaFfv4mApKIcYByylADxQzNTrceJh2iW+QHZuC G32eox/Wk8Ef3FY4f9mmsWlNvrsEvmFn/KBPdnKXA8kD X-Google-Smtp-Source: APiQypImtY7h6SRNdfflAB3tY51Sa1azIQ8q3jJI2m8EBHT6dEaF1TqfNdKN/OHjJTxMCeae0reOCC8V4C3lLoKV+3Y= X-Received: by 2002:a1c:a90a:: with SMTP id s10mr24458124wme.99.1587991793394; Mon, 27 Apr 2020 05:49:53 -0700 (PDT) MIME-Version: 1.0 From: Jonatan Langlet Date: Mon, 27 Apr 2020 14:49:36 +0200 Message-ID: To: dev@dpdk.org X-Mailman-Approved-At: Mon, 04 May 2020 19:26:43 +0200 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-dev] Multiple cores for DPDK behind SmartNIC 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" Hi group, We are building a setup with DPDK bound to VF ports of a Netronome Agilio CX 2x40 (NFP4000) SmartNIC. Netronome does some P4 processing of packets, and forwards through SR-IOV to host where dpdk will continue processing. My problem: in DPDK I can not allocate more than a single RX-queue to the ports. Multiple dpdk processes can not pull from the same queue, which means that my dpdk setup only works with a single core. Binding dpdk to PF ports on a simple Intel 2x10G NIC works without a problem, multiple RX-queues (and hence multiple cores) work fine. I bind dpdk to Netronome VF ports with the igb_uio driver. I have seen vfio-pci mentioned, would using this driver allow multiple RX-queues? We had some problems using this driver, which is why it has not yet been tested. If you need more information, I will be happy providing it Thanks, Jonatan