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 9DAB6A09FF for ; Mon, 11 Jan 2021 15:41:28 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4A0CB140E56; Mon, 11 Jan 2021 15:41:28 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by mails.dpdk.org (Postfix) with ESMTP id C4461140E56 for ; Mon, 11 Jan 2021 15:41:26 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1610376086; 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=PWkZTQe9FUl+kXeNMwe0caqBx95FkNndgw0dWaCHVGojA6T7DaEn/+mNkccjqR1YbpL7xo mGFFB1Ky+i/VNk+R0Hy7mhXcYVVY5tLT3iaMnHDZV1CqN3E9b/fXoDfCsYjy3WG+ZRzIlj 54viVjAr9iv7xtaeuPH+yaIsNbUkA/U= Received: from mail-vk1-f200.google.com (mail-vk1-f200.google.com [209.85.221.200]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-62-hRMnzPmXMoaJl9HgoNALhg-1; Mon, 11 Jan 2021 09:41:24 -0500 X-MC-Unique: hRMnzPmXMoaJl9HgoNALhg-1 Received: by mail-vk1-f200.google.com with SMTP id k192so23901vkk.9 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=fKbNe4q39vYfrA3us4FWIRv8n/YTsfA4lFoQ1FXTBwZXdASps5NxSrXqppXbo/DBAO lsDOCoKNY3f/5bbOAhxZuLKsJvQmJCAawSfhb0oy7TlqUXlEONCfp9F7Wf0vhzV3l77D vkItZbe1rgDSNNRrz1EOQMPJSLK1USfxdOirHhz0icAw80dPXXbhm1IgB1jJHECIahMH oRxcvu0q/idZ6bqBzySjyKbBbPrjITxhbcBwn7CA1sZiOGMb+8X36OML9wq39a5J9Jxq QyEfQAaeAy0AnR4VR2J2OZqqU9iMSjQqvc+wxnSx9um/Vb3Np0Y0pbK2kHXxF1FybYaQ pWwQ== X-Gm-Message-State: AOAM531OFixK61Ku7FE0P2XETWbDWTH1XrhgTXqod26gQmG0Vd3l7ZhE vnh8wFNbZnb++Fn36d9HWjwE1cMr8nK1MMb3EkLBq/mopeaOMFEXtWce4bnc2tjjNgZ+BkfPuVm LKXvtylhJ6M7dfnbv9HQ3PM4= X-Received: by 2002:a67:f80b:: with SMTP id l11mr12848447vso.27.1610376084308; 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-stable] [PATCH v2 1/1] mbuf: fix rte_mbuf_dyn.h inclusion from C++ X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" 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