From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 16FECA09FF; Mon, 11 Jan 2021 15:41:29 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C5FD5140E5D; Mon, 11 Jan 2021 15:41:28 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id D267D140E56 for ; Mon, 11 Jan 2021 15:41:27 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1610376087; 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: in-reply-to:in-reply-to:references:references; bh=PbjUd+5uA9S2LNtlyfiGS+fG69tpEKYn+uqpEG8QzWE=; b=XLPWA2JU6tS3FuPfnh5BsYBbWKPw0v2+3wuJQaQrImL/QRwmcTDNPubVRj88bN2K4rGByZ tAYLhVPBicEcTIq6VrTF9WqWemkIYHmWjy99bxe1rNJzeu54HcYCgAtLvR5aNLqzV+qqAL TPJxTbXOaChe2/a9XyeRNGCDBiG3qmc= Received: from mail-vk1-f197.google.com (mail-vk1-f197.google.com [209.85.221.197]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-49-QzauoQC5M32WWvQ6TjJwzA-1; Mon, 11 Jan 2021 09:41:25 -0500 X-MC-Unique: QzauoQC5M32WWvQ6TjJwzA-1 Received: by mail-vk1-f197.google.com with SMTP id x134so15034vkd.17 for ; Mon, 11 Jan 2021 06:41:24 -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=PbjUd+5uA9S2LNtlyfiGS+fG69tpEKYn+uqpEG8QzWE=; b=QQkaQ+vBaqr1hRarMdx89qs0scFUKC9OS2MzUpeMgYh2/VlDG/qnZ8tyx89tZL96uC IUCiA9dnbi6/CV6YEF8URFwnFODBADVZV98kEbrtRaMYcuL262wHWZWXm8nrI5TIIMT7 pqnRNe+94c+k8Otw46jkV7svNnSVb1tsS4fBf0GUg4QILGKNxch5WSXaHwucO+U8q7Ad wVjcydF13xhpU2hZVYUez1nM6HF5uTbJLFtsMojGCjq+TaPUxplya2AySAeyC4FSHMk1 gI6LiW0zhoE0P87wS8eDVGP2lqdcAbmFtwgWJkcu4MgnX2cLzubx+u3KTsQOsKYdrL6s /RFQ== X-Gm-Message-State: AOAM5316Wau6Hik3YsrM3c/h6NuE88cp7YoNX13HIeejlwPS542A16I1 s79jSpgYUu8/D2qDqZQk+3ma3NCyFopKvKU2+KZaT8BtVsj5DBeH/ofa2T0wVtmA0lURilFChqJ fh98drivmGjQF4kZhZVQ= X-Received: by 2002:a67:f80b:: with SMTP id l11mr12848446vso.27.1610376084307; Mon, 11 Jan 2021 06:41:24 -0800 (PST) X-Google-Smtp-Source: ABdhPJw3wGvqPF7wsA2FiCIaBOeucAUsuE9Ja9pOrqueH8KygEeGyO2RXxWd/CnaQFb/y4RA/l9HrvdNnyiDbf3PwNI= X-Received: by 2002:a67:f80b:: with SMTP id l11mr12848426vso.27.1610376084104; Mon, 11 Jan 2021 06:41:24 -0800 (PST) MIME-Version: 1.0 References: <20210107013114.3477-1-ashish.sadanandan@gmail.com> <20210107074912.GL2631@platinum> In-Reply-To: <20210107074912.GL2631@platinum> From: David Marchand Date: Mon, 11 Jan 2021 15:41:12 +0100 Message-ID: To: Ashish Sadanandan Cc: dev , dpdk stable , Olivier Matz Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v2 1/1] mbuf: fix rte_mbuf_dyn.h inclusion from C++ X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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 Thu, Jan 7, 2021 at 8:49 AM Olivier Matz wrote: > > On Wed, Jan 06, 2021 at 06:31:14PM -0700, Ashish Sadanandan wrote: > > The header was missing the extern "C" directive which causes name > > mangling of functions by C++ compilers, leading to linker errors > > complaining of undefined references to these functions. > > > > Fixes: 4958ca3a443a ("mbuf: support dynamic fields and flags") > > Cc: stable@dpdk.org > > > > Signed-off-by: Ashish Sadanandan > Acked-by: Olivier Matz Applied, thanks. -- David Marchand