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 2E775A04A2; Wed, 6 Nov 2019 06:50:49 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 460B31BFC8; Wed, 6 Nov 2019 06:50:48 +0100 (CET) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 108871BFC7 for ; Wed, 6 Nov 2019 06:50:47 +0100 (CET) Received: from mail-vs1-f70.google.com (mail-vs1-f70.google.com [209.85.217.70]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 93CF95AFE0 for ; Wed, 6 Nov 2019 05:50:45 +0000 (UTC) Received: by mail-vs1-f70.google.com with SMTP id d75so3841272vsc.11 for ; Tue, 05 Nov 2019 21:50:45 -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=rapd+GF6spu+g9pn2ua6rb/od5A63AFBNSziJb5VK8E=; b=RM7UBOvnfs7xPIjRg8pX5aNXHnsHu0mY9Jk83v1OpTWkndbvNwEHF9cWHZg/TuhpNh im91TDLZGkosZOZmtHiIgTuKG7Nwesnqrdwh2iOSl0GmHvjEYbdWGhGG2bQeGKWmtaAF +EC617MwJlLvCV7SNRhCXXecOfA3oZdN6lefH6aA4PTVdjpI2PeC7TG0Rut51C3G2+z6 CxNxlPSFGSyegtNZB3T/b8mZLWga1fDSKDtgVoINyEh28MGWKtvU9//VFKn4Zxkl4l6r oASyCo6tvwqZAXes9CK64Fd/gc6DYl4jjbAC+TSGqU5XGeHVZsf2RhfzG/2wleQY2rvC yfNw== X-Gm-Message-State: APjAAAUdlqQ1bA8FDelu8dAunkcB8DVoysWd68jlw5z5ThMUhSqV2DOR KgErfezjmI+nbvgZxHl9D2dL790XQGrc3p+QJVSPMHzQCSEPtjhmxlzErxka4+svQleU+iRzavA UzQPNG70omkKaTRAywL4= X-Received: by 2002:ab0:189a:: with SMTP id t26mr437050uag.87.1573019444809; Tue, 05 Nov 2019 21:50:44 -0800 (PST) X-Google-Smtp-Source: APXvYqwWB4zfIB+/SO8ZDkK/EhKLwmRpUcrrDBe2uqBIDeB6NsWlq5UAoirjWn0hp5mOtF2scpeLuFXRg+5JK+xqdXo= X-Received: by 2002:ab0:189a:: with SMTP id t26mr437034uag.87.1573019444501; Tue, 05 Nov 2019 21:50:44 -0800 (PST) MIME-Version: 1.0 References: <9655364.FRNQJ0dWU4@xps> In-Reply-To: <9655364.FRNQJ0dWU4@xps> From: David Marchand Date: Wed, 6 Nov 2019 06:50:33 +0100 Message-ID: To: Thomas Monjalon , Vladimir Medvedkin Cc: dev , Bruce Richardson , "Ananyev, Konstantin" , Aaron Conole Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v6 00/12] lib: add RIB and FIB liraries 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 Wed, Nov 6, 2019 at 12:14 AM Thomas Monjalon wrote: > > 01/11/2019 16:21, Vladimir Medvedkin: > > This is heavily reworked version of previous RIB library series: > > https://mails.dpdk.org/archives/dev/2018-April/099492.html > > > > app/test/Makefile | 7 + > > app/test/autotest_data.py | 48 +++ > > app/test/meson.build | 16 + > > app/test/test_fib.c | 414 ++++++++++++++++++++ > > app/test/test_fib6.c | 423 +++++++++++++++++++++ > > app/test/test_fib6_perf.c | 157 ++++++++ > > app/test/test_fib_perf.c | 411 ++++++++++++++++++++ > > app/test/test_rib.c | 351 +++++++++++++++++ > > app/test/test_rib6.c | 357 +++++++++++++++++ > > config/common_base | 11 + > > doc/api/doxy-api.conf.in | 2 + > > lib/Makefile | 4 + > > lib/librte_fib/Makefile | 25 ++ > > lib/librte_fib/dir24_8.c | 737 +++++++++++++++++++++++++++++++++++ > > lib/librte_fib/dir24_8.h | 36 ++ > > lib/librte_fib/meson.build | 8 + > > lib/librte_fib/rte_fib.c | 319 ++++++++++++++++ > > lib/librte_fib/rte_fib.h | 188 +++++++++ > > lib/librte_fib/rte_fib6.c | 322 ++++++++++++++++ > > lib/librte_fib/rte_fib6.h | 193 ++++++++++ > > lib/librte_fib/rte_fib_version.map | 23 ++ > > lib/librte_fib/trie.c | 760 +++++++++++++++++++++++++++++++++++++ > > lib/librte_fib/trie.h | 37 ++ > > lib/librte_rib/Makefile | 25 ++ > > lib/librte_rib/meson.build | 8 + > > lib/librte_rib/rte_rib.c | 532 ++++++++++++++++++++++++++ > > lib/librte_rib/rte_rib.h | 277 ++++++++++++++ > > lib/librte_rib/rte_rib6.c | 598 +++++++++++++++++++++++++++++ > > lib/librte_rib/rte_rib6.h | 334 ++++++++++++++++ > > lib/librte_rib/rte_rib_version.map | 35 ++ > > lib/meson.build | 4 +- > > mk/rte.app.mk | 2 + > > 32 files changed, 6663 insertions(+), 1 deletion(-) > > You forgot to update MAINTAINERS and the release notes. > I did it while merging. > > Applied, thanks The added tests are timeouting: https://travis-ci.com/DPDK/dpdk/jobs/253293904 47/86 DPDK:fast-tests / rib_autotest TIMEOUT 30.01 s 48/86 DPDK:fast-tests / rib6_autotest TIMEOUT 30.01 s -- David Marchand