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 06CC8A052F; Mon, 3 Feb 2020 09:07:00 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 553EA1BFE1; Mon, 3 Feb 2020 09:06:59 +0100 (CET) Received: from mail-il1-f195.google.com (mail-il1-f195.google.com [209.85.166.195]) by dpdk.org (Postfix) with ESMTP id 26DF61BFE0 for ; Mon, 3 Feb 2020 09:06:58 +0100 (CET) Received: by mail-il1-f195.google.com with SMTP id f70so11816781ill.6 for ; Mon, 03 Feb 2020 00:06:58 -0800 (PST) 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=cgeWgpSs28zqxA6lGjieTBVJwaPHx1HdIAs7FIY7wtI=; b=k5K8fD6CfJknnb3gIyUraxuoEGdK9m4blkykSsi/4yUv/HhwbdYEXr2uwZMt3RPaZH +LwM/akdMj0OYqj7QvkC8vz4gYUh2gPGYWXXbJ43KjO7+rAtugXZqpItDRU+WdtaZc0q 0BaQkxZzQrQ7N8YV+gSpYGGolTJQvMX9x0g82GRhqrrVCkbbwT2gKx7LkbGDMzd5qPrO cX8bhRCbDIqaAeEXU/pzV36QOv/e0OXhbRpf0nG8JXZtPVoUdg0KW5PGiBlyOnoYfCxq NvUVi+x7V/06cHtaDX7yDprxst5P62sEchX9tDVrx0QH9pWIZgBzGhCN8hoQ+DX7NNzQ QsKQ== 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=cgeWgpSs28zqxA6lGjieTBVJwaPHx1HdIAs7FIY7wtI=; b=PJTauavkMSxXuW1ArEG/6YoPOMrZtgMUK+sCXx/RbFS875tni8O2PVHKewfF7HNx+5 OoAzzL/yeRfGTo1gGcMR7e2gvYCBEIsK6wEOALv2x2YxDKR1ygFuZTjRGQUORRNU/Lab Qr3yk98Qoj9Qlv6RZL22NJfslzxTJTjqzdF26+5/jaNX/t6eqUU+S9n/KbbP2YmdiYKt SaXsxQRhjBtvMWOugliCy94EA7LPv8Kt+W2y8QfZMxaHWBpejE0pFU36NWcfn+bVdpzC 0YrCASIBJjQ8bzdooJxt8KcWTJDE71+POfgf3eg2awyPcVpPiUmpQnBN5G35+ahY3Eqf PWhg== X-Gm-Message-State: APjAAAVIrMM6xJmB5qVJOXm1fj/C/g8uD3NtEHEE6Qz1ZUJrcVfGqYW0 VfWlDK+7rujyjjgFs0hl5JEPW2hNCFiKo4VUuKA= X-Google-Smtp-Source: APXvYqwEkJG9OZRMPer52ZFKWANE/csXceU5X7zenzIAXN1tTTrODQGXngry4FmdtfldRhBr4WPPfkzAjvzFRsdAWtw= X-Received: by 2002:a92:481d:: with SMTP id v29mr14093973ila.271.1580717217300; Mon, 03 Feb 2020 00:06:57 -0800 (PST) MIME-Version: 1.0 References: <20200128133147.16500-1-kkanas@marvell.com> In-Reply-To: <20200128133147.16500-1-kkanas@marvell.com> From: Jerin Jacob Date: Mon, 3 Feb 2020 13:36:41 +0530 Message-ID: To: Krzysztof Kanas , Ferruh Yigit Cc: dpdk-dev , Jerin Jacob , Maciej Czekaj , John McNamara , Marko Kovacevic Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH] doc: thunderx: explain which PCI is secondary VF 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 Tue, Jan 28, 2020 at 7:01 PM wrote: > > From: Krzysztof Kanas > > Thunderx-nic uses secondary VF's to provide more queues to DPDK. > Current instructions explain the concept but don't show easy way to find > which PCI id is primary and which is secondary VF's. > > Signed-off-by: Krzysztof Kanas > --- > doc/guides/nics/thunderx.rst | 48 ++++++++++++++++++++++++++++++++++++ > 1 file changed, 48 insertions(+) 1) Fixed the following warning - dpdk-next-net-mrvl/doc/guides/nics/thunderx.rst:321: WARNING: Explicit markup ends without a blank line; unexpected unindent. 2) Slightly reworded the git commit message. doc/thunderx: add secondary VF enumeration details thunderx-nic uses secondary VF's to provide more queues to DPDK. Current instructions explain the concept but don't show an easy way to find which PCI id is primary and which is secondary VF's. This patch extending the documentation of secondary VF w.r.t the enumeration details. Acked-by: Jerin Jacob Applied to dpdk-next-net-mrvl/master. Thanks