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 6167FA059B; Fri, 10 Apr 2020 11:05:17 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3C0741D450; Fri, 10 Apr 2020 11:05:17 +0200 (CEST) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by dpdk.org (Postfix) with ESMTP id F133B1D442 for ; Fri, 10 Apr 2020 11:05:14 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1586509514; 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: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=2uo72RL3Ka+FfNvNxhJ7rSJyp0Em/mrkewZgFr2OK0I=; b=Jn7OK6ZWRzeDbBDK5MPdZmLZRRTknhZstK5xiQFEfd5Nyz9imhRvYphNsRZX1k+Fqg55Uw vLTM7Luan+zv3e1q63QJc4UYk0COa8n4Nm4Ml5i7pnyX83pEL0bfEY/Gjp+OAwmEifEmqB 2heugPXYn7OXviXFxYt7dD4zf8P1FIY= Received: from mail-ua1-f72.google.com (mail-ua1-f72.google.com [209.85.222.72]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-299-j4JbnGfbMY2R3qNt5at8Tw-1; Fri, 10 Apr 2020 05:05:10 -0400 X-MC-Unique: j4JbnGfbMY2R3qNt5at8Tw-1 Received: by mail-ua1-f72.google.com with SMTP id 8so449399uak.19 for ; Fri, 10 Apr 2020 02:05:10 -0700 (PDT) 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=OS4RJHaCVGW409QEDUGBtNt1z/8ex0Ted+zzHLFVpxg=; b=nMpMyN+3U9bmf+HWRKaW+QsqCEjR8LLDTNBolvSorvLKboyPmrd4aCK0jSLrxMwhFM x88rVY3BCGITnM/QA2eLAsjh+6V9xtAWF7Iapxr5ssd+PdcCwg0up7sC+CZtGPDsM7Py Jqub34Koznjowp5d2dCz5/oSJ53+S1DVGGBceEYwVBzi3X8PhJQo8UouIBNj+FfDP8mB tnanjbMzBJZMxzqQ1yLfiRWdjAX0cEvmR9jwYNB/KWgK5Xxmv9jiA6JFqQQqo5BPhU3y TtmNSxPjrStz/3yg7OtaNXBbfGA41GzlzQGKWyUNlC2WuX2obTsI6Mt8Xzi7UzvE4yBS aVMg== X-Gm-Message-State: AGi0PuYydW6wjtGR0yMG+roY9gMvfF9RIAZHApd9b3sZrzB3yyeO8V3T Ywlil1yB9ncZOjMymSzs2PnM0EvUVIvfiXTebN6oUM1SGxRdb3w+DcXYv4j5UqYSYXjK5E6oxbx hD3tYE2ALws7ygst7o44= X-Received: by 2002:a9f:2204:: with SMTP id 4mr2241439uad.87.1586509510282; Fri, 10 Apr 2020 02:05:10 -0700 (PDT) X-Google-Smtp-Source: APiQypK01UeCR/6Ho6Vrw+c21fDJuam4vjsFp4/1bss9nYZhuq4AJhFuQGyUsB4VcCPgGYpkMz7hKJbb3XQbJzCy0Mk= X-Received: by 2002:a9f:2204:: with SMTP id 4mr2241426uad.87.1586509510053; Fri, 10 Apr 2020 02:05:10 -0700 (PDT) MIME-Version: 1.0 References: <20200316184236.15692-1-asim.jamshed@gmail.com> In-Reply-To: From: David Marchand Date: Fri, 10 Apr 2020 11:04:59 +0200 Message-ID: To: Muhammad Asim Jamshed Cc: dev , saikrishna.edupuganti@intel.com, Vladimir Medvedkin X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [dpdk.org] [PATCH] fib: add "C" extern linkage for C++ programs 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, Mar 25, 2020 at 2:21 PM David Marchand wrote: > On Mon, Mar 16, 2020 at 8:22 PM Muhammad Asim Jamshed > wrote: > > > > This patch allows C++ programs to use librte_fib library routines. > > Previously C++ programs were not able to link this library and programs > > would fail to get linked. With this patch compilation and linking > > will be successful. Fixes: 39e927248416 ("fib: add FIB library") Fixes: 40d41a8a7b34 ("fib: support IPv6") Cc: stable@dpdk.org > > > > Signed-off-by: Muhammad Asim Jamshed > > Signed-off-by: Saikrishna Edupuganti > Reviewed-by: David Marchand Acked-by: Vladimir Medvedkin Applied, thanks. --=20 David Marchand