From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 321B55B38 for ; Wed, 21 Nov 2018 01:11:42 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 5A82523324; Tue, 20 Nov 2018 19:11:26 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Tue, 20 Nov 2018 19:11:26 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; s=mesmtp; bh=ZRkLVidm4C hgg4b+vYjmQ/ZlnxsvKjrM0UjajZla9Zk=; b=p2oK6XSBnVomDMFXgGZcWg3K9x xpt99T9ldvlQGRWAWBzYwRDEhh58I04OswD5Wn4AY5TyMM/un8ArNSO3gWzwQrF0 QF5miQoA5IJB/HqhTLABeEK/o6vb0GmGiQjB0M4m0bRU9JfUO2w3aE7Yk1WTQLO+ b7OMIsYwd1c0pFjl0= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:date:from :in-reply-to:message-id:mime-version:references:subject:to :x-me-proxy:x-me-proxy:x-me-sender:x-me-sender:x-sasl-enc; s= fm1; bh=ZRkLVidm4Chgg4b+vYjmQ/ZlnxsvKjrM0UjajZla9Zk=; b=xirW+v0u 697E9q3CIxPYMIhVfskNua/Hot+0Ty4f72XgEl8x9wnyXEuVqSsbhIJgCBk4K6ya ZOegkaN66C2ABmPS6z4Bh2tJ2iG+/n3dLuVH9iGcTEyzeqretHICmL9iYnqaW9vN l/OrELVP3fh13qdtFgb1NHXAc196JqjCbYZoX2G7O/ihjaffp5x/O85w8laCJCux lI0SUpAKT1ZgdRyV2s6GV09Ym5t0/0f//FjPG5IegQ/oe3z6f5EmG40AOFovHd92 eS78J/yI37w1VMgTGDPbMSkd5GGj2YjS7MUHYXbejYXzAp9ROgNoAeV97B5llSfX 3W1S4Fd7yTS7ug== X-ME-Sender: X-ME-Proxy: Received: from xps.monjalon.net (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id A66A3E4307 for ; Tue, 20 Nov 2018 19:11:25 -0500 (EST) From: Thomas Monjalon To: web@dpdk.org Date: Wed, 21 Nov 2018 01:11:15 +0100 Message-Id: <20181121001117.24537-4-thomas@monjalon.net> X-Mailer: git-send-email 2.19.0 In-Reply-To: <20181121001117.24537-1-thomas@monjalon.net> References: <20181121001117.24537-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-web] [PATCH v3 3/5] simplify NICs list X-BeenThere: web@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK website maintenance List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Nov 2018 00:11:42 -0000 The weight metadata is replaced by sorting by name, with hardware devices first. An index is added in NICs directory in order to list them separately. The software devices (including paravirtualization) are now visible in the menu. The description (details of each vendor) is removed because it was not formatted and looked messy. Doc about the shortcode "children": https://docdock.netlify.com/shortcodes/children/ Signed-off-by: Thomas Monjalon --- content/supported/_index.md | 3 ++- content/supported/nics/_index.md | 4 ++++ content/supported/nics/amazon.md | 1 - content/supported/nics/atomicrules.md | 1 - content/supported/nics/broadcom.md | 1 - content/supported/nics/cavium.md | 1 - content/supported/nics/chelsio.md | 1 - content/supported/nics/cisco.md | 1 - content/supported/nics/intel.md | 1 - content/supported/nics/marvell.md | 1 - content/supported/nics/mellanox.md | 1 - content/supported/nics/netcope.md | 1 - content/supported/nics/netronome.md | 1 - content/supported/nics/nxp.md | 1 - content/supported/nics/solarflare.md | 1 - content/supported/others.md | 4 +--- content/supported/paravirtualization.md | 2 -- 17 files changed, 7 insertions(+), 19 deletions(-) create mode 100644 content/supported/nics/_index.md diff --git a/content/supported/_index.md b/content/supported/_index.md index cdc7ff8..4046c18 100644 --- a/content/supported/_index.md +++ b/content/supported/_index.md @@ -10,4 +10,5 @@ Features supported by the drivers can be checked in the [networking drivers matrix](http://doc.dpdk.org/guides/nics/overview.html#id1). {{% /notice %}} -{{% children style="card" showhidden="true" sort="weight" description="true" %}} +{{% children style="card" page="supported/nics" showhidden="true" sort="name" %}} +{{% children style="card" sort="name" %}} diff --git a/content/supported/nics/_index.md b/content/supported/nics/_index.md new file mode 100644 index 0000000..d4d49bd --- /dev/null +++ b/content/supported/nics/_index.md @@ -0,0 +1,4 @@ ++++ +title = "Hardware NICs" +hidden = true ++++ diff --git a/content/supported/nics/amazon.md b/content/supported/nics/amazon.md index fe91484..0715c47 100644 --- a/content/supported/nics/amazon.md +++ b/content/supported/nics/amazon.md @@ -1,7 +1,6 @@ +++ title = "Amazon" hidden = true -weight = "1" +++ - [ena (Elastic Network Adapter)](http://doc.dpdk.org/guides/nics/ena.html) diff --git a/content/supported/nics/atomicrules.md b/content/supported/nics/atomicrules.md index b261719..470a6ba 100644 --- a/content/supported/nics/atomicrules.md +++ b/content/supported/nics/atomicrules.md @@ -1,7 +1,6 @@ +++ title = "Atomic Rules" hidden = true -weight = "2" +++ - [ark](http://doc.dpdk.org/guides/nics/ark.html) (Arkville Packet Conduit FX0/FX1) diff --git a/content/supported/nics/broadcom.md b/content/supported/nics/broadcom.md index dbfae3d..f4c4b8d 100644 --- a/content/supported/nics/broadcom.md +++ b/content/supported/nics/broadcom.md @@ -1,7 +1,6 @@ +++ title = "Broadcom" hidden = true -weight = "3" +++ - [bnxt](http://doc.dpdk.org/guides/nics/bnxt.html) (NetXtreme-C, NetXtreme-E, StrataGX) diff --git a/content/supported/nics/cavium.md b/content/supported/nics/cavium.md index 462f967..0c1714c 100644 --- a/content/supported/nics/cavium.md +++ b/content/supported/nics/cavium.md @@ -1,7 +1,6 @@ +++ title = "Cavium" hidden = true -weight = "4" +++ - [thunderx](http://doc.dpdk.org/guides/nics/thunderx.html) (CN88XX) diff --git a/content/supported/nics/chelsio.md b/content/supported/nics/chelsio.md index 27f368c..67973bd 100644 --- a/content/supported/nics/chelsio.md +++ b/content/supported/nics/chelsio.md @@ -1,7 +1,6 @@ +++ title = "Chelsio" hidden = true -weight = "5" +++ - [cxgbe](http://doc.dpdk.org/guides/nics/cxgbe.html) (Terminator 5, Terminator 6) diff --git a/content/supported/nics/cisco.md b/content/supported/nics/cisco.md index 6b310fd..bcd5557 100644 --- a/content/supported/nics/cisco.md +++ b/content/supported/nics/cisco.md @@ -1,7 +1,6 @@ +++ title = "Cisco" hidden = true -weight = "6" +++ - [enic](http://doc.dpdk.org/guides/nics/enic.html) (UCS Virtual Interface Card) diff --git a/content/supported/nics/intel.md b/content/supported/nics/intel.md index 111dfa6..e0baf1d 100644 --- a/content/supported/nics/intel.md +++ b/content/supported/nics/intel.md @@ -1,7 +1,6 @@ +++ title = "Intel" hidden = true -weight = "7" +++ - [e1000](http://doc.dpdk.org/guides/nics/e1000em.html) (82540, 82545, 82546) diff --git a/content/supported/nics/marvell.md b/content/supported/nics/marvell.md index d2605fd..1cbf14d 100644 --- a/content/supported/nics/marvell.md +++ b/content/supported/nics/marvell.md @@ -1,7 +1,6 @@ +++ title = "Marvell" hidden = true -weight = "8" +++ - [mvpp2](http://doc.dpdk.org/guides/nics/mvpp2.html) (Marvell Packet Processor v2) diff --git a/content/supported/nics/mellanox.md b/content/supported/nics/mellanox.md index 0d6a9d5..8030149 100644 --- a/content/supported/nics/mellanox.md +++ b/content/supported/nics/mellanox.md @@ -1,7 +1,6 @@ +++ title = "Mellanox" hidden = true -weight = "9" +++ - [mlx4](http://doc.dpdk.org/guides/nics/mlx4.html) (ConnectX-3, ConnectX-3 Pro) diff --git a/content/supported/nics/netcope.md b/content/supported/nics/netcope.md index 5beefa8..25a8e8d 100644 --- a/content/supported/nics/netcope.md +++ b/content/supported/nics/netcope.md @@ -1,7 +1,6 @@ +++ title = "Netcope" hidden = true -weight = "10" +++ - [szedata2](http://doc.dpdk.org/guides/nics/szedata2.html) (NFB-*, NPC-*, NSF-*) diff --git a/content/supported/nics/netronome.md b/content/supported/nics/netronome.md index e12f00d..118b502 100644 --- a/content/supported/nics/netronome.md +++ b/content/supported/nics/netronome.md @@ -1,7 +1,6 @@ +++ title = "Netronome" hidden = true -weight = "11" +++ - [nfp](http://doc.dpdk.org/guides/nics/nfp.html) (NFP-4xxx, NFP-6xxx) diff --git a/content/supported/nics/nxp.md b/content/supported/nics/nxp.md index 28bb8aa..c12bb7d 100644 --- a/content/supported/nics/nxp.md +++ b/content/supported/nics/nxp.md @@ -1,7 +1,6 @@ +++ title = "NXP" hidden = true -weight = "12" +++ - [dpaa](http://doc.dpdk.org/guides/nics/dpaa.html) (LS102x, LS1043, LS1046) diff --git a/content/supported/nics/solarflare.md b/content/supported/nics/solarflare.md index 8e20cf6..fab8374 100644 --- a/content/supported/nics/solarflare.md +++ b/content/supported/nics/solarflare.md @@ -1,7 +1,6 @@ +++ title = "Solarflare" hidden = true -weight = "13" +++ - [sfc_efx](http://doc.dpdk.org/guides/nics/sfc_efx.html) (SFN7xxx, SFN8xxx, XtremeScale X2) diff --git a/content/supported/others.md b/content/supported/others.md index 9347efb..c73cfdc 100644 --- a/content/supported/others.md +++ b/content/supported/others.md @@ -1,7 +1,5 @@ +++ -title = "Software Devices" -weight = "15" -hidden = "true" +title = "Software NICs" +++ - [af_packet](http://git.dpdk.org/dpdk/tree/drivers/net/af_packet) (Linux AF_PACKET socket) diff --git a/content/supported/paravirtualization.md b/content/supported/paravirtualization.md index 0272995..3b95f2a 100644 --- a/content/supported/paravirtualization.md +++ b/content/supported/paravirtualization.md @@ -1,7 +1,5 @@ +++ title = "Paravirtualization" -weight = "14" -hidden = "true" +++ - [avp](http://doc.dpdk.org/guides/nics/avp.html) (Wind River Accelerated Virtual Port) -- 2.19.0